Activity
通常の Java クラスから のメソッドを呼び出すことはできますか?
これは、アクティビティのメソッドです。
public void showMessage(String mensaje) {
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Are you sure you want to exit?")
.setCancelable(false)
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
})
.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
これは、外部 (単純な Java) クラスのコードのメソッドです。
public void write(String importanChange) {
Context context = //Here I dont know what to do here (It's my question,
//but I tried other aproaches but all failed
((MyActivity)mContext).showMessage(message);
その理由は、シミュレーション (Android アプリケーション) で変更を検出するフレームワークがあり、後でこのシミュレーションがこのフレームワークの変更に通知し、変更が重要かどうかを判断するためです。
したがって、変更が重要な場合、フレームワークはアクティビティで showMessage メソッドを実行する必要があります。