gpt4 book ai didi

java - 简单服务不会绑定(bind) : bindService return false, 服务连接从未触发

转载 作者:行者123 更新时间:2023-12-01 11:18:01 28 4
gpt4 key购买 nike

这是我第一次在 Android 中使用 Service,我的服务无法绑定(bind)。

服务代码:

package mackosoft.almightymessage;
public final class MainService extends Service {
private final static String TAG = "Main Service";
private final IBinder binder = new MainServiceBinder();

@Override
public final void onCreate() {
super.onCreate();
Log.d(TAG, "Service created");
Toast.makeText(this, "Service created", Toast.LENGTH_SHORT).show();
}

@Override
public final int onStartCommand(final Intent intent, final int flags, final int startId) {
return START_STICKY;
}


@Override
public final void onDestroy() {
super.onDestroy();
Log.d(TAG, "Service created");
Toast.makeText(this, "Service destroyed", Toast.LENGTH_SHORT).show();
}


@Override
public final IBinder onBind(final Intent intent) {
Toast.makeText(this, "Service binded", Toast.LENGTH_SHORT).show();
return this.binder;
}

public final class MainServiceBinder extends Binder {
final MainService getService() {
return MainService.this;
}
}
}

list 文件:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mackosoft.almightymessage" >

<application
android:allowBackup="true"
android:icon="@drawable/ic_logo"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden"
android:icon="@drawable/ic_logo"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<service
android:name=".MainService"
android:enabled="true" >
</service>

</Application
</manifest>

最后是 MainActivity 中我尝试绑定(bind)服务的部分:

public final class MainActivity extends AppCompatActivity {
@Override
protected final void onStart() {
super.onStart();
final Intent intent = new Intent(MainActivity.this, MainService.MainServiceBinder.class);
final boolean status = bindService(intent, this.connection, Context.BIND_AUTO_CREATE);
Log.d(TAG, "Service binded ? " + status);
}

private final ServiceConnection connection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
Log.d(TAG, "Service connected !");
service = ((MainService.MainServiceBinder) iBinder).getService(); // service is a private member of MainActivity
}

@Override
public void onServiceDisconnected(ComponentName componentName) {
Log.d(TAG, "Service disconnected !");
}
};
}

运行应用程序,Logcat 显示:

mackosoft.almightymessage D/MainActivity:服务绑定(bind)?错误

服务连接永远不会被触发!

我尝试了多种解决方案:

  1. 将绑定(bind)调用移至 Button.onClick() 并使用 getApplicationContext()
  2. 直接使用getApplicationContext()
  3. 在 list 中,更改 -> android:name="mackosoft.almightymessage.MainService"
  4. 还更改了 Intent-> final Intent Intent = new Intent(this, MainService.MainServiceBinder.class);
  5. 还尝试添加 this.startService(intent)this.getApplicationContext()

以上所有操作均失败,并且日志中没有错误!

我一点运气都没有。

测试设备:运行 Cyanogen Mode 12.1 (Android 5.1) 的 Samsung Galaxy Note 3

Android Studio 1.2.1.1(稳定)

感谢您的帮助!!

最佳答案

final Intent intent = new Intent(MainActivity.this, MainService.MainServiceBinder.class);

应该是

final Intent intent = new Intent(MainActivity.this, MainService.class);

请参阅example provided in the docs欲了解更多信息

关于java - 简单服务不会绑定(bind) : bindService return false, 服务连接从未触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31561383/

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