为了账号安全,请及时绑定邮箱和手机立即绑定

BindService总是不对

MyBindService.class

package com.example.myapplication;

import android.app.Service;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Binder;
import android.os.IBinder;
import android.support.annotation.Nullable;
import android.util.Log;

public class MyBindService extends Service {
    @Override
    public void onCreate() {
        Log.i("info", "bind onCreate");
        super.onCreate();
    }
    @Override
    public void unbindService(ServiceConnection conn) {
        Log.i("info", "bind unbindService");
        super.unbindService(conn);
    }

    @Override
    public void onDestroy() {
        Log.i("info", "bind onDestroy");
        super.onDestroy();
    }

    public class MyBinder extends Binder {
        public MyBindService getService() {
            return MyBindService.this;
        }
    }
    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        Log.i("info", "bind onBind");
        return new MyBinder();
    }

    public void Play() {
        Log.i("info", "播放");
    }
    public void Pause() {
        Log.i("info", "暂停");
    }
    public void Shang() {
        Log.i("info", "上首");
    }
    public void Next() {
        Log.i("info", "下首");
    }
}

Activity

package com.example.myapplication;

import android.app.Service;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.IBinder;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;

public class MainActivity extends AppCompatActivity {
    Intent intent;
    MyBindService service;
    ServiceConnection connection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName name, IBinder binder) {
            service=((MyBindService.MyBinder)binder).getService();
        }

        @Override
        public void onServiceDisconnected(ComponentName name) {

        }
    };

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    public void doClick(View v) {
        intent = new Intent(MainActivity.this, MyBindService.class);
        switch (v.getId()) {
            case R.id.bind:
                bindService(intent,connection, Service.BIND_AUTO_CREATE);
                break;
            case R.id.unbind:
                unbindService(connection);
                break;
            case R.id.play:
                service.Play();
                break;
            case R.id.pause:
                service.Pause();
                break;
            case R.id.shang:
                service.Shang();
                break;
            case R.id.next:
                service.Next();
                break;
        }
    }
}

Manifest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.myapplication">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>


正在回答

3 回答

serviceconnection 不能为null ,我试过了

0 回复 有任何疑惑可以回复我~

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

明显写错位置了

这样话,你每次点击事件发生的话 都会实例化一个intent ,实例化后,有些时候是没有启动的(如点击R.id.play)。

0 回复 有任何疑惑可以回复我~
#1

慕勒9345121

什么意思,那里位置写错了
2016-07-26 回复 有任何疑惑可以回复我~
#2

一笑无横

我也报这个错,怎么办?也是代码一样报illegalstateexception,纠结中。。。
2016-12-04 回复 有任何疑惑可以回复我~

一按bind就出错...

0 回复 有任何疑惑可以回复我~
#1

4u

这样看不出来有错,贴一下logcat
2016-05-25 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Android攻城狮的第二门课(第3季)
  • 参与学习       74912    人
  • 解答问题       420    个

手势识别、数据存储和4大组件,让你牢牢掌握之前的基础知识点

进入课程

BindService总是不对

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信