Androidのすべてのサービスを学び終えたDemo
382009 ワード
この例は「アンドロイドバス」から来て、読んで、理解して、この文章を書いて、このDemoを通じてAndroidの中のすべてのサービスを学んで広範な読者に役立つことを望んでいます.
説明:この例はAndroidでよく見られる多くのサービスを実現しています.以下は実現のスクリーンショットです.
次に、この例をソースコードで分析します.
1.MainActivity--メインインタフェース
このクラスは主にユーザーが見たこのActivityを実現し、その中には一連のボタンが含まれており、ユーザーはボタンをクリックして相応の動作を実行するので、このクラスでは主にボタンの定義とボタンに対して相応のリスナーをバインドし、以下は実現のコードである.
2.サービス開始ボタン
このクラスは最初のボタンの機能を実現し、このクラスに新しいスレッドを開き、1秒おきに1行のログを印刷します.
コードは次のとおりです.
3.バインドサービス
サービスには2つの方法があります.
(1)startService,サービスを開始するには,プログラマがサービスのライフサイクルを管理する必要がある.
(2)bindService,バインドサービス,このときServiceはActivityにバインドされる.
実装コードは次のとおりです.
次に、ブロードキャスト、Notification通知、Alarm目覚まし時計などのサービスの具体的な内容をご紹介します
4.放送の送信
sendBroadcastを使用して、1つのActionにブロードキャストを送信し、対応するブロードキャスト受信機によって対応する動作を受信して実行する
実装されるコードは次のとおりです.
(1)ブロードキャストサービスを開く
(2)ブロードキャストメッセージの処理
5.Notification通知
これを通知といいます.携帯電話の通知欄に表示されます.ユーザーはクリアできます.クリックできます.
実装されるコードは次のとおりです.
6.Alarmアラームサービス
次のページでは、携帯電話の状態や、Vibratorの振動機能などのサービスの詳細をご紹介します
7.携帯電話の状態を取得する
この機能は、ユーザーの携帯電話の定義された情報を取得することを実現しています.
8.Vibrator振動機能
携帯電話の振動管理を実現
次に、ソースコードのダウンロードアドレスを示します(注:サードパーティのWebサイトのダウンロードリソースは登録する必要があります):
http://download.csdn.net/detail/dlutbrucezhang/5061544
このDemoを通じてAndroidのすべてのサービスを学び、多くの読者に役立つことを望んでいます.テキストアドレスhttp://mobile.51cto.com/android-386769_2.htm
説明:この例はAndroidでよく見られる多くのサービスを実現しています.以下は実現のスクリーンショットです.
次に、この例をソースコードで分析します.
1.MainActivity--メインインタフェース
このクラスは主にユーザーが見たこのActivityを実現し、その中には一連のボタンが含まれており、ユーザーはボタンをクリックして相応の動作を実行するので、このクラスでは主にボタンの定義とボタンに対して相応のリスナーをバインドし、以下は実現のコードである.
- package lovefang.stadyService;
-
- import android.app.Activity;
- import android.os.Bundle;
- import android.widget.Button;
- import android.view.View;
- import android.content.Intent;
- import android.util.Log;
- /** */
- public class MainStadyServics extends Activity {
- /** */
- Button startServiceButton;//
- Button shutDownServiceButton;//
- Button startBindServiceButton;//
- Button sendBroadcast;//
- Button notificationButton;//
- Button alarmButton;//
- Button handlerButton;// handler
- Button asyncButton;//
- Button phoneStateButton;//
- Button callphoneButton;//
- Button vibratorButton;//
- CountService countService;
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- Log.v("MainStadyServics", "setContentView");
- setContentView(R.layout.main);
- getWidget();
- regiestListener();
- }
- /** */
- public void getWidget(){
- startServiceButton = (Button)findViewById(R.id.startServerButton);
- startBindServiceButton = (Button)findViewById(R.id.startBindServerButton);
- shutDownServiceButton = (Button)findViewById(R.id.sutdownServerButton);
- sendBroadcast = (Button)findViewById(R.id.sendBroadcast);
- notificationButton = (Button)findViewById(R.id.notification);
- alarmButton = (Button)findViewById(R.id.alarm);
- handlerButton = (Button)findViewById(R.id.handler);
- asyncButton = (Button)findViewById(R.id.async);
- phoneStateButton = (Button) findViewById(R.id.phonestate);
- callphoneButton = (Button) findViewById(R.id.callphone);
- vibratorButton = (Button) findViewById(R.id.vibrator);
- }
- /** */
- public void regiestListener(){
- startServiceButton.setOnClickListener(startService);
- shutDownServiceButton.setOnClickListener(shutdownService);
- startBindServiceButton.setOnClickListener(startBinderService);
- sendBroadcast.setOnClickListener(broadcastReceiver);
- notificationButton.setOnClickListener(notification);
- alarmButton.setOnClickListener(startAlarm);
- handlerButton.setOnClickListener(handler);
- asyncButton.setOnClickListener(async);
- phoneStateButton.setOnClickListener(phonestate);
- callphoneButton.setOnClickListener(callphoneEvent);
- vibratorButton.setOnClickListener(vibrator);
- }
- /** */
- public Button.OnClickListener startService = new Button.OnClickListener(){
- public void onClick(View view){
- /** */
- Intent intent = new Intent(MainStadyServics.this,CountService.class);
- startService(intent);
- Log.v("MainStadyServics", "start Service");
- }
- };
- /** */
- public Button.OnClickListener shutdownService = new Button.OnClickListener(){
- public void onClick(View view){
- /** */
- Intent intent = new Intent(MainStadyServics.this,CountService.class);
- /** Activity , */
- stopService(intent);
- Log.v("MainStadyServics", "shutDown serveice");
- }
- };
- /** Activity*/
- public Button.OnClickListener startBinderService = new Button.OnClickListener(){
- public void onClick(View view){
- /** */
- Intent intent = new Intent(MainStadyServics.this,UseBrider.class);
- startActivity(intent);
- Log.v("MainStadyServics", "start Binder Service");
- }
- };
- /** */
- public Button.OnClickListener broadcastReceiver = new Button.OnClickListener(){
- public void onClick(View view){
- Intent intent = new Intent(MainStadyServics.this,UseBroadcast.class);
- startActivity(intent);
- Log.v("MainStadyServics","start broadcast");
- }
- };
- /** */
- public Button.OnClickListener notification = new Button.OnClickListener(){
- public void onClick(View view){
- Intent intent = new Intent(MainStadyServics.this, UseNotification.class);
- startActivity(intent);
- Log.v("MainStadyService ","start Notification");
-
- }
- };
- /** */
- public Button.OnClickListener startAlarm = new Button.OnClickListener(){
- public void onClick(View view){
- Intent intent = new Intent(MainStadyServics.this, UseAlarmManager.class);
- startActivity(intent);
- Log.v("MainStadyService ","start alarm");
-
- }
- };
- public Button.OnClickListener handler= new Button.OnClickListener(){
- public void onClick(View view){
- Intent intent = new Intent(MainStadyServics.this, UseHandleMessage.class);
- startActivity(intent);
- Log.v("MainStadyService ","start handle");
- }
- };
- public Button.OnClickListener async= new Button.OnClickListener(){
- public void onClick(View view){
- Intent intent = new Intent(MainStadyServics.this, UseAsyncTask.class);
- startActivity(intent);
- Log.v("MainStadyService ","start handle");
- }
- };
- public Button.OnClickListener phonestate= new Button.OnClickListener(){
- public void onClick(View view){
- Intent intent = new Intent(MainStadyServics.this, UsePhoneState.class);
- startActivity(intent);
- Log.v("MainStadyService ","start phonestate");
- }
- };
- public Button.OnClickListener callphoneEvent= new Button.OnClickListener(){
- public void onClick(View view){
- Intent intent = new Intent(MainStadyServics.this, UseActionCall.class);
- startActivity(intent);
- Log.v("MainStadyService ","start callphone");
- }
- };
- public Button.OnClickListener vibrator= new Button.OnClickListener(){
- public void onClick(View view){
- Intent intent = new Intent(MainStadyServics.this, UseVibrator.class);
- startActivity(intent);
- Log.v("MainStadyService ","start callphone");
- }
- };
- /***/
- protected void onDestroy(){
- super.onDestroy();
- Intent intent = new Intent(MainStadyServics.this,CountService.class);
- /** Activity , */
- stopService(intent);
- }
-
-
- }
2.サービス開始ボタン
このクラスは最初のボタンの機能を実現し、このクラスに新しいスレッドを開き、1秒おきに1行のログを印刷します.
コードは次のとおりです.
- package lovefang.stadyService;
- /** */
- import android.app.Service;//
- import android.os.IBinder;
- import android.os.Binder;
- import android.content.Intent;
- import android.util.Log;
- /** */
- public class CountService extends Service{
- /** */
- boolean threadDisable ;
- int count;
-
- public IBinder onBind(Intent intent){
- return null;
- }
- public void onCreate(){
- super.onCreate();
- /** , , Log */
- new Thread(new Runnable(){
- public void run(){
- while(!threadDisable){
- try{
- Thread.sleep(1000);
- }catch(InterruptedException e){
-
- }
- count++;
- Log.v("CountService","Count is"+count);
- }
- }
- }).start();
- }
- public void onDestroy(){
- super.onDestroy();
- /** , */
- this.threadDisable = true;
- }
- public int getConunt(){
- return count;
- }
- class ServiceBinder extends Binder{
- public CountService getService(){
- return CountService.this;
- }
- }
- }
3.バインドサービス
サービスには2つの方法があります.
(1)startService,サービスを開始するには,プログラマがサービスのライフサイクルを管理する必要がある.
(2)bindService,バインドサービス,このときServiceはActivityにバインドされる.
実装コードは次のとおりです.
- package lovefang.stadyService;
- /** */
- import android.app.Activity;
- import android.content.ComponentName;
- import android.content.Context;
- import android.content.Intent;
- import android.content.ServiceConnection;
- import android.os.Bundle;
- import android.os.IBinder;
- import android.util.Log;
-
- /** bindService unBindSerivce */
- public class UseBrider extends Activity {
- /** */
- CountService countService;
-
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(new UseBriderFace(this));
- Intent intent = new Intent(UseBrider.this,CountService.class);
- /** Activity */
- bindService(intent, conn, Context.BIND_AUTO_CREATE);
-
- }
- private ServiceConnection conn = new ServiceConnection(){
- /** */
- public void onServiceConnected(ComponentName name, IBinder service) {
- // TODO Auto-generated method stub
- countService = ((CountService.ServiceBinder)service).getService();
-
- }
- /** */
- public void onServiceDisconnected(ComponentName name) {
- // TODO Auto-generated method stub
- countService =null;
- }
-
-
- };
- protected void onDestroy(){
- super.onDestroy();
- this.unbindService(conn);
- Log.v("MainStadyServics", "out");
- }
- }
次に、ブロードキャスト、Notification通知、Alarm目覚まし時計などのサービスの具体的な内容をご紹介します
4.放送の送信
sendBroadcastを使用して、1つのActionにブロードキャストを送信し、対応するブロードキャスト受信機によって対応する動作を受信して実行する
実装されるコードは次のとおりです.
(1)ブロードキャストサービスを開く
- package lovefang.stadyService;
- /** */
- import android.view.View;
- import android.os.Bundle;
- import android.app.Activity;
- import android.content.Intent;
- import android.widget.Button;
- /** Broadcast, */
- public class UseBroadcast extends Activity{
- /** */
- private Button sendBroadcast;
- /** Activity*/
- public void onCreate(Bundle savedInstanceState){
- super.onCreate(savedInstanceState);
- setContentView(R.layout.broadcast);//
- getView();
- sendBroadcast.setOnClickListener(sendBroadcastClick);//
- }
- public void getView(){
- sendBroadcast = (Button)findViewById(R.id.sendBroadcast);
- }
- /** */
- public Button.OnClickListener sendBroadcastClick = new Button.OnClickListener(){
- public void onClick(View view){
- Intent intent = new Intent();//
- intent.putExtra("CONTENT", "This is a Braodcast demo");//
- intent.setAction("lovefang.stadyService");// Action
- sendBroadcast(intent);
- }
- };
-
- }
(2)ブロードキャストメッセージの処理
- package lovefang.stadyService;
- /***/
- import android.content.BroadcastReceiver;
- import android.content.Context;
- import android.content.Intent;
- import android.util.Log;
- /** */
- public class UseBroadcastReceiver extends BroadcastReceiver{
- public void onReceive(Context context, Intent intent){
- Log.v("UseBroadcastReceiver", "I get a message");
- }
- }
5.Notification通知
これを通知といいます.携帯電話の通知欄に表示されます.ユーザーはクリアできます.クリックできます.
実装されるコードは次のとおりです.
- package lovefang.stadyService;
-
- import android.content.Intent;
- import android.os.Bundle;
- import android.app.Activity;
- import android.app.Notification;
- import android.app.NotificationManager;
- import android.app.PendingIntent;
- import android.net.Uri;
- import android.media.RingtoneManager;
- import android.widget.Button;
- import android.view.View;
-
- /** notification*/
- public class UseNotification extends Activity {
- /** */
- private Button textButton;
- private Button soundButton;//
- private Button vibrateButton;//
- private Button ledButton;// led
- private Button offButton;//
- NotificationManager notificationManager;
- /** Activity*/
- public void onCreate(Bundle savedInstanceState){
- super.onCreate(savedInstanceState);
- setContentView(R.layout.notification);
- getComment();
- registerComment();
- }
- /** */
- public void getComment(){
- /** Notification */
- notificationManager = (NotificationManager)this.getSystemService(NOTIFICATION_SERVICE);
- textButton = (Button)findViewById(R.id.notificationMessage);
- soundButton =(Button)findViewById(R.id.notificationSound);
- vibrateButton = (Button)findViewById(R.id.notificationVibrate);
- ledButton = (Button)findViewById(R.id.notificationLED);
- offButton = (Button)findViewById(R.id.offnotification);
- }
- /** */
- public void registerComment(){
- textButton.setOnClickListener(notificationMessage);
- soundButton.setOnClickListener(notificationSound);
- vibrateButton.setOnClickListener(notificationVibrate);
- ledButton.setOnClickListener(notificationLed);
- offButton.setOnClickListener(notificationOff);
- }
- public Button.OnClickListener notificationMessage = new Button.OnClickListener(){
- public void onClick(View view){
- Notification notification = new Notification();// Notification
- notification.icon = R.drawable.icon;
- notification.tickerText = "This is text notication";//
- /** Intent, */
- PendingIntent intent = PendingIntent
- .getActivity(UseNotification.this,
- 0, new Intent(UseNotification.this,UseNotification.class)
- , 0);
- /** */
- notification.setLatestEventInfo(UseNotification.this
- ,"Notification","Content of Notification Demo",intent);
- /** */
- notificationManager.notify(0, notification);
- }
- };
- public Button.OnClickListener notificationSound = new Button.OnClickListener(){
- public void onClick(View view){
- /** */
- Notification notification = new Notification();
- /** */
- String ringName = RingtoneManager.getActualDefaultRingtoneUri(
- UseNotification.this, RingtoneManager.TYPE_RINGTONE)
- .toString();
- /** */
- notification.sound = Uri.parse(ringName);
- /** */
- notificationManager.notify(0,notification);
- }
- };
- /** */
- public Button.OnClickListener notificationVibrate = new Button.OnClickListener(){
- public void onClick(View view){
- Notification notification = new Notification();// Notification
- notification.vibrate = new long[] {0, 100, 200, 300};//
- notificationManager.notify(0,notification);//
- }
- };
- /**LED */
- public Button.OnClickListener notificationLed = new Button.OnClickListener(){
- public void onClick(View view){
- Notification notification = new Notification();// Notification
- notification.ledOnMS = 300;// led
- notification.ledOffMS = 1000;//
- notificationManager.notify(0,notification);//
- }
- };
- /** */
- public Button.OnClickListener notificationOff = new Button.OnClickListener(){
- public void onClick(View view){
- notificationManager.cancel(0);//
- }
- };
- }
6.Alarmアラームサービス
- package lovefang.stadyService;
-
- import android.app.Activity;
- import android.os.Bundle;
- import android.widget.Button;
- import android.view.View;
- import android.app.AlarmManager;
-
- import java.util.Calendar;
-
- public class UseAlarmManager extends Activity {
- /** */
- private Button startAlarm;
- private Button shutdownAlarm;
- private AlarmManager alarm;
-
- /** Activity*/
- public void onCreate(Bundle savedInstanceState){
- super.onCreate(savedInstanceState);
- setContentView(R.layout.usealarmmanager);
- getWidget();
- }
- public void getWidget(){
- startAlarm = (Button)findViewById(R.id.startAlarm);
- shutdownAlarm = (Button)findViewById(R.id.shutDowntAlarm);
- alarm = (AlarmManager)getSystemService(ALARM_SERVICE);// AlarmManager
- }
- public void registerWidget(){
- startAlarm.setOnClickListener(startAlarms);
- shutdownAlarm.setOnClickListener(shutdownAlarms);
- }
- /** */
- public Button.OnClickListener startAlarms = new Button.OnClickListener(){
- public void onClick(View view){
- // 10
- Calendar calendar = Calendar.getInstance();
- calendar.setTimeInMillis(System.currentTimeMillis());// calendar
- calendar.add(Calendar.SECOND, 10);
-
- alarm.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), null);
- }
- };
- public Button.OnClickListener shutdownAlarms = new Button.OnClickListener(){
- public void onClick(View view){
- alarm.cancel(null);
- }
- };
- }
次のページでは、携帯電話の状態や、Vibratorの振動機能などのサービスの詳細をご紹介します
7.携帯電話の状態を取得する
この機能は、ユーザーの携帯電話の定義された情報を取得することを実現しています.
- package lovefang.stadyService;
- /** */
- import android.os.Bundle;
- import android.app.Activity;
- import android.app.Service;
- import android.view.View;
- import android.widget.Button;
- import android.widget.TextView;
- import android.content.ContentResolver;//This class provides applications access to the content model.
- import android.telephony.TelephonyManager;
- import android.util.Log;
- /** */
- public class UsePhoneState extends Activity{
- /** */
- private ContentResolver cr;
- private Button getStateButton;//
- /** Activity*/
- public void onCreate(Bundle savedInstanceState){
- super.onCreate(savedInstanceState);
- setContentView(R.layout.usephonestate);
-
- cr = getContentResolver();
- Log.v("UsePhonestate","cr = getContentResolver()");
- Log.v("UsePhonestate","setContentView");
- getStateButton = (Button) findViewById(R.id.button_getphonestate);
- Log.v("UsePhonestate","getStateButton");
- getStateButton.setOnClickListener(getState);
- Log.v("UsePhonestate","getStateButton.setOnClickListener");
- }
- private Button.OnClickListener getState = new Button.OnClickListener(){
- public void onClick(View view){
- /** TelephonyManager */
- TelephonyManager telephonyManager = (TelephonyManager) getSystemService(Service.TELEPHONY_SERVICE);
- /** */
- String teleCode = telephonyManager.getNetworkCountryIso();
- /** */
- String teleComCode = telephonyManager.getNetworkOperator();
- /** */
- String teleComName = telephonyManager.getNetworkOperatorName();
- /** */
- int TypeCode = telephonyManager.getPhoneType();
-
- String type = "";
-
- switch(TypeCode){
- case TelephonyManager.PHONE_TYPE_NONE:
- type = "PHONE_TYPE_NONE";
- break;
- case TelephonyManager.PHONE_TYPE_GSM:
- type = "PHONE_TYPE_GSM";
- break;
- case TelephonyManager.PHONE_TYPE_CDMA:
- type = "PHONE_TYPE_CDMA";
- break;
- }
- /** */
- int netTypeCode = telephonyManager.getNetworkType();
- String netType = "NETWORK_TYPE_UNKNOW";
- switch(netTypeCode){
- case TelephonyManager.NETWORK_TYPE_1xRTT:
- netType = "NETWORK_TYPE_1xRTT";
- break;
- case TelephonyManager.NETWORK_TYPE_CDMA:
- netType = "NETWORK_TYPE_CDMA";
- break;
- case TelephonyManager.NETWORK_TYPE_EDGE:
- netType = "NETWORK_TYPE_EDGE";
- break;
- case TelephonyManager.NETWORK_TYPE_EVDO_0:
- netType = "NETWORK_TYPE_EVDO_0";
- break;
- case TelephonyManager.NETWORK_TYPE_EVDO_A:
- netType = "NETWORK_TYPE_EVDO_A";
- break;
- case TelephonyManager.NETWORK_TYPE_GPRS:
- netType = "NETWORK_TYPE_GPRS";
- break;
- case TelephonyManager.NETWORK_TYPE_HSDPA:
- netType = "NETWORK_TYPE_HSDPA";
- break;
- case TelephonyManager.NETWORK_TYPE_HSPA:
- netType = "NETWORK_TYPE_HSPA";
- break;
- case TelephonyManager.NETWORK_TYPE_HSUPA:
- netType = "NETWORK_TYPE_HSUPA";
- break;
- case TelephonyManager.NETWORK_TYPE_IDEN:
- netType = "NETWORK_TYPE_IDEN";
- break;
- case TelephonyManager.NETWORK_TYPE_UMTS:
- netType = "NETWORK_TYPE_UMTS";
- break;
- default:
- break;
- }
-
- /** */
- boolean roamStatusCode = telephonyManager.isNetworkRoaming();
- String roamStatus = "NOT ROAMINF";
- if(roamStatusCode){
- roamStatus = "ROAMING";
- }
-
- /** */
- String imei = telephonyManager.getDeviceId();
- /** IMEI SV*/
- String imeiSV = telephonyManager.getDeviceSoftwareVersion();
- /** IMSI*/
- String imsi = telephonyManager.getSubscriberId();
-
- /** */
- String statusCode = android.provider.Settings.System.getString(cr,
- android.provider.Settings.System.BLUETOOTH_ON);
- String bulettothStatus = "";
- if(statusCode.equals("1")){
- bulettothStatus = "ENABLE";
- }else{
- bulettothStatus = "DISABLE";
- }
-
- /** */
- statusCode = android.provider.Settings.System.getString(cr,
- android.provider.Settings.System.AIRPLANE_MODE_ON);
-
- String AirplaneStatus = "";
- if(statusCode.equals("1")){
- AirplaneStatus = "ENABLE";
- }else{
- AirplaneStatus = "DISABLE";
- }
-
- /** */
- statusCode = android.provider.Settings.System.getString(cr,
- android.provider.Settings.System.DATA_ROAMING);
- String dataRoamStatus = "";
- if(statusCode.equals("1")){
- dataRoamStatus = "ENABLE";
- }else{
- dataRoamStatus = "DISABLE";
- }
- TextView txt = (TextView) findViewById(R.id.text_showphonestate);
- StringBuilder sb = new StringBuilder();
- sb.append("teleCode: "+teleCode+"
");
- sb.append("teleComCode: "+teleComCode+"
");
- sb.append("teleComName: "+teleComName+"
");
- sb.append("type: "+type+"
");
- sb.append("netType: "+netType+"
");
- sb.append("roamStatus: "+roamStatus+"
");
- sb.append("imei: "+imei+"
");
- sb.append("imeiSV: "+imeiSV+"
");
- sb.append("imsi: "+imsi+"
");
- sb.append("bulettothStatus: "+bulettothStatus+"
");
- sb.append("AirplaneStatus: "+AirplaneStatus+"
");
- sb.append("dataRoamStatus: "+dataRoamStatus+"
");
-
- txt.setText(sb.toString());
- }
- };
- }
8.Vibrator振動機能
携帯電話の振動管理を実現
- package lovefang.stadyService;
- /***/
- import android.os.Bundle;
- import android.os.Vibrator;
- import android.app.Activity;
- import android.view.View;
- import android.content.Context;
- import android.widget.Button;
- /** Vibrator*/
- public class UseVibrator extends Activity{
- /***/
- private Button vibrator_1_Button;
- private Button vibrator_2_Button;
- private Button vibrator_3_Button;
- private Vibrator vibrator;
- /***/
- public void onCreate(Bundle savedInstanceState){
- super.onCreate(savedInstanceState);
- setContentView(R.layout.use_vibrator);
- vibrator = (Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
- getWidget();
- registerWidget();
- }
-
- public void getWidget(){
- vibrator_1_Button = (Button) findViewById(R.id.button_vibrator_1);
- vibrator_2_Button = (Button) findViewById(R.id.button_vibrator_2);
- vibrator_3_Button = (Button) findViewById(R.id.button_vibrator_3);
- }
-
- public void registerWidget(){
- vibrator_1_Button.setOnClickListener(vibrator_1);
- vibrator_2_Button.setOnClickListener(vibrator_2);
- vibrator_3_Button.setOnClickListener(vibrator_3);
- }
- /** */
- public Button.OnClickListener vibrator_1 = new Button.OnClickListener(){
- public void onClick(View view){
- /**long */
- /** 100 */
- /** 100 */
- vibrator.vibrate(new long[]{100,100}, 0);
- }
- };
- /** */
- public Button.OnClickListener vibrator_2 = new Button.OnClickListener(){
- public void onClick(View view){
- vibrator.vibrate(new long[]{1000,3000,1000,3000}, 0);
- }
- };
- /** */
- public Button.OnClickListener vibrator_3 = new Button.OnClickListener(){
- public void onClick(View view){
- vibrator.vibrate(new long[]{1000,1000,1000,2000,1000,300}, 0);
- }
- };
- }
次に、ソースコードのダウンロードアドレスを示します(注:サードパーティのWebサイトのダウンロードリソースは登録する必要があります):
http://download.csdn.net/detail/dlutbrucezhang/5061544
このDemoを通じてAndroidのすべてのサービスを学び、多くの読者に役立つことを望んでいます.テキストアドレスhttp://mobile.51cto.com/android-386769_2.htm