gpt4 book ai didi

java - IntentService 在构建他之后不保存我的对象

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

我遇到了一个奇怪的情况,我构建的对象在方法 onHandleIntent 中返回为 null,我不知道为什么或如何解决它。

我的 Activity

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

// the bluetooth is mentioned in case you know a way to use it with out transfer it from the activity
BluetoothManager _bluetooth_manager = (BluetoothManager)getSystemService(Context.BLUETOOTH_SERVICE);
myService = new MyService(new MyClass(_bluetooth_manager.getAdapter()));

Intent intent = new Intent(this, MyService.class);
startService(intent);
}

我的服务

private MyClass X;

public MyService(MyClass x) {
super("man"); //not so much in the movie... =p
X = x;
}

@Override
protected void onHandleIntent(Intent intent) {
// somehow X is null here after i set him in the constractor. any idea why?
}

如果有人可以编辑我的标题,我不确定我写的是否清楚明白...谢谢!

最佳答案

永远不会使用该构造函数。您的 IntentService 在别处有一个零参数的 MyService 构造函数 — Android 将使用该构造函数来创建您的服务实例。

关于java - IntentService 在构建他之后不保存我的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36253129/

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