上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页
摘要: public class LogUtils { public static final int VERBOSE = 1; public static final int DEBUG = 2; public static final int INFO = 3; public static final int WARN = 4; public static f... 阅读全文
posted @ 2017-02-22 21:55 yl007 阅读(418) 评论(0) 推荐(0) 编辑
摘要: 1、定制一个Application类,管理全局的状态信息 2、在AndroidManifest.xml中指定自定义的Application <application android:name = "com.exmple.networktest.MyApplication" ......> </app 阅读全文
posted @ 2017-02-22 21:36 yl007 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 基本用法: 1、创建一个类继承Service类,并重写onBind() 2、重写其他方法:onCreate()、onStartCommand()、onDestory() 3、在AndroidManifest.xml中注册:<service ...></service> 启动和停止服务 1、创建一个I 阅读全文
posted @ 2017-02-21 23:13 yl007 阅读(733) 评论(0) 推荐(0) 编辑
摘要: 基本用法: 1、创建一个类继承Thread,并重run()。 2、实现Runnable接口 Android异步消息处理 基本用法: 1、主线程中创建一个Handler对象,并重写handleMessage(),在handleMessage中进行UI操作 2、在点击事件中创建一个Message对象,并 阅读全文
posted @ 2017-02-21 22:05 yl007 阅读(93) 评论(0) 推荐(0) 编辑
摘要: JSONObject解析方式 GSON解析方式 1、在app/build.gradle中添加依赖 compoile 'com.google.code.gson:gson:2.7' 2、创建一个类,设置所有属性的getter和setter 3、将JSON数据解析成一个对象 Gson gson = ne 阅读全文
posted @ 2017-02-20 22:34 yl007 阅读(175) 评论(0) 推荐(0) 编辑
摘要: Pull解析 1、获取XmlPullParserFactory实例 XmlPullParserFactory factory = XmlPullParserFactory.newInstanc(); 2、借助XmlPullparserFactory实例获取XmlPullParser对象 XmlPul 阅读全文
posted @ 2017-02-20 22:09 yl007 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1、在app/build.gradle中添加依赖 compile 'com.squareup.okhttp3:okhttp:4.0.1' 2、创建OkHttpClient实例 OkHttpClient client = new OkHttpClient(); 3、发送HTTP请求 Request r 阅读全文
posted @ 2017-02-20 21:40 yl007 阅读(219) 评论(0) 推荐(0) 编辑
摘要: WebView使用方法: 1、设置布局,在activity_main.xml中添加<webView> 2、修改MainActivity中代码 3、访问网路需要声明权限:<use-permission android:name="android.permission.INTERNET" /> HTTP 阅读全文
posted @ 2017-02-20 21:09 yl007 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1、创建NotificationManager管理通知,调用Context.getSystemService(Context.NOTIFICATION_SERVICE) 2、用Builder构造器创建Notification对象:Notification notification = new Not 阅读全文
posted @ 2017-02-16 23:10 yl007 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1、通过Context的getContentRsolver()获取ContentResolver类的实例。 2、ContentResolver中接收的不是表明而是内容URI 3、解析内容URI获得Uri对象 4、返回值为Cursor对象,通过游标遍历Cursor取出数据 5、关闭Cursor 自定义 阅读全文
posted @ 2017-02-16 21:55 yl007 阅读(225) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页