Android 는 Activity,Service 와 Broadcaster 3 대 구성 요소 간 에 서로 호출 하 는 방법 에 대한 상세 한 설명 을 실현 합 니 다.

이 사례 는 안 드 로 이 드 가 Activity,Service 와 Broadcaster 3 대 구성 요소 간 에 서로 호출 하 는 방법 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
우 리 는 두 가지 문 제 를 연구한다.
1.Service 는 Broadcaster 를 통 해 activity 의 TextView 를 어떻게 변경 합 니까?
(이 문 제 를 연구 하고 서비스 가 서버 에서 정 보 를 얻 은 것 을 고려 하여 msg 를 activity 에 되 돌려 줍 니 다)
2.Activity 는 어떻게 Binder 를 통 해 Service 를 호출 하 는 방법 입 니까?
(이 문 제 를 연구 하고 서버 와 상호작용 하 는 동작 을 고려 하여 Service 에 포장 하고 Activity 는 인터페이스 만 보 여 주 며 Service 를 호출 하 는 방법)
구조 도 는 다음 과 같다.

효과 도 는 다음 과 같다.

"start service"단 추 를 누 르 고 Service 를 시작 한 후 Activity 의 UI 를 변경 합 니 다.

"send msg to server"단 추 를 누 르 면 Service 를 호출 하 는 방법 으로 NotificationBar 를 표시 합 니 다.
코드:
1.MyService 클래스 를 새로 만 들 고 서 비 스 를 계승 합 니 다.

package com.ljq.activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.os.Binder;
import android.os.IBinder;
public class MyService extends Service {
 private NotificationManager notificationManager = null;
 private final IBinder binder = new LocalBinder();
 @Override
 public void onCreate() {
 sendMsgtoActivty("Service is oncreating.
"); } @Override public IBinder onBind(Intent intent) { String msg = "Activity is sendding message to service,
Service send msg to server!
"; sendMsgtoActivty(msg); return binder; } /** * activity * * @param msg */ private void sendMsgtoActivty(String msg) { Intent intent = new Intent("com.android.Yao.msg"); intent.putExtra("msg", msg); this.sendBroadcast(intent); } @Override public void onDestroy() { super.onDestroy(); if(notificationManager!=null){ notificationManager.cancel(0); notificationManager=null; } } /** * * * @param msg */ private void showNotification(String msg) { notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); // Notification Notification notification =new Notification(R.drawable.icon, "A Message Coming!", System.currentTimeMillis()); //FLAG_AUTO_CANCEL //FLAG_NO_CLEAR //FLAG_ONGOING_EVENT //FLAG_INSISTENT , , notification.flags |= Notification.FLAG_ONGOING_EVENT; // "Ongoing" " " notification.flags |= Notification.FLAG_NO_CLEAR; // " " , , FLAG_ONGOING_EVENT notification.flags |= Notification.FLAG_SHOW_LIGHTS; //DEFAULT_ALL , , , //DEFAULT_LIGHTS //DEFAULT_SOUNDS //DEFAULT_VIBRATE , <uses-permission android:name="android.permission.VIBRATE" /> notification.defaults = Notification.DEFAULT_LIGHTS; // //notification.defaults=Notification.DEFAULT_LIGHTS|Notification.DEFAULT_SOUND; notification.ledARGB = Color.BLUE; notification.ledOnMS =5000; // , // //Intent notificationIntent =new Intent(MainActivity.this, MainActivity.class); // Activity Intent notificationIntent = new Intent(getApplicationContext(), MainActivity.class); // , , , 。 notificationIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP); PendingIntent contentItent = PendingIntent.getActivity(this, 0, notificationIntent, 0); notification.setLatestEventInfo(this, "Message", "Message:" + msg, contentItent); // Notification NotificationManager notificationManager.notify(0, notification); } /** * activity * * @param msg */ public void receiverMsgtoActivity(String msg){ sendMsgtoActivty("
receiverMsgtoActivity:"+msg); } public void sendMsgtoServer(String msg) { showNotification(msg); } public class LocalBinder extends Binder { public MyService getService() { return MyService.this; } } }
2.새로운 MyBroadcastreceiver 클래스 를 만 들 고 BroadcastReceiver 를 계승 하여 Intent 시작 서 비 스 를 보 냅 니 다.

package com.ljq.activity;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
/**
 *   Intent    
 *
 * @author jiqinlin
 *
 */
public class MyBroadcastreceiver extends BroadcastReceiver {
 @Override
 public void onReceive(Context context, Intent intent) {
 Intent service = new Intent(context, MyService.class);
 context.startService(service);
 }
}

3.새로 만 든 MainActivity 클래스 는 사실은 activity 로 인터페이스 를 나타 내 는 데 사 용 됩 니 다.

package com.ljq.activity;
import java.util.List;
import android.app.Activity;
import android.app.ActivityManager;
import android.content.BroadcastReceiver;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.util.Log;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends Activity implements View.OnClickListener {
 private String msg = "";
 private TextView txtMsg;
 private UpdateReceiver receiver;
 private MyService myService;
 private final static String TAG=MainActivity.class.getSimpleName();
 @Override
 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.main);
 txtMsg = (TextView) this.findViewById(R.id.txtMsg);
 this.findViewById(R.id.btnStart).setOnClickListener(this);
 this.findViewById(R.id.btnSend).setOnClickListener(this);
 //    Intent
 receiver = new UpdateReceiver();
 IntentFilter filter = new IntentFilter();
 filter.addAction("com.android.Yao.msg");
 this.registerReceiver(receiver, filter);
 //        
 //Intent intent = new Intent(MainActivity.this, MyService.class);
 //this.bindService(intent, conn, BIND_AUTO_CREATE);
 }
 @Override
 protected void onDestroy() {
 super.onDestroy();
 //    
 if(conn!=null){
  unbindService(conn);
  myService=null;
 }
 }
 public class UpdateReceiver extends BroadcastReceiver {
 @Override
 public void onReceive(Context context, Intent intent) {
  //  service      
  msg = intent.getStringExtra("msg");
  txtMsg.append(msg);
 }
 }
 private ServiceConnection conn = new ServiceConnection() {
 @Override
 public void onServiceConnected(ComponentName name, IBinder service) {
  myService = ((MyService.LocalBinder) service).getService();
  Log.i(TAG, "onServiceConnected myService: "+myService);
 }
 @Override
 public void onServiceDisconnected(ComponentName name) {
  myService = null;
 }
 };
 @Override
 public void onClick(View v) {
 Intent intent = new Intent(MainActivity.this, MyService.class);
 switch (v.getId()) {
 case R.id.btnStart:
  //        
  if(false==isServiceRunning(this, MyService.class.getName())){
  Log.i(TAG, "start "+MyService.class.getSimpleName()+" service");
  this.bindService(intent, conn, BIND_AUTO_CREATE);
  }
  Log.i(TAG, MyService.class.getName()+" run status: "+isServiceRunning(this, MyService.class.getName()));
  break;
 case R.id.btnSend:
  //        
  if(false==isServiceRunning(this, MyService.class.getName())){
  Log.i(TAG, "start "+MyService.class.getSimpleName()+" service");
  this.bindService(intent, conn, BIND_AUTO_CREATE);
  }
  Log.i(TAG, MyService.class.getName()+" run status: "+isServiceRunning(this, MyService.class.getName()));
  Log.i(TAG, "onClick myService: "+myService); //           null(             ,         )
  if(myService!=null){
    myService.sendMsgtoServer("i am sending msg to server");
    // activity     service
    myService.receiverMsgtoActivity("this is a msg");
   }
  break;
 }
 }
 /**
 *           
 *
 * @param context
 * @param className        :  +  
 * @return true    false     
 */
 public static boolean isServiceRunning(Context context, String className) {
 boolean isRunning = false;
 ActivityManager activityManager = (ActivityManager) context
  .getSystemService(Context.ACTIVITY_SERVICE);
 //       
 List<ActivityManager.RunningServiceInfo> services= activityManager.getRunningServices(Integer.MAX_VALUE);
 if(services!=null&&services.size()>0){
  for(ActivityManager.RunningServiceInfo service : services){
  if(className.equals(service.service.getClassName())){
   isRunning=true;
   break;
  }
  }
 }
 return isRunning;
 }
}

4.main.xml 레이아웃 파일

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical" android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <TextView android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:id="@+id/txtMsg" />
 <LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="horizontal"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content">
 <Button android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="start service"
  android:id="@+id/btnStart"/>
 <Button android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="send msg to server"
  android:id="@+id/btnSend"/>
 </LinearLayout>
</LinearLayout>

5.리스트 파일 AndroidManifest.xml,구성 요소 설정 등 정보

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.ljq.activity"
   android:versionCode="1"
   android:versionName="1.0">
  <application android:icon="@drawable/icon" android:label="@string/app_name">
    <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=".MyService"/>
    <receiver android:name=".MyBroadcastreceiver" />
  </application>
  <uses-sdk android:minSdkVersion="7" />
</manifest>

더 많은 안 드 로 이 드 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.,,,,,,,
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기