自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(63)
  • 收藏
  • 关注

原创 Api

https://github.com/BaiLianSong/JingDong/tree/master/app/src/main/java/com/example/acer/jd/com/bwie package com.example.jingd.api;import com.example.jingd.bean.CartBean;import com.example.jingd...

2018-10-25 19:30:33 189

原创 仿京东我的页面

<?xml version="1.0" encoding="utf-8"?><android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" andr...

2018-10-25 19:07:41 453

原创 仿京东购物车

public interface CartView { void success(CartBean cartBean); void failure(String msg);}public class CartPresenter { CartView cartView; public CartPresenter(CartView cartView) ...

2018-10-25 18:57:54 195

原创 仿京东分类

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_pare

2018-10-25 18:34:34 144

原创 仿京东首页

implementation 'com.facebook.fresco:fresco:0.11.0' implementation 'com.hjm:BottomTabBar:1.1.1' implementation 'com.gyf.immersionbar:immersionbar:2.3.1' implementation 'com.sunfushen...

2018-10-25 18:28:57 193

原创 相机,相册

@OnClick(R.id.five_sdv) public void onViewClicked() { AlertDialog.Builder builder = new AlertDialog.Builder(getActivity()); final AlertDialog alertDialog = builder.create(); ...

2018-10-22 13:24:07 194

原创 分类Adapter

左Adapterpublic class FenRevAdapter extends RecyclerView.Adapter<FenRevAdapter.ViewHolder> { Context context; List<FenBean.DataBean> beanList; OnItemClickListener onItemCli...

2018-10-21 19:19:02 129

原创 分类Activity

Viewpublic interface IView { void onsuccess(ShowBean showBean); void onfailure(String msg);}public interface FenView { void success(FenBean fenBean); void failure(String ms...

2018-10-21 19:16:58 206

原创 自定义View,流式布局

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http

2018-10-14 18:13:04 128

原创 =,=

package com.example.tianwang20181010;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;;import android.support.v7.widget.LinearLayoutManager;import android.support.v7.widg...

2018-10-10 20:18:23 170

原创 HttpUtils

package com.example.tianwang20181010.utils;import com.example.tianwang20181010.api.Api;import com.example.tianwang20181010.constants.Constant;import java.io.IOException;import okhttp3.Intercep...

2018-10-10 20:18:05 131

原创 OkHttpUtils

package com.example.cartdamo.utils;import java.io.IOException;import java.util.HashMap;import java.util.Map;import okhttp3.Call;import okhttp3.Callback;import okhttp3.FormBody;import okhttp3....

2018-08-24 20:11:13 162

原创 购物车

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    xmlns:tools="htt

2018-08-24 20:10:25 193

原创 流式布局

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    xmlns:tools="http:

2018-08-24 20:00:13 135

原创 presenter

package com.example.applicationlx3.presenter;/** * author:Created by WangZhiQiang on 2018/6/23. */public interface DataPresenter { void showData(String page);}*****************************...

2018-06-25 07:54:40 247

原创 net

package com.example.applicationlx3.net;/** * author:Created by WangZhiQiang on 2018/6/22. */public interface APi { String DATA_URL = "http://365jia.cn/news/api3/365jia/news/headline";}****...

2018-06-25 07:53:25 129

原创 model

DataBeans*************************package com.example.applicationlx3.model;import com.example.applicationlx3.net.OnNetListener;/** * author:Created by WangZhiQiang on 2018/6/22. */public inter...

2018-06-25 07:52:38 135

原创 mainActivity

package com.example.applicationlx3;import com.example.applicationlx3.model.DataBeans;import java.util.List;/** * author:Created by WangZhiQiang on 2018/6/23. */public interface DataView { ...

2018-06-25 07:51:00 237

原创 二维码

package cc.ibooker.ibooker;import android.content.Intent;import android.graphics.Bitmap;import android.graphics.BitmapFactory;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;i...

2018-06-12 07:59:54 119

原创 main,title布局

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schema

2018-06-10 19:32:32 512

原创 AppUtils

package com.example.myweek;import android.content.Context;import android.util.DisplayMetrics;/** * author:Created by WangZhiQiang on 2018/6/9. */public class AppUtils { public static int ...

2018-06-10 19:31:47 179

原创 MyTitle

package com.example.myweek;import android.content.Context;import android.graphics.Color;import android.support.annotation.Nullable;import android.util.AttributeSet;import android.view.Gravity;i...

2018-06-10 19:31:22 361

原创 MyView

package com.example.myweek;import android.content.Context;import android.util.AttributeSet;import android.view.View;import android.view.ViewGroup;public class MyView extends ViewGroup { ...

2018-06-10 19:30:54 332

原创 隔行换色

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="libs/jquery-1.11.0.min.js"&a

2018-05-31 08:16:36 168

原创 f

<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title>周考3</title> <!--引入js包--> <script src="js/angular.min.js">&a

2018-05-31 07:57:58 160

原创 buju

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> #t1 { padding-top: 100px; padding-left: 50px; width: 1500p

2018-05-31 07:53:52 102

原创 yanzheng

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script src="libs/angular.min.js"></script> <

2018-05-31 07:52:53 125

原创 lx

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script src="libs/angular.min.js"></script> <

2018-05-31 07:52:14 140

原创 .......

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script src="libs/angular.min.js"></script> <

2018-05-30 20:48:06 111

原创 表单验证

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script src="libs/angular.min.js"></script> <

2018-05-28 08:04:49 90

原创 月考练习,增删查

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script src="libs/angular.min.js"></script> <

2018-05-28 08:03:57 108

原创 放大镜

<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml">    <head>        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>        <title&

2018-05-21 08:14:36 132

原创 隔行换色

<style>/*隔行换色*/table tr:nth-child(odd) { background: blue;}table tr:nth-child(even) { background: yellow;}table tr:nth-child(1) { background: red;}</style>

2018-05-21 08:12:55 84

原创 二级联动,table添加删除数据

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <script src="libs/angular.min.js"></script> <

2018-05-20 18:50:24 220

原创 周考1

<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <style> #beij { width: 1500px; height: 1000px; background-image:

2018-05-14 10:33:22 114

原创 weeker

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> #di { width: 1400px; height: 375px; } #di1 { width:

2018-05-13 20:14:43 154

原创 weekyi

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> #dcenter{ text-align: center; } #imgcode{ width: 100px;

2018-05-13 20:14:22 94

转载 Android--------使用BottomTabBar实现底部导航页

1.导依赖compile 'com.hjm:BottomTabBar:1.1.1'2.在XML中定义一下该控件<com.hjm.bottomtabbar.BottomTabBar android:id="@+id/bottom_tab_bar" android:layout_width="match_parent" android:layout_height="mat...

2018-05-06 20:15:48 241

原创 adapter ,fragment,布局,

package com.example.android_fuxi_20180427.adapter;import android.content.Context;import android.graphics.Bitmap;import android.view.View;import android.view.ViewGroup;import android.widget.BaseA...

2018-05-03 11:12:56 516

原创 Main3,布局

package com.example.android_fuxi_20180427;import android.os.Handler;import android.os.Message;import android.support.v4.view.ViewPager;import android.support.v7.app.AppCompatActivity;import andr...

2018-05-03 10:58:45 1649

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除