- 浏览: 57156 次
- 性别:
- 来自: 成都
最新评论
文章列表
1.发送request.
a. post:
生成请求
HttpPost request = new HttpPost(url);
HttpClient httpClient = new DefaultHttpClient();
设置30s连接不上则失败
httpClient.getConnectionManager().closeIdleConnections(30,TimeUnit.SECONDS);
发送请求,获得返回结果
response = httpClient.execute(request);
HttpEntity httpEntity = response.getEntity( ...
1. android:configChanges="orientation"一般常用的configChanges还有keyboardHidden
这里加orientation的用途在于避免转屏时重新调用onCreate,其实这里还有其它的叙用,
某些Dialog,在转屏时选中的项会被取消,加上android:configChange="orientation"用变不会再有这样的问题。
2. android:windowSoftInputMode="adjustPan"加了这个用会有少许问题,变是页面即使是ListView或加了Scol ...
1. 先看使用的代码:
下面是我们在做未接来电时的代码:
mResolver.registerContentObserver(CallLog.Calls.CONTENT_URI, true,
missedCallObserver)
这个CallLog.Calls.CONTENT_URI是在数据库中提供支持的。
而missedCallObserver继承了ContentObserver在CallLog.Calls.CONTENT_URI监听的内容发生变化是就会调用missedCallObserver的onChange方法。
2. 如何实现的对URI的支 ...