上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页
摘要: Ref:http://blog.csdn.net/jiangwei0910410003/article/details/17008687 1). Thread:Thread 是程序执行的最小单元,它是分配CPU的基本单位。可以用 Thread 来执行一些异步的操作。2). Service:Servi 阅读全文
posted @ 2016-05-03 09:31 鲸歌 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Service 中的耗时操作必须 在 Thread中进行; IntentService 则直接在 onHandleIntent()方法中进行 阅读全文
posted @ 2016-05-03 09:26 鲸歌 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 04-29 15:36:23.395: E/ActivityThread(15275): Performing stop of activity that is not resumed: {com.example.jarwrite/com.example.jarwrite.MainActivity} 阅读全文
posted @ 2016-04-29 16:03 鲸歌 阅读(745) 评论(0) 推荐(0) 编辑
摘要: 1 package com.cp.utils; 2 3 import android.content.Context; 4 5 public class CPResourceUtil { 6 7 public static int getLayoutId(Context paramContext, String paramString) { 8 ... 阅读全文
posted @ 2016-04-28 18:17 鲸歌 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 引用谷歌市场的帮助说明:https://support.google.com/faqs/answer/6346016 本文面向的是发布的应用中 X509TrustManager 接口实施方式不安全的开发者。具体而言,该问题是指在与远程主机建立 HTTPS 连接时实施方式会忽略所有 SSL 证书验证错 阅读全文
posted @ 2016-04-28 15:06 鲸歌 阅读(6019) 评论(0) 推荐(0) 编辑
摘要: notifyDataSetChanged方法通过一个外部的方法控制如果适配器的内容改变时需要强制调用getView来刷新每个Item的内容。public void notifyDataSetChanged ()该方法内部实现了在每个观察者上面调用onChanged事件。每当发现数据集有改变的情况,或 阅读全文
posted @ 2016-04-25 13:00 鲸歌 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 只在 AS 中生效 xmlns:tools="http://schemas.android.com/tools" tools:text="I am a title" 阅读全文
posted @ 2016-04-22 10:32 鲸歌 阅读(196) 评论(0) 推荐(0) 编辑
摘要: android:listSelector="" 阅读全文
posted @ 2016-04-21 16:48 鲸歌 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 遍历 List 的时候将 item remove 掉会抛出此异常 阅读全文
posted @ 2016-04-21 14:38 鲸歌 阅读(106) 评论(0) 推荐(0) 编辑
摘要: GridView 添加 ArrayAdapter<Bean>, 在 gridView 的 Item 点击之后, 1、list.add(bean)/remove(bean) 2、adapter.add(bean)/remove(bean) 3、adapter.notifyDataSetChanged( 阅读全文
posted @ 2016-04-21 11:17 鲸歌 阅读(109) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 19 下一页