IllegalArgumentException 关于点击事件bindService后出现的问题

package com.example.servicebrodemo;

import com.example.servicebrodemo.service.MyService;

import android.os.Bundle;
import android.os.IBinder;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.view.Menu;
import android.view.View;

public class MainActivity extends Activity {
    private MyConnection connection;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        connection = new MyConnection();  // 忘记参数初始化。
        
    
    }

    public void start(View v) {
        Intent intent = new Intent(this, MyService.class);
        startService(intent);
    }

    public void stop(View v) {
        Intent intent = new Intent(this, MyService.class);
        stopService(intent);
    }
    //绑定服务,其实是 activty 链接到service。
    public void bind(View v) {
        Intent intent = new Intent(this, MyService.class);
        bindService(intent, connection, BIND_AUTO_CREATE);
    
    }
    //解绑服务,conn 是一个链接。
    public void unbind(View v) {
        unbindService(connection);
    }

    class MyConnection implements ServiceConnection {
        //服务建立连接,调用此方法。
        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
        
        }
        //服务连接接触,嗲用次方法。
        @Override
        public void onServiceDisconnected(ComponentName name) {
    
        }

    }
}



出现非法异常 ; 原因在意,传入的参数未进行初始化,(MyConnection 类没有进行初始化。) 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值