Xamarin-Androidダイアログ
アラートダイアログ
このセクションでは、クリックするとアラートダイアログボックスを表示するボタンを作成します。ダイアログボックスには、2つのボタンが含まれています。Delete そして Cancel ボタン。
まず第一に、に行きます main.axml 次のコードに示すように、線形レイアウト内に新しいボタンを作成します。
<?xml version = "1.0" encoding = "utf-8"?>
<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
android:orientation = "vertical"
android:layout_width = "fill_parent"
android:background = "#d3d3d3"
android:layout_height = "fill_parent">
<Button
android:id="@+id/MyButton"
android:layout_width = "fill_parent"
android:layout_height = "wrap_content"
android:text = "Click to Delete"
android:textColor = "@android:color/background_dark"
android:background = "@android:color/holo_green_dark" />
</LinearLayout>
次に、開く MainActivity.cs アラートダイアログを作成し、その機能を追加します。
protected override void OnCreate(Bundle bundle) {
base.OnCreate(bundle);
SetContentView(Resource.Layout.Main);
Button button = FindViewById<Button>(Resource.Id.MyButton);
button.Click += delegate {
AlertDialog.Builder alertDiag = new AlertDialog.Builder(this);
alertDiag.SetTitle("Confirm delete");
alertDiag.SetMessage("Once deleted the move cannot be undone");
alertDiag.SetPositiveButton("Delete", (senderAlert, args) => {
Toast.MakeText(this, "Deleted", ToastLength.Short).Show();
});
alertDiag.SetNegativeButton("Cancel", (senderAlert, args) => {
alertDiag.Dispose();
});
Dialog diag = alertDiag.Create();
diag.Show();
};
}
完了したら、アプリケーションをビルドして実行し、結果を表示します。
上記のコードでは、alertDiagというアラートダイアログを作成しました。次の2つのボタンがあります-
setPositiveButton −含まれています Delete クリックすると確認メッセージを表示するボタンアクション Deleted。
setNegativeButton −含まれています Cancel クリックするとアラートダイアログボックスを閉じるボタン。