自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 防京东接口

接口文档v2.1请求参数:公共参数:token、source=android、appVersion返回数据:code:0为成功,1为失败,2为token过期msg:提示消息(可根据项目需求处理逻辑)1.登录接口接口地址:https://www.zhaoapi.cn/user/login返回格式:json请求方式:get/post接口备注:用户登录接口请求参数说明:名称类型必填说明mobilestr...

2018-05-31 20:26:11 703 1

转载 音乐播放界面

         概述网易云音乐是一款非常优秀的音乐播放器,尤其是播放界面,使用唱盘机风格,显得格外古典优雅。这里抛砖引玉,原文地址:http://www.jianshu.com/p/cb54990219d9 首先来看一下网易的播放效果。 要实现上面的功能,我们需要对界面进行一个拆分,拆分后大概包含如下结构:主界面布局设计唱盘布局设计动态布局唱盘控件DiscView对外接口及方法音乐状态控制时序图...

2018-05-31 20:08:50 5199

原创 登录页面传值给我的信息

//登录代码package com.example.jingdong.view;import android.content.Intent;import android.content.SharedPreferences;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.u...

2018-05-31 13:56:31 921

原创 android 用二级列表实现仿京东购物车

2.首先先自定义一个二级列表package com.example.jingdong.erji;import android.content.Context;import android.util.AttributeSet;import android.widget.ExpandableListView;/** * Created by huoxuebin on 2018/4/24....

2018-05-31 13:51:54 918

原创 android 实现防京东流式布局+GreenDao历史记录

//使用GreenDao数据库需要配置//budile配置classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'//model需要配置apply plugin: 'org.greenrobot.greendao'greendao { schemaVersion 1 daoPackage 'com.g...

2018-05-30 19:51:46 795

原创 自定义实现下拉放大图片,松手自动反弹效果

1.首先写ImageSizeScrollView类继承ScrollViewpackage com.example.imagesize;import android.support.v4.view.ScrollingView;/** * Author : wyh * Postbox : hui7305265@foxmail.com * Cellphone :185****1723 *...

2018-05-30 09:00:07 440

原创 android实现自定义顶部标题栏

android实现自定义顶部标题栏 标题布局<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android....

2018-05-24 08:31:05 2125

原创 友盟第三方分享

去官网下载libs包//添加依赖<!-- 允许程序打开网络套接字 --><uses-permission android:name="android.permission.INTERNET" /><!-- 允许程序设置内置sd卡的写权限 --><uses-permission android:name="android.permission.WRIT...

2018-05-23 20:09:14 538

原创 搜索框

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

2018-05-21 20:41:54 285

原创 EditText键盘搜索事件设置和监听

首先要在EditText代码中设置imeOptions属性为actionSearch,这样输入法的确认按钮则会变为搜索按钮。 android:imeOptions="actionSearch"按键监听接下来需要给EditText设置搜索按键的监听,代码如下: input.setOnEditorActionListener(new OnEditorAction...

2018-05-21 20:40:05 5916

原创 GreenDao增删改查

//添加依赖compile 'org.greenrobot:greendao:3.2.0'//butterknifecompile 'com.jakewharton:butterknife:8.5.1'annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'//recyclerviewcompile 'com.g...

2018-05-16 08:36:16 258

原创 Fresco轮播图显示图片

package com.example.month1;import android.content.Context;import android.net.Uri;import android.widget.ImageView;import com.facebook.drawee.view.SimpleDraweeView;import com.youth.banner.loader....

2018-05-13 20:43:52 473

原创 retrofit使用

compile 'io.reactivex.rxjava2:rxjava:2.0.7'compile 'io.reactivex.rxjava2:rxandroid:2.0.1'compile 'com.squareup.retrofit2:retrofit:2.1.0'compile 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'compil...

2018-05-13 20:08:21 120

原创 Recyclerview实现多条目

//添加依赖compile 'com.jcodecraeer:xrecyclerview:1.3.2'适配器package com.example.huoxuebin.login1512s.adapter;import android.content.Context;import android.support.v7.widget.Recy

2018-05-09 20:04:23 235

原创 常用依赖

compile 'com.youth.banner:banner:1.4.10'/*xRecyclerview*/compile 'com.jcodecraeer:xrecyclerview:1.3.2'//RecyclerViewcompile 'com.globus-ltd:recyclerview:1.0.2'compile 'com.github.bumptech.glide:g

2018-05-03 13:45:50 147

原创 eventbus的使用

//添加依赖compile 'org.greenrobot:eventbus:3.0.0'compile 'com.jakewharton:butterknife:8.8.1'annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'package com.example.eventes;

2018-05-03 13:42:43 109

原创 防京东详情页面

代码package com.example.jingdongdeom.Activity;import android.content.Context;import android.content.Intent;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;imp

2018-05-02 13:57:06 885

原创 防京东分类页面Retrofit

//fragment代码package com.example.jingdongdeom.Fragment;import android.content.Context;import android.content.Intent;import android.graphics.Color;import android.os.Bundle;import android.s

2018-05-02 13:55:17 141

原创 实现Md5加密

把下面的类复制到项目中,再调用一下就可以实现MD5加密了import java.security.MessageDigest;  import java.security.NoSuchAlgorithmException;    /**   * Created by BAIPEI on 2018/1/16.   */    public class MD5Helpe

2018-05-02 08:46:34 120

原创 防京东搜索页面

//依赖apply plugin: 'org.greenrobot.greendao'greendao { schemaVersion 1 daoPackage 'com.example.jingdongdeom' targetGenDir 'src/main/java'}compile 'org.greenrobot:greendao:3.0.0'classp...

2018-05-01 19:43:45 255

原创 资源

https://www.jianshu.com/p/da1ca645b95c?utm_campaign=haruki&utm_content=note&utm_medium=reader_share&utm_source=qq

2018-04-28 13:46:08 186

原创 viewpager+tablyout

布局文件http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    xmlns:app="http://schemas.android.com/apk/res-auto">

2018-04-27 20:00:12 225

原创 上传头像

package com.example.huoxuebin.myapplication;import android.content.DialogInterface;import android.content.Intent;import android.graphics.Bitmap;import android.graphics.Color;import android.net.U

2018-04-27 15:59:57 435

原创 京东订单

//添加依赖compile 'com.liaoinstan.springview:library:1.2.6'compile 'com.github.bumptech.glide:glide:3.7.0'compile 'com.squareup.okhttp3:okhttp:3.9.0'compile 'com.google.code.gson:gson:2.8.2'compi

2018-04-27 14:44:03 264

原创 订单

如果想把购物车和订单联系起来,见地址:http://blog.csdn.net/biggrand/article/details/79081808写代码前要先加上权限和依赖:android:name="android.permission.READ_EXTERNAL_STORAGE" />android:name="android.permission.WRITE_EXT

2018-04-27 11:16:42 141

原创 防京东 首页

////布局xml version="1.0" encoding="utf-8"?>LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" xmlns:app="http://schemas.android.com/a

2018-04-26 20:03:40 394

原创 三秒跳转

package com.example.jingdongdeom.Activity;import android.content.Intent;import android.os.Handler;import android.os.Message;import android.support.v7.app.AppCompatActivity;import android.os.Bund

2018-04-26 20:01:33 2681

原创 retrofit购物车

//自定义二级列表package com.example.huoxuebin0423.Goucard;import android.content.Context;import android.util.AttributeSet;import android.widget.ExpandableListView;/** * Created by huoxuebin on 2018/4/...

2018-04-23 07:59:22 277

原创 GreenDao使用

//添加依赖buildscript { repositories { google() jcenter() mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:3.0.0' classpath 'o...

2018-04-22 19:56:12 190

原创 跑马灯

首先呢,导入一个依赖compile 'com.sunfusheng:marqueeview:1.3.3'其次,给跑马灯定义布局    LinearLayout android:padding="10dp" android:gravity="center_vertical" android:layout_margin="10dp" andro

2018-04-20 18:54:31 179

原创 底部按钮

//添加依赖compile 'com.hjm:BottomTabBar:1.1.1'package com.example.xiangmu;import android.graphics.Color;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;

2018-04-20 09:22:09 453

原创 Banner轮播

//首先添加依赖compile 'com.github.bumptech.glide:glide:3.6.1'compile 'com.youth.banner:banner:1.4.9'//布局文件<com.youth.banner.Banner android:id="@+id/banner" android:layout_width="match_paren...

2018-04-16 11:28:45 116

原创 model

package com.example.huoxuebin.myapplication.model;import com.example.huoxuebin.myapplication.Bean.ShopBean;import com.example.huoxuebin.myapplication.jiekou.IMShopmodel;import com.example.huoxuebi

2018-04-07 13:28:31 93

原创 Glide

package com.example.huoxuebin.myapplication.grlide;import android.content.Context;import android.widget.ImageView;import com.bumptech.glide.Glide;import com.youth.banner.loader.ImageLoader;/**

2018-04-07 13:02:02 98

原创 RetrofitAnd+rxjava

//RetrofitManager package com.example.huoxuebin.myapplication.utils.utils;import java.util.Map;import io.reactivex.Observer;import io.reactivex.android.schedulers.AndroidSchedulers

2018-04-07 12:25:58 83

原创 展示适配器 布局接口回调

package com.example.huoxuebin.myapplication.Fragment;import android.content.Intent;import android.os.Bundle;import android.os.Handler;import android.support.annotation.Nullable;import android.su

2018-04-07 11:47:23 184

原创 RetrofitAndOkhttpAndRxAndriodUtil封装

public class RetrofitAndOkhttpAndRxAndriodUtil { //使全局就一个OKHttpClient对象 public static OkHttpClient okHttpClient = new OkHttpClient.Builder()// .cookieJar(new CookiesManager())

2018-04-05 14:21:32 84

原创 常用依赖

各种依赖1.okhttp依赖compile 'com.squareup.okhttp3:okhttp:3.6.0'    compile 'com.squareup.okio:okio:1.11.0'2.imageloader 依赖compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'3.T

2018-04-05 14:16:02 118

原创 分类

//代码package com.example.jingdong.fragment;import android.content.Intent;import android.graphics.Bitmap;import android.os.Bundle;import android.support.annotation.Nullable;import android.support.

2018-01-19 13:30:34 152

原创 防京东搜索展示页面

//activity代码package com.example.week3.Activity;import android.content.Intent;import android.os.Handler;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.sup

2018-01-19 11:30:20 195

空空如也

空空如也

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

TA关注的人

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