【安卓】Service的基本用法

devtools/2024/11/15 4:15:07/

文章目录

      • Service简介
      • 启动和停止Service
      • Activity和Service进行通信

Service简介

  新建一个ServiceTest项目,然后右击com.example.servicetest→New→Service→Service。

  每个Service中最常用到onCreate()、onStartCommand()和onDestroy()这3个方法其中onCreate()方法会在Service创建的时候调用,onStartCommand()方法会在每次Service启动的时候调用,onDestroy()方法会在Service销毁的时候调用。

  另外需要注意,每一个Service都需要在AndroidManifest.xml文件中进行注册才能生效。

启动和停止Service

  修改activity_main.xml中的代码。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="match_parent"android:layout_height="match_parent"><Buttonandroid:id="@+id/startServiceBtn"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="Start Service" /><Buttonandroid:id="@+id/stopServiceBtn"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="Stop Service" />
</LinearLayout>

  修改MainActivity中的代码。

java">public class MainActivity extends AppCompatActivity implements View.OnClickListener {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Button startService = (Button) findViewById(R.id.startServiceBtn);Button stopService = (Button) findViewById(R.id.stopServiceBtn);startService.setOnClickListener(this);stopService.setOnClickListener(this);}@Overridepublic void onClick(View v) {switch (v.getId()) {case R.id.startServiceBtn:Intent startIntent = new Intent(this, MyService.class);startService(startIntent); // 启动服务break;case R.id.stopServiceBtn:Intent stopIntent = new Intent(this, MyService.class);stopService(stopIntent); // 停止服务break;default:break;}}
}

  修改MyService.java中的代码。

java">public class MyService extends Service {public MyService() {}@Overridepublic IBinder onBind(Intent intent) {// TODO: Return the communication channel to the service.throw new UnsupportedOperationException("Not yet implemented");}@Overridepublic void onCreate(){super.onCreate();Log.d("MyService", "onCreate executed");}@Overridepublic int onStartCommand(Intent intent, int flags, int startId) {Log.d("MyService", "onStartCommand executed");return super.onStartCommand(intent, flags, startId);}@Overridepublic void onDestroy() {super.onDestroy();Log.d("MyService", "onDestroy executed");}
}

Activity和Service进行通信

  修改MyService中的代码。

java">public class MyService extends Service {private DownloadBinder mBinder = new DownloadBinder();class DownloadBinder extends Binder {public void startDownload() {Log.d("MyService", "startDownload executed");}public int getProgress() {Log.d("MyService", "getProgress executed");return 0;}}public MyService() {}@Overridepublic IBinder onBind(Intent intent) {return mBinder;}@Overridepublic void onCreate(){super.onCreate();Log.d("MyService", "onCreate executed");}@Overridepublic int onStartCommand(Intent intent, int flags, int startId) {Log.d("MyService", "onStartCommand executed");return super.onStartCommand(intent, flags, startId);}@Overridepublic void onDestroy() {super.onDestroy();Log.d("MyService", "onDestroy executed");}
}

  修改activity_main.xml中的代码,在布局文件里新增两个按钮用于调用Service。这两个按钮分别是用于绑定和取消绑定Service的,当一个Activity和Service绑定了之后,就可以调用该Service里的Binder提供的方法了。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="match_parent"android:layout_height="match_parent"><Buttonandroid:id="@+id/startServiceBtn"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="Start Service" /><Buttonandroid:id="@+id/stopServiceBtn"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="Stop Service" /><Buttonandroid:id="@+id/bindServiceBtn"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="Bind Service" /><Buttonandroid:id="@+id/unbindServiceBtn"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="Unbind Service" />
</LinearLayout>

  修改MainActivity中的代码。

java">public class MainActivity extends AppCompatActivity implements View.OnClickListener {private MyService.DownloadBinder downloadBinder;private ServiceConnection connection = new ServiceConnection() {@Overridepublic void onServiceConnected(ComponentName name, IBinder service) {downloadBinder = (MyService.DownloadBinder) service;downloadBinder.startDownload();downloadBinder.getProgress();}@Overridepublic void onServiceDisconnected(ComponentName name) {}};@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Button startService = (Button) findViewById(R.id.startServiceBtn);Button stopService = (Button) findViewById(R.id.stopServiceBtn);startService.setOnClickListener(this);stopService.setOnClickListener(this);Button bindService = (Button) findViewById(R.id.bindServiceBtn);Button unbindService = (Button) findViewById(R.id.unbindServiceBtn);bindService.setOnClickListener(this);unbindService.setOnClickListener(this);}@Overridepublic void onClick(View v) {switch (v.getId()) {case R.id.startServiceBtn:Intent startIntent = new Intent(this, MyService.class);startService(startIntent); // 启动服务break;case R.id.stopServiceBtn:Intent stopIntent = new Intent(this, MyService.class);stopService(stopIntent); // 停止服务break;case R.id.bindServiceBtn:Intent bindIntent = new Intent(this, MyService.class);bindService(bindIntent, connection, BIND_AUTO_CREATE); // 绑定服务break;case R.id.unbindServiceBtn:unbindService(connection);  // 解绑服务break;default:break;}}
}

在这里插入图片描述


http://www.ppmy.cn/devtools/97349.html

相关文章

linux安装go 环境

嗯&#xff0c;每个人的工作方法不一样&#xff0c;不喜勿喷哈 这是我安装的go 不是最新的 [rootsimetra-ecs-01 go]# go version go version go1.19.8 linux/amd64 [rootsimetra-ecs-01 go]# 首先先去下载golang的安装包&#xff0c;我用的是go1.19.8.linux-amd64.tar.gz 解…

棋牌推广最有效的方法有哪些呢

在激烈的市场竞争中&#xff0c;棋牌类产品的推广需要精细化、多元化的策略来吸引用户&#xff0c;提升品牌知名度并保持用户活跃度。以下是几种行之有效的推广方式。 1. 数据驱动的精准营销 在进行棋牌推广时&#xff0c;利用大数据分析来洞察用户行为和兴趣&#xff0c;是提…

vue中父组件向子组件传值,子组件向父组件传值,简洁易懂

Vue中父组件传值到子组件 Vue中父组件传值分为两步&#xff1a; 一、父组件中代码中&#xff0c;使用属性绑定向子组件传递数据&#xff0c; 如图, 其中&#xff0c;:titles"title"就是在将父组件的title属性值&#xff0c;传递到子组件所绑定的titles属性中&#x…

failed to create new OS thread (have 20 already; errno=11)

排查 这条错误信息来自于 Go 语言的运行时系统&#xff0c;表明在尝试创建新的操作系统线程时失败了。错误的原因和建议的解决方案如下&#xff1a; 错误原因&#xff1a; failed to create new OS thread (have 20 already; errno11)&#xff1a;这表明程序已经创建了20个线程…

ARM——体系结构

计算机体系结构&#xff1a;冯诺伊曼 哈佛 冯诺依曼结构 冯诺依曼结构&#xff0c;也称冯诺依曼模型或普林斯顿结构&#xff0c;是根据冯诺依曼提出的存储程序概念设计的计算机体系结构。其主要特点包括&#xff1a; 存储程序&#xff1a;指令与数据都…

哈啰出行Java开发工程师一面面经(校招)

牛客网最新面经分享面试过程&#xff1a; 小编为参加校招、秋招、金九银十面试季的小伙伴们准备了一份很全很详细的java面试宝典&#xff08;包含各个大厂真题以及最常见的八股文含答案&#xff09;&#xff0c;由于平台篇幅原因&#xff0c;就不在这里一一展示了&#xff0c;…

分组汇总时保留不变列

Excel表格的ID列是分类&#xff0c;Value1和Value2是数值&#xff0c;ID相同时Descr 1和Descr 2保持不变。 ABCDE1IDValue 1Value 2Descr 1Descr 22112.51.8ax13112.31.1ax14111.91.6ax15123.73.5bx26123.91.5bx27132.50.2cx38132.64.1cx391324.8cx310132.71.8cx3 要求&#…

服务器扩容时该如何选择合适大小的CPU和内存?

服务器扩容时&#xff0c;CPU和内存的搭配是一个重要的考虑因素&#xff0c;因为它直接影响到服务器的性能和资源利用率。以下是一些关于如何搭配CPU和内存大小的建议&#xff1a; 1.确定工作负载 首先&#xff0c;了解您的服务器将运行的应用程序类型和负载特征(如CPU密集型、…