定义一个Service,每隔一秒钟,变量count增加1;在Activity里bindService,然后利用new Timer() 和 Handler,每隔一秒利用IBinder实例mBinder的getNumber()方法读取count的最新值,并显示在TextView.首次运行,报错。Debu...
分类:
其他好文 时间:
2014-06-28 23:15:44
阅读次数:
307
Binder is like RPC in java. It enables
multi-processes communication. Now we will talking about how to bind service
using IBinder class.总共有3种bind serv...
分类:
其他好文 时间:
2014-06-07 06:29:37
阅读次数:
232
package com.szy.service;import
android.app.Service;import android.content.Intent;import
android.os.IBinder;import android.util.Log;public class Exampl...
分类:
其他好文 时间:
2014-04-30 00:10:08
阅读次数:
510