アラートの本文のみを変更するカスタム ダイアログが必要です。このスクリーンショットのように出力したい:
しかし、私はそのようなタイプのダイアログについては知りません。どんな助けでも大歓迎です。
アラートの本文のみを変更するカスタム ダイアログが必要です。このスクリーンショットのように出力したい:
しかし、私はそのようなタイプのダイアログについては知りません。どんな助けでも大歓迎です。
はい、ダイアログボックスは必要に応じて変更できます。これは、カスタムダイアログボックスを作成することで実行できます。ステップ1.resの文字列ファイルにスタイルを作成する
<style name="myQuitDialog" parent="android:Theme.Dialog">
<item name="android:gravity">center_horizontal</item>
</style>
ステップ2。レイアウトでxmlファイルを作成します
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_quit"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/image which u want to show"
>
ステップ3。カスタムダイアログボックスのコードをsrcに記述します
class Custom_Dialog extends Dialog {
protected Custom_Dialog(Context context, int theme) {
super(context, theme);
// TODO Auto-generated constructor stub
}
}
private void show_alert() {
final Custom_Dialog alertbox = new Custom_Dialog(this, R.style.myQuitDialog);
Window window = alertbox.getWindow();
window.setBackgroundDrawableResource(android.R.color.transparent);
window.requestFeature(window.FEATURE_NO_TITLE);
alertbox.show();
alertbox.setCancelable(true);
alertbox.setCanceledOnTouchOutside(true);
alertbox.dismiss();
}
}
以下のリンクをご確認ください
http://www.helloandroid.com/tutorials/how-display-custom-dialog-your-android-application
http://www.thiyagaraaj.com/articles/android-articles/customdialogboxpopupusinglayoutinandroid
http://www.thecompboy.com/2011/11/android-tutorial-custom-dialog.html
http://www.mysamplecode.com/2011/06/android-custom-dialog-box-sample-code.html
独自のアクティビティを作成し、android:theme="@android:style/Theme.Dialog"
そのプロパティを AndroidManifest.xml に設定すると、ダイアログ ウィンドウのようになります。