アラートダイアログの背景を変更したいと思います。私はそうするように、次のコードピースを試してみました:Androidアラートダイアログの背景を変更する方法タイトル
<style name="Theme.AlertDialog" parent="@android:style/Theme.Holo.Light.Dialog">
<item name="android:background">@android:color/transparent</item>
<item name="android:textColor">#659F26</item>
<item name="android:windowTitleStyle">@style/Theme.AlertDialog.Title</item>
</style>
<style name="Theme.AlertDialog.Title" parent="@android:style/TextAppearance.DialogWindowTitle">
<item name="android:background">@drawable/cab_background_top_example</item>
</style>
Javaコード:
ContextThemeWrapper ctw = new ContextThemeWrapper(this, R.style.Theme_AlertDialog);
final AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(ctw);
alertDialogBuilder.setTitle(getResources().getString(R.string.confirmation));
alertDialogBuilder.setMessage(getResources().getString(R.string.msg));
alertDialogBuilder.show();
私のアプリは、このようなダイアログ表示されています。私はそれを見てみたいしながら、
をlike:
私が間違っていることを提案してください。
なぜダウン票を使いますの? – mudit
私はちょうどあなたの質問から私の側から+1を私の問題を解決..... – duggu