activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    tools:context=".MainActivity" >   <Button android:id="@+id/current_time"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="当前时间"        android:textColor="@android:color/white"        android:textSize="25dp"/></RelativeLayout>

CurrentTimeService1.java

package com.example.demoboundservice;import android.app.Service;import android.content.Intent;import android.os.Handler;import android.os.IBinder;import android.os.Message;import android.os.Messenger;import android.text.format.Time;import android.widget.Toast;public class CurrentTimeService1 extends Service{public static final int CURRENT_TIME=0;private class IncomingHandler extends Handler{public void handleMessage(Message msg){if(msg.what==CURRENT_TIME){Time time = new Time();time.setToNow();String currentTime = time.format("%Y-%m-%d %H:%M:%S");Toast.makeText(CurrentTimeService1.this,currentTime,Toast.LENGTH_LONG).show();}else{super.handleMessage(msg);}}}public IBinder onBind(Intent intent){Messenger messenger = new Messenger(new IncomingHandler());return messenger.getBinder();}}

CurrentTimeActivity.java:

package com.example.demoboundservice;import android.app.Activity;import android.content.ComponentName;import android.content.Intent;import android.content.ServiceConnection;import android.os.Bundle;import android.os.IBinder;import android.os.Message;import android.os.Messenger;import android.os.RemoteException;import android.view.View;import android.widget.Button;public class CurrentTimeActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);}Messenger messenger;boolean bound;protected void onStart(){super.onStart();Button button = (Button)findViewById(R.id.current_time);button.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {Intent intent = new Intent(CurrentTimeActivity.this,CurrentTimeService.class);bindService(intent,connection,BIND_AUTO_CREATE);if(bound){Message message = Message.obtain(null,CurrentTimeService1.CURRENT_TIME,0,0);try{messenger.send(message);}catch(RemoteException e){e.printStackTrace();}}}});}protected void onStop(){super.onStop();if(bound){bound  = false;unbindService(connection);}}private ServiceConnection connection = new ServiceConnection(){public void onServiceDisconnected(ComponentName name){messenger = null;bound = false;}public void onServiceConnected(ComponentName name,IBinder service){messenger = new Messenger(service);bound = true;}};}

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="com.example.demoboundservice"    android:versionCode="1"    android:versionName="1.0" >    <uses-sdk        android:minSdkVersion="8"        android:targetSdkVersion="19" />    <application        android:allowBackup="true"        android:icon="@drawable/ic_launcher"        android:label="@string/app_name"        android:theme="@style/AppTheme" >        <activity            android:name="com.example.demoboundservice.CurrentTimeActivity"            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="com.example.demoboundservice.CurrentTimeService1"/>    </application></manifest>


更多相关文章

  1. Android(安卓)自定义选择器Dialog(单选,时间选择)
  2. Android系统时间
  3. android&&DatePicker&&TimePicker
  4. DateUtils时间工具类
  5. android采用BroadcastReceiver实现定时器
  6. 使用DatePicker以及TimePicker显示当前日期和时间
  7. java 定时任务
  8. Android(安卓)- 简单的查看APP启动时间
  9. Android(安卓)获取APK编译时间

随机推荐

  1. box-sizing和定位原理
  2. 求1-10阶乘的和
  3. Acrobat Reader小技巧:简单设置,让你的眼睛
  4. ERROR 1047 (08S01)
  5. CDH kerberos web界面 freeipa
  6. 如何在Safari中删除Cookie?
  7. python之利用socket模块实现通信,模拟ftp
  8. 对战秋招小Tip
  9. 求职攻略
  10. DHCP概述工作原理