私はここAlertdialog
に正のボタンの色を変更したい、と私は以下のやっていることですスタイル:
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), R.style.AlertDialogCustom);
私はやっているのは機能していない、私はちょうどポジティブなボタンの色を変更したい。私はJavaコードでボタンの色を変更したくない。
編集-1 AlertdialogレイアウトXML
<android.support.v7.internal.widget.ButtonBarLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/buttonPanel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layoutDirection="locale"
android:orientation="horizontal"
android:paddingLeft="12dp"
android:paddingRight="12dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:gravity="bottom"
app:allowStacking="@bool/abc_allow_stacked_button_bar"
style="?attr/buttonBarStyle">
<Button
android:id="@android:id/button3"
style="?attr/buttonBarNeutralButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<android.support.v4.widget.Space
android:id="@+id/spacer"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"
android:visibility="invisible" />
<Button
android:id="@android:id/button2"
style="?attr/buttonBarNegativeButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@android:id/button1"
style="?attr/buttonBarPositiveButtonStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
それはあなたの質問に答えませんか? - http://stackoverflow.com/a/31514677/632516? – Divers
@Diversいいえ、私はこのようにすることはできません、 'colorAccent'は負と正の両方の色を変更します –
ボタンを1つだけ変更する必要があるなら、それはハックな解決策であり、アンドロイドどのようにjava経由でそれを行う - 上記の私のリンクを確認してください。 – Divers