AlertDialogでタイトルの下線の色を変更する方法はありますか? 私はすでにカスタムスタイル定義(下記参照)でタイトルカラーを変更しましたが、下線のxml属性は見つかりませんでした。私はAndroidの4AlertDialogタイトルの下線の色
編集を実行している
<style name="CustomTitle" parent="@android:style/TextAppearance.Holo">
<item name="android:textColor">@color/green</item>
</style>
:それは私がAlertDialog
Builder ad = new AlertDialog.Builder(new ContextThemeWrapper(this,
R.style.DialogPrivate));
ad.setTitle("Custom Dialog");
ad.setMessage("blaaaaa");
ad.setPositiveButton("test", null);
ad.setNegativeButton("test2", null);
ad.show();
作成方法ですそして、それは現時点でどのように見えるかScreenshot
http://stackoverflow.com/questions/2394935/can-i-underline-text-inを参照してください。 -an-android-layout – AliSh
タイトルTextViewにどうやってアクセスできますか?私はデフォルトのAlertDialogを使用していますが、拡張していません。 – user1173367