在我的应用程序中,当应用程序执行某些操作时,我有一个 ProgressDialog 显示:
mProgressDialog = ProgressDialog.show(
((FriendListActivity) ctx).getParent(), "Please wait...",
"Getting data...", true);
updateDisplay(true);
在 updateDisplay 方法中,它执行如下操作:
items = new ArrayList<FriendInfo>();
fa = new FriendListAdapter(ctx, R.layout.friendlist_item, items);
setListAdapter(fa);
Thread t = new Thread() {
public void run() {
getFriendList(); //This is where the problem occured
initFriendList();
handler.post(new Runnable() {
public void run() {
mProgressDialog.dismiss();
fa.notifyDataSetChanged();
};
});
}
};
t.start();
在getFriendList()
中,我拨打电话以获取 Facebook 用户的信息:
AsyncFacebookRunner mAsyncRunner = new AsyncFacebookRunner(
facebook);
mAsyncRunner.request("me/friends&fields=name,picture",
new FriendsRequestListener((FriendListActivity) ctx,
currentuser));
之后,用户的信息将保存在我的数据库中。该initFriendList();
方法(如下getFriendList()
)将使用该数据来初始化视图。
问题是我希望 initFriendList() 等到 getFriendList() 完成获取数据。但是在 中getFriendList()
,我使用 AsyncFacebookRunner,所以 initFriendList() 会立即运行。如何让 initFriendList() 在运行之前等待 AsyncFacebookRunner 完成。