WEB开发网
开发学院手机开发Android 开发 Android 实例展现如何不同程序间的Serivce调用 阅读

Android 实例展现如何不同程序间的Serivce调用

 2010-09-15 00:10:00 来源:WEB开发网   
核心提示:package com.shinestudio.demo.service;interface IDemoServiceBinder {String getPushString();void setPushString(String str);}AndroidManifesy.xml< ?xml version=&

package com.shinestudio.demo.service;

interface IDemoServiceBinder {

String getPushString();

void setPushString(String str);

}

AndroidManifesy.xml

< ?xml version="1.0" encoding="utf-8"?>

< manifest xmlns:android="http://schemas.android.com/apk/res/android"

package="com.shinestudio.demo.service" android:versionCode="1"

android:versionName="1.0">

< application android:icon="@drawable/icon" android:label="@string/app_name">

< activity android:name=".ServiceActivity" 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="DemoService">

< intent-filter>

< action android:name="com.shinestudio.demo.demoservice">< /action>

< /intent-filter>

< /service>

< /application>

< /manifest>

B程序

package com.shinestudio.demo.reademo;

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.os.RemoteException;

import android.util.Log;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.TextView;

import com.shinestudio.demo.service.IDemoServiceBinder;

public class ReadActivity extends Activity {

上一页  2 3 4 5 6 7 8  下一页

Tags:Android 实例 展现

编辑录入:coldstar [复制链接] [打 印]
赞助商链接