最初のアクティビティ(splashScreen)で、この関数を記述してアラートボックスを作成します
public static void MyAlertBox(String title, String mymessage, Context context)
{
new AlertDialog.Builder(context)
.setMessage(mymessage)
.setTitle(title)
.setCancelable(false)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
.
}
})
.show();
}
グローバル検証可能を宣言します:
public static Activity currentActivity= null;
すべてのアクティビティで:onResume()write "currentActivity = this;"
アラートを表示したい場合は、次のように記述します:(アクティビティ1)
SplashScreen.MyAlertBox("Alert",
"Alert box from activity 1",currentActivity );
それがあなたのために働くことを願っています!!