Service 發送訊息給 Activity
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ceph.monitor.service">
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".MainService" />
</application>
</manifest>
MainActivity.java
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final TextView text = new TextView(this);
setContentView(text);
BroadcastReceiver receiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Bundle message = intent.getExtras();
int value = message.getInt("KeyOne");
String strValue = String.valueOf(value);
text.setText(strValue);
}
};
final String Action = "FilterString";
IntentFilter filter = new IntentFilter(Action);
registerReceiver(receiver, filter);
Intent intent = new Intent(this, MainService.class);
startService(intent);
}
}
MainService.java
public class MainService extends Service {
int count = 0;
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
TimerTask action = new TimerTask() {
@Override
public void run() {
Bundle message = new Bundle();
message.putInt("KeyOne", count);
Intent intent = new Intent("FilterString");
intent.putExtras(message);
sendBroadcast(intent);
count++;
}
};
Timer timer = new Timer();
timer.schedule(action, 1000, 1000);
return super.onStartCommand(intent, flags, startId);
}
@Override
public IBinder onBind(Intent intent) {
return null;
}
}