`

android service

 
阅读更多

service类:

package com.example.service;

import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.IBinder;
import android.util.Log;
import android.widget.Toast;
/**
 * service也是运行在主线程,如果处理比较耗时的操作一样要另起新线程,
 * 没有startservice的情况下stopservice不会报错,没有onbindservice的情况下,onunbindservice会报错。
 * bindservice需要serviceconnection对象关联。start不需要。
 * 需要在配置文件中声明service。
 * 
 * @author Administrator
 *
 */
public class servicedemo extends Service {
	private MediaPlayer mediaPlayer = null;
	private static final String TAG = "MusicService";
//oncreate-onstart-ondestroy
	//oncreate-onbind-onunbind-ondestroy
	@Override
	public IBinder onBind(Intent intent) {
		// TODO Auto-generated method stub
		Toast.makeText(servicedemo.this, "onBind()", Toast.LENGTH_LONG).show();
		Log.i(TAG, "onBind()");
		mediaPlayer.start();
		return null;
	}

	@Override
	public void onCreate() {
		// TODO Auto-generated method stub
		Toast.makeText(servicedemo.this, "onCreate()", Toast.LENGTH_LONG).show();
		Log.i(TAG, "onCreate()");
		mediaPlayer=MediaPlayer.create(servicedemo.this, R.raw.huranzhijian);
//在res文件夹下新建raw文件夹,放入一个mp3文件作为播放文件。
	}

	@Override
	public void onDestroy() {
		// TODO Auto-generated method stub
		Toast.makeText(servicedemo.this, "onDestroy()", Toast.LENGTH_LONG).show();
		Log.i(TAG, "onDestroy()");
		mediaPlayer.stop();
	}

	@Override
	public void onRebind(Intent intent) {
		// TODO Auto-generated method stub
		Toast.makeText(servicedemo.this, "onRebind()", Toast.LENGTH_LONG).show();
		Log.i(TAG, "onRebind()");
	}

	@Override
	public void onStart(Intent intent, int startId) {
		// TODO Auto-generated method stub
		Toast.makeText(servicedemo.this, "onStart()", Toast.LENGTH_LONG).show();
		Log.i(TAG, "onStart()");
		mediaPlayer.start();
	}

	@Override
	public boolean onUnbind(Intent intent) {
		// TODO Auto-generated method stub
		Toast.makeText(servicedemo.this, "onUnbind()", Toast.LENGTH_LONG).show();
		Log.i(TAG, "onUnbind()");
		return false;
	}

}

 主Activity:

package com.example.service;

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.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity {
	private Button start = null;
	private Button stop = null;
	private Button onbind = null;
	private Button unbind = null;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		start = (Button) findViewById(R.id.service_start);
		stop = (Button) findViewById(R.id.service_stop);
		onbind = (Button) findViewById(R.id.service_onbind);
		unbind = (Button) findViewById(R.id.service_unbind);

		start.setOnClickListener(clickListener);
		stop.setOnClickListener(clickListener);
		onbind.setOnClickListener(clickListener);
		unbind.setOnClickListener(clickListener);
	}

	/**
	 * ServiceConnection
	 */
	final ServiceConnection serviceConnection = new ServiceConnection() {

		@Override
		public void onServiceDisconnected(ComponentName name) {
			// TODO Auto-generated method stub
			// 解除链接时调用
		}

		@Override
		public void onServiceConnected(ComponentName name, IBinder service) {
			// TODO Auto-generated method stub
			// 绑定链接时调用
		}
	};
	android.view.View.OnClickListener clickListener = new OnClickListener() {

		@Override
		public void onClick(View v) {
			// TODO Auto-generated method stub
			Intent intent = new Intent(MainActivity.this,
					com.example.service.servicedemo.class);
			switch (v.getId()) {
			case R.id.service_start:
				startService(intent);
				break;

			case R.id.service_stop:
				stopService(intent);
				break;
			case R.id.service_onbind:
				bindService(intent, serviceConnection, Context.BIND_AUTO_CREATE);
				break;
			case R.id.service_unbind:
				unbindService(serviceConnection);
			}
		}
	};
}

 布局文件:

<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"
    tools:context=".MainActivity" >

    <Button
        android:id="@+id/service_start"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="22dp"
        android:layout_marginTop="35dp"
        android:text="start" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_toRightOf="@+id/service_start"
        android:text="service使用"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <Button
        android:id="@+id/service_stop"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/service_start"
        android:layout_alignBottom="@+id/service_start"
        android:layout_alignLeft="@+id/textView1"
        android:layout_marginLeft="20dp"
        android:text="stop" />

    <Button
        android:id="@+id/service_onbind"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/service_stop"
        android:layout_alignBottom="@+id/service_stop"
        android:layout_toRightOf="@+id/textView1"
        android:text="onbind" />

    <Button
        android:id="@+id/service_unbind"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/service_onbind"
        android:layout_alignBottom="@+id/service_onbind"
        android:layout_alignParentRight="true"
        android:text="unbind" />

</RelativeLayout>

配置文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.service"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="8" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <service android:name="com.example.service.servicedemo" >
        </service>

        <activity
            android:name="com.example.service.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>
    </application>

</manifest>

酷

分享到:
评论

相关推荐

    android service 简单实例源代码

    在Android开发中,Service是四大组件之一,它在后台运行,不与用户界面直接交互,常用于执行长时间的任务,如播放音乐、网络通信等。本篇文章将深入解析"android service 简单实例源代码",帮助你理解如何在Android...

    Android Service 实现下载,前台、通知栏同步更新

    在Android应用开发中,Service是用于执行长时间运行操作的一个组件,比如后台下载任务。本教程将详细介绍如何使用Android Service来实现文件下载,并在前台显示进度,同时通过通知栏同步更新下载进度。 首先,我们...

    android service toast 01

    在Android开发中,Service是应用组件之一,它可以在后台长时间运行,即使用户界面不在活动状态。Service主要用于执行长时间运行的任务,如音乐播放、网络通信等。而`Toast`则是一种轻量级的通知方式,用于显示短暂的...

    Android service

    在Android应用开发中,"Service" 是一个非常重要的组件,它允许程序在后台长时间运行,即使用户已经离开了应用程序。在给定的标题"Android service"中,我们可以理解为讨论的是如何利用Android服务来实现特定的功能...

    Android service讲解文档ppt

    在Android应用开发中,Service是四大组件之一,它在后台执行长时间运行的操作,不与用户界面直接交互。本讲解文档将深入探讨Local Service和Remote Service的实现与使用,以及广播接收器的重要作用。 首先,我们来...

    Android Service下载,EventBus更新界面

    在Android应用开发中,Service和EventBus是两个重要的组件,它们在实现后台任务处理和界面交互方面发挥着关键作用。Service用于在后台长时间运行任务,而EventBus则是一种优秀的事件总线框架,使得组件间通信更为...

    android service的小实例

    在Android应用开发中,Service是四大组件之一,用于在后台执行长时间运行的操作,即使用户界面不在活动状态。本文将通过四个小实例详细介绍Android Service的四种启动方式:启动方式、绑定方式、线程方式以及AIDL...

    android service下载资源,同时解压资源

    在Android开发中,Service是一种非常重要的组件,它可以在后台长时间运行,执行一些不需要与用户交互的任务。本示例中,我们关注的是如何利用Service来实现资源的异步下载,并且在下载完成后对ZIP文件进行解压。这个...

    android service 学习(下)

    ### Android Service 学习(下): 进程间通信与 AIDL 在深入探讨 Android Service 的高级用法时,我们不可避免地会接触到进程间通信(IPC)这一关键概念。由于 Android 应用程序通常在各自独立的进程中运行,因此它们...

    Android Service

    在Android应用开发中,Service是四大组件之一,它在后台长时间运行,即使用户与应用程序的交互界面(Activity)已经关闭。Service主要用于执行长时间运行的操作,如播放音乐、处理网络交易或者与内容提供者进行交互...

    Android Service深入解析Demo

    在Android应用开发中,Service是四大组件之一,它在后台长时间运行,不依赖于任何用户界面,用于执行长时间运行的任务,如播放音乐、网络通信等。这篇博客"Android Service深入解析Demo"通过实例深入讲解了Service的...

    Android Service简单实例

    在Android应用开发中,Service是四大组件之一,用于在后台执行长时间运行的操作,即使用户界面关闭也能继续工作。本篇文章将深入探讨`startService`类型的Android Service,通过一个简单的实例来展示其工作原理和...

    Android-AndroidService下载文件

    在Android应用开发中,`Service` 是一个非常重要的组件,它允许应用程序在后台长时间运行操作,即使用户已经离开或关闭了应用界面。本教程将详细讲解如何利用Android的`Service` 组件来实现文件下载功能。 一、...

    android Service类简介

    Service是Android系统中的一个重要组件,它是应用程序框架的一部分,允许开发者在后台执行长时间运行的操作而无需与用户交互。这篇博客文章将深入介绍Android Service类的基本概念、功能、生命周期以及如何在实际...

    android service反馈到主线程更新界面

    在Android应用开发中,Service是实现后台长时间运行任务的关键组件,它可以脱离用户界面(UI)独立执行。在“android service反馈到主线程更新界面”这个主题中,我们主要探讨的是如何利用Service和Handler机制,...

    Android Service实现断点下载

    在Android应用开发中,Service是实现后台长时间运行任务的关键组件,比如音乐播放、网络通信以及本例中的断点续传下载。"Android Service实现断点下载"是一个实用的功能,允许用户在任意时间点暂停下载任务,并在...

    Android Service 服务不被杀死的妙招

    在Android应用开发中,Service是不可或缺的一部分,它用于在后台执行长时间运行的操作,例如播放音乐、后台数据同步等。然而,Android系统为了优化资源管理,可能会在内存紧张时杀死正在运行的Service。本文将深入...

    Android Service和Activity基于串口蓝牙模块的双向通信

    Android Service和Activity基于串口蓝牙模块的双向通信 通过本帖,我们可以了解到如何使用 Android 的 Service 和 Activity 实现基于串口蓝牙模块的双向通信。这种通信方式可以用来控制家电、智能小车等设备。 ...

    Android Service Demo

    "Android Service Demo"是一个示例项目,它展示了如何在Android应用中使用Service,尤其是结合AIDL(Android Interface Definition Language)来实现进程间通信(IPC,Inter-Process Communication)。 首先,我们...

Global site tag (gtag.js) - Google Analytics