gpt4 book ai didi

android - 无法启动服务 Intent { cmp=com.marie.mainactivity/.BackgroundService } : not found

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:15:24 28 4
gpt4 key购买 nike

我一直在学习“Pro Android 2”这本书。我正在处理一个由两个类组成的服务示例:BackgroundService.java 和 MainActivity.java。 MainActivity 声称(错误地?)它启动服务,如下面的 Log.d 调用输出到 logcat 所示:

    public class MainActivity extends Activity {
private static final String TAG = "MainActivity";

@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

Log.d(TAG, "starting service");

Button bindBtn = (Button)findViewById(R.id.bindBtn);
bindBtn.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
Intent backgroundService = new Intent(MainActivity.this, com.marie.mainactivity.BackgroundService.class);
startService(backgroundService);
}
});

Button unbindBtn = (Button)findViewById(R.id.unbindBtn);
unbindBtn.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
stopService(new Intent(MainActivity.this, BackgroundService.class));
}
});
}
}

令我困惑的是,UI 提供了两个按钮:绑定(bind)和取消绑定(bind),如上所示。但是根据documentation如果如下所示的 onBind() 返回 null,表示您不想允许绑定(bind)。但是如上所示(绑定(bind)按钮)的 onClick() 方法 bindBtn.setOnClickListener(new OnClickListener() calls startService(backgroundService) 给出了这个错误:“无法启动服务 Intent { cmp=com.marie.mainactivity/.BackgroundService }: 没有找到"

    public class BackgroundService extends Service {
private NotificationManager notificationMgr;

@Override
public void onCreate() {
super.onCreate();

notificationMgr = NotificationManager)getSystemService(NOTIFICATION_SERVICE);

displayNotificationMessage("starting Background Service");

Thread thr = new Thread(null, new ServiceWorker(), "BackgroundService");
thr.start();
}

class ServiceWorker implements Runnable
{
public void run() {
// do background processing here...

//stop the service when done...
//BackgroundService.this.stopSelf();
}
}

@Override
public void onDestroy()
{
displayNotificationMessage("stopping Background Service");
super.onDestroy();
}

@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
}

@Override
public IBinder onBind(Intent intent) {
return null;
}

private void displayNotificationMessage(String message)
{
Notification notification = new Notification(R.drawable.note, message, System.currentTimeMillis());

PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), 0);

notification.setLatestEventInfo(this, "Background Service", message, contentIntent);

notificationMgr.notify(R.id.app_notification_id, notification);
}
}

我不明白这个例子的意义。如果 onBind() 返回 null 有一个绑定(bind)按钮 (bindBtn) 有什么意义?我认为重点是展示如何启动 BackgroundService。但它似乎不起作用,除非我遗漏了什么。

我应该添加我已经添加到我的 AndroidManifest.xml 中:

    <service android:name=".BackgroundService"></service>

如下:

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

</application>

最佳答案

从 Activity 中删除服务。它与应用程序中的 Activity 处于同一级别。例如:

<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=".BackgroundService"></service>

</application>

关于android - 无法启动服务 Intent { cmp=com.marie.mainactivity/.BackgroundService } : not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6313793/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com