0

当我的活动开始时,它会创建一个充当服务器的服务。服务器从我桌面上的 python 脚本接收原始数据。该服务创建和维护数据管理器,这些数据管理器处理来自我的 python 脚本中的所有数据,哈希映射键为 DM 的名称。在任何给定时间,我都需要一个活动来绑定服务请求来自服务和进程的一些数据,当活动暂停、停止或被破坏时,它将解除绑定。

我相信我的绑定是正确的,但是当我启动服务时,传递的 ServiceConnection 总是返回 null。有什么想法吗?我的代码是直接从 Android 的 RemoteService 类中窃取的 谢谢~Aedon

{代码附录}

绑定到 PublicService 的 HomeScreen Activity

@Override public void onCreate(Bundle icicle) {
    super.onCreate(icicle);
    doBindService();
    setContentView(R.layout.homescreen);
    initView();
}

public void initView() {
    workbenchs = (Gallery)findViewById(R.id.workbenchs);
    workbenchs.setMinimumHeight(h/4);
    workbenchs.setAdapter(new WorkBenchAdapter(this));
    workbenchs.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
            Intent it = new Intent(HomeScreen.this, Controller.class);
            it.putExtra("workbench", arg2);
            startActivity(it);
        }
    });
}

 // Gallery Adapter

public class WorkBenchAdapter extends BaseAdapter {
    public WorkBenchAdapter(Context c) {   }
    public int getCount() {return mBoundService.getNumBenchs();}
    public Object getItem(int position) {return position;}
    public long getItemId(int position) {return position;}

    public View getView(int position, View convertView, ViewGroup parent) {
        ImageView i = new ImageView(HomeScreen.this);
    i.setImageBitmap(mBoundService.getWorkbench(position).toBitmap());
        i.setLayoutParams(new Gallery.LayoutParams(w/4, h/4));
        return i;
    }
}


 // Service Necessities

public boolean mIsBound = false;
private PublicService mBoundService;
private ServiceConnection mConnection = new ServiceConnection() {
    public void onServiceConnected(ComponentName className, IBinder service) {
        mBoundService = ((PublicService.LocalBinder)service).getService();
    }

    public void onServiceDisconnected(ComponentName className) {
        mBoundService = null;
    }
};

void doBindService() {
    Log.d(TAG, "Binding...");
    bindService(new Intent(this, PublicService.class), mConnection, Context.BIND_AUTO_CREATE);
    mIsBound = true;
    Log.d(TAG, "Bound.");
}

void doUnbindService() {
    if (mIsBound) {
        Log.d(TAG, "Unbinding...");
        unbindService(mConnection);
        mIsBound = false;
        Log.d(TAG, "Unbound."); 
    }
}

我的问题来自工作台适配器。创建适配器时,它调用 get count(从 0 开始),但它一直说 mBoundService 为空。我曾尝试在绑定之前启动服务,但这并没有改变......

4

1 回答 1

2

您是否在清单中指定了服务标签?

<application>您需要指定这样的服务<service android:name="namespace.ServiceName"/>

于 2010-12-16T18:55:44.540 回答