我有一个带有活动的Android应用程序(活动A ),显示3秒的图像(启动画面),然后是主要活动(活动B )将开始。
在我的主要活动中,我启动了一项服务,从网络上获取一些数据,但这项工作需要一些时间,用户会感到不舒服。
我想要的是从活动A 启动服务,并将结果发送到活动B 以向用户显示一些结果。问题是我在活动A 中没有活动B 的实例,无法将ResultReceiver
实例发送到IntentService
。
我该怎么做?
我在活动B 中有一个扩展ResultReceiver
的嵌套类。
答案 0 :(得分:0)
听起来你需要一个数据模型来保存活动之间的数据。
一种解决方案是创建静态类或使用单例设计模式。这可以从服务中获得结果。您可以在活动A中初始化它并在激活活动B的意图
之前启动服务然后在活动B中,您可以发送一个方法来注册它的回叫功能。如果数据在那里直接返回到回叫功能。如果在从函数中调用新类时不这样做。
然后,您的数据将被共享,并且只在您需要时才会被提取/刷新。
// -----------用于保存数据项的类-----------
public class DataItem {
private Integer id = -1;
// My Data stuff
public Integer getId() {
return this.id;
}
}
// -----------将它们连接起来的接口-----------
import java.util.ArrayList;
public interface NotifiyDataInterface {
public void completedDataLoad( ArrayList data, String status);
}
// -----------用于数据提取的单例类-----------
public class DataFetcher {
static DataFetcher _instance = null;
ArrayList<NotifiyDataInterface> _callBackList = null;
ArrayList<DataItem> _cachedData = null;
String _dataStatus = "";
public DataFetcher() {
_callBackList = new ArrayList<NotifiyDataInterface>();
}
public static DataFetcher getInstance() {
if (DataFetcher._instance == null) {
DataFetcher._instance = new DataFetcher();
}
return _instance;
}
public void fetchData(NotifiyDataInterface _callBack) {
if (_cachedData != null) {
_callBack.completedDataLoad(this._cachedData, this._dataStatus);
return;
}
// Add to the call back list
this._callBackList.add(_callBack);
// Code to call your service to get data
//TODO: Add code to call your service
}
public void dataLoadComplete(ArrayList<DataItem> _newItems, String _fetchStatus) {
// Called from the service on a completed data load
this._cachedData = _newItems;
this._dataStatus = _fetchStatus;
NotifiyDataInterface _item = null;
for (int i = 0; i < _callBackList.size(); i++) {
_item = _callBackList.get(i);
_item.completedDataLoad(this._cachedData, this._dataStatus);
}
// Clear out the call back list
_callBackList.clear();
}
}
// -----------活动B的类-----------
public class ActivityB extends ActionBarActivity implements NotifiyDataInterface {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_b);
// Get the single instance from the singleton pattern
DataFetcher dataFetcher = DataFetcher.getInstance();
dataFetcher.fetchData(this);
}
// Here is where you call back is fired
public void completedDataLoad( ArrayList data, String status) {
//TODO: Your Code to call on data load here
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.layout.activity_b, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}