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

标签 java android service android-service android-service-binding

这是我第一次在 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/

相关文章:

java - 执行外部程序

android - android上有没有像fiddler或wireshark这样的http代理?

Android - 从 Binder 到 Broadcasts

java - Wildfly 10.1.0.FINAL 上的内存泄漏 (java.lang.ref.Finalizer/ActiveMQConnection)

java - 并行冒泡排序性能

java - 部署War文件到Tomcat有什么好处?

java - 如何让倒计时进度条不断向下?

android - FirebaseRecyclerAdapter 无法从 Firebase 数据库中检索数据

c# - 如何使用 c# 以编程方式安装系统服务以使用组托管服务帐户 (gMSA)?

android - 从不同的包启动服务