私には2つのアクティビティactivityA
があります。アイコンがあります。そのアイコンをクリックすると、他の人にインテントが送信されactivityB
、Facebookページ(カスタムダイログ)が呼び出さfbdailog
れます。ロードに時間がかかるため、実装しようとしていますprogressdailog
。以下は私のコードです
ImageView faceBookIntegration = (ImageView) activity
.findViewById(R.id.facebookintegration);
faceBookIntegration.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
Constants.isLayoutTouched = true;
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN: {
CityAttractions.this.runOnUiThread(new Runnable() {
public void run() {
dialog = ProgressDialog.show(CityAttractions.this, "","Please wait...", true);
dialog.show();
}
});
Intent menuSettingsIntent = new Intent(CityAttractions.this, ShareOnFacebook.class);
menuSettingsIntent.putExtra("facebookMessage", "Msg");
startActivityForResult(new Intent(menuSettingsIntent).addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT), 1);
break;
}
case MotionEvent.ACTION_MOVE:
break;
case MotionEvent.ACTION_UP:
break;
}
return false;
}
});
}
問題は、 を投稿またはキャンセルした後fbdailog
、progressdailog
がまだ表示progreessdailog
されていactivityA
ます。どんな助けでも大歓迎です