我正在创建我的第一个Android应用程序,我需要使用服务。用户界面将有一个复选框(CheckBoxPreference),用于打开/关闭服务,只有我的应用程序才能访问该服务(无需共享)。
到目前为止,此功能的用户界面已准备就绪,我知道如何回应此事件,我不知道如何创建服务以及如何连接到该服务。
这个想法是服务继续监听事件并在后台响应它们,并且该应用程序仅用于打开/关闭它或更改某些设置。
我在网上寻找过教程,但我似乎没有得到这个过程。
答案 0 :(得分:11)
CheckBox checkBox =
(CheckBox) findViewById(R.id.check_box);
checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
startService(new Intent(this, TheService.class));
}
}
});
服务:
public class TheService extends Service {
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
Toast.makeText(this, "Service created!", Toast.LENGTH_LONG).show();
}
@Override
public void onDestroy() {
Toast.makeText(this, "Service stopped", Toast.LENGTH_LONG).show();
}
@Override
public void onStart(Intent intent, int startid) {
Toast.makeText(this, "Service started by user.", Toast.LENGTH_LONG).show();
}
}
答案 1 :(得分:2)
在Android Studio中,右键单击包,然后选择“新建”|服务|服务。现在添加此方法:
@Override
int onStartCommand(Intent intent, int flags, int startId) {
// Your code here...
return super.onStartCommand(intent, flags, startId);
}
注意:不推荐使用onStart。
启动服务:来自活动的onCreate方法(或广播接收者的onReceive方法):
Intent i = new Intent(context, MyService.class);
context.startService(i);