最近写了个项目,是使用webView写的,在网页加载的时候因为网速的原因,往往没有达到1秒即开的那种效果,所以添加了一个图片loading旋转的功能,告诉用户,APP正在加载中。
下面是xml布局代码:
最近写了个项目,是使用webView写的,在网页加载的时候因为网速的原因,往往没有达到1秒即开的那种效果,所以添加了一个图片loading旋转的功能,告诉用户,APP正在加载中。
下面是xml布局代码:
一、BroadcastReceiver概述:
1、广播接收器是一个专注于接收广播通知信息,并做出对应处理的组件。很多广播是源自于系统代码的──比如,通知时区改变、电池电量低、拍摄了一张照片或者用户改变了语言选项。应用程序也可以进行广播──比如说,通知其它应用程序一些数据下载完成并处于可用状态。
2、应用程序可以拥有任意数量的广播接收器以对所有它感兴趣的通知信息予以响应。所有的接收器均继承自BroadcastReceiver基类。
3、广播接收器没有用户界面。然而,它们可以启动一个activity来响应它们收到的信息,或者用NotificationManager来通知用户。通知可以用很多种方式来吸引用户的注意力──闪动背灯、震动、播放声音等等。一般来说是在状态栏上放一个持久的图标,用户可以打开它并获取消息。
Java语言的关键字,当它用来修饰一个方法或者一个代码块的时候,能够保证在同一时刻最多只有一个线程执行该段代码。
一、当两个并发线程访问同一个对象object中的这个synchronized(this)同步代码块时,一个时间内只能有一个线程得到执行。另一个线程必须等待当前线程执行完这个代码块以后才能执行该代码块。
二、然而,当一个线程访问object的一个synchronized(this)同步代码块时,另一个线程仍然可以访问该object中的非synchronized(this)同步代码块。
三、尤其关键的是,当一个线程访问object的一个synchronized(this)同步代码块时,其他线程对object中所有其它synchronized(this)同步代码块的访问将被阻塞。
四、第三个例子同样适用其它同步代码块。也就是说,当一个线程访问object的一个synchronized(this)同步代码块时,它就获得了这个object的对象锁。结果,其它线程对该object对象所有同步代码部分的访问都被暂时阻塞。
IntentService 服务的原理,就是启动一个服务,然后开启一个工作线程,当工作线程执行完后,服务就会自动销毁,这种方式可以有效的运行超大时间的工作代码,非常有用,但是在编写的时候出现了一个错误,错误的原因就是没有在super.("这里")指定一个服务名.
public class TestIntentService extends IntentService {
private static final String TAG = "TestIntentService";
/**
* Creates an IntentService. Invoked by your subclass's constructor.
*/
public TestIntentService() {
super("TestIntentService");//原来是需要指定一个服务名称
}
Logcat的日志:
06-05 02:21:53.285 21618-21618/com.lanxin.testreceiver I/TestReceiver: before3
06-05 02:21:53.305 21618-21618/com.lanxin.testreceiver I/TestReceiver: after:3
06-05 02:21:53.475 21618-21618/com.lanxin.testreceiver D/TestReceiver1: main:(id)1:(priority)5:(group)main
06-05 02:21:53.475 21618-21618/com.lanxin.testreceiver I/TestReceiver1: 测试一条消息:2
06-05 02:21:53.575 21618-21618/com.lanxin.testreceiver D/TestReceiver1: main:(id)1:(priority)5:(group)main
06-05 02:21:53.595 21618-21618/com.lanxin.testreceiver D/TestReceiver2: main:(id)1:(priority)5:(group)main
06-05 02:21:55.595 21618-21618/com.lanxin.testreceiver I/TestReceiver2: 测试一条消息:2
06-05 02:21:55.595 21618-21618/com.lanxin.testreceiver D/TestReceiver2: main:(id)1:(priority)5:(group)main
06-05 02:21:55.715 21618-21618/com.lanxin.testreceiver I/TestIntentService: Service onCreate
06-05 02:21:55.715 21618-21618/com.lanxin.testreceiver I/TestIntentService: Service onStartCommand
06-05 02:21:55.745 21618-22366/com.lanxin.testreceiver D/TestIntentService: IntentService[TestIntentService]:(id)109:(priority)5:(group)main
06-05 02:21:55.745 21618-22366/com.lanxin.testreceiver I/TestIntentService: onHandleIntent:0
06-05 02:21:55.755 21618-22366/com.lanxin.testreceiver D/TestIntentService: IntentService[TestIntentService]:(id)109:(priority)5:(group)main
06-05 02:21:55.755 21618-22366/com.lanxin.testreceiver I/TestIntentService: onHandleIntent:1
06-05 02:21:56.015 21618-21618/com.lanxin.testreceiver I/TestIntentService: Service onDestroy
AsyncTask介绍
Android的AsyncTask比Handler更轻量级一些,适用于简单的异步处理。
首先明确Android之所以有Handler和AsyncTask,都是为了不阻塞主线程(UI线程),且UI的更新只能在主线程中完成,因此异步处理是不可避免的。
Android为了降低这个开发难度,提供了AsyncTask。AsyncTask就是一个封装过的后台任务类,顾名思义就是异步任务。
近期评论