2013-06-21 110 views
12

當我試圖將一個標準主題應用到AlertDialogAlertDialog主題:如何更改項目文本顏色?

AlertDialog.Builder builder = new AlertDialog.Builder(MyClass.this, AlertDialog.THEME_DEVICE_DEFAULT_LIGHT); 

builder.setTitle("Change"); 

String[] info= this.getResources().getStringArray(R.array.info); 

ArrayAdapter arrayAdapter = new ArrayAdapter(this, android.R.layout.select_dialog_singlechoice); 

arrayAdapter.addAll(info); 

builder.setSingleChoiceItems(arrayAdapter, .... 

結果:

enter image description here

的注意的是,我有沒有問題builder.setItems(...)因爲它的文本顏色爲Black,而應用的主題與builder.setSingleChoiceItems(...)有一個白色的文字顏色。

任何快速修復?或者以任何方式創建基於AlertDialog.THEME_DEVICE_DEFAULT_LIGHT的自定義主題?

預期我的個性風格不起作用:

<style name="AlertDialogCustomTheme" android:parent="android:Theme.Dialog"> 
    <item name="android:textColor">#7ABDFF</item> 
    <item name="android:windowIsTranslucent">true</item> 
    <item name="android:windowBackground">@android:color/transparent</item> 


    <!--THE FOLLOWING ITEMS HAVE NOT EFFECT ... !! --> 

    <item name="android:layout_centerHorizontal">true</item> 
    <item name="android:layout_centerVertical">true</item> 
    <item name="android:textColorAlertDialogListItem">#A844BD</item> 
    <item name="android:itemBackground">#7ABDFF</item> 
</style> 

更新

@lopez答案是一個完整的解決方案,但我發現一個單行修復我的問題,自定義主題適用於清單中的活動:

<style name="MyTheme"> 
    <item name="android:textColorAlertDialogListItem">@android:color/black</item> 
</style> 
+0

不幸的屬性僅適用於API 11及更高版本 – jiduvah

回答

6

個人而言,我使用android Dialog但我使用一個自定義的佈局匹配我的應用程序的設計。

下面是一個例子:

new AlertDialog.Builder(context) 
.setView(inflater.inflate(R.layout.dialog_delete_contact, null)) 
.setPositiveButton(context.getResources().getString(android.R.string.ok).toUpperCase(), new DialogInterface.OnClickListener() { 
    public void onClick(DialogInterface dialog, int which) { 
     // YOUR TREATMENT 
    } 
}) 
.setNegativeButton(context.getResources().getString(android.R.string.cancel).toUpperCase(), null) 
.show(); 

佈局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:background="@color/GrayLight" 
android:orientation="vertical" > 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_gravity="center" 
    android:background="@color/Black" 
    android:gravity="center" 
    android:orientation="horizontal" 
    tools:ignore="DisableBaselineAlignment" > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_gravity="center" 
     android:layout_weight="2" 
     android:gravity="center" 
     android:orientation="horizontal" > 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:contentDescription="@string/app_name" 
      android:fitsSystemWindows="true" 
      android:padding="10dip" 
      android:src="@drawable/ic_launcher" /> 
    </LinearLayout> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_gravity="center" 
     android:layout_marginRight="20dp" 
     android:layout_weight="0.5" 
     android:gravity="center" 
     android:orientation="horizontal" > 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="@string/remove_contact" 
      android:textColor="@color/White" 
      android:textSize="20sp" 
      android:textStyle="bold" 
      tools:ignore="HardcodedText" /> 

    </LinearLayout> 
</LinearLayout> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_gravity="center" 
    android:gravity="center" 
    android:orientation="vertical" 
    tools:ignore="DisableBaselineAlignment" > 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:paddingBottom="10dp" 
     android:paddingLeft="20dp" 
     android:paddingRight="20dp" 
     android:paddingTop="20dp" 
     android:text="@string/ask_remove_contact" 
     android:textSize="15sp" 
     tools:ignore="HardcodedText" /> 

</LinearLayout> 

結果在圖:

enter image description here

爲了避免這裏的每一個時間重寫代碼是一個工具類:

public class MyDialog { 

public static Builder create(final Context context, final LayoutInflater layoutInflater, final String title, final String content) { 
    View view = layoutInflater.inflate(R.layout.generic_dialog, null); 
    ((TextView)view.findViewById(R.id.textViewTitleDialog)).setText(title); 
    ((TextView)view.findViewById(R.id.textViewContentDialog)).setText(content); 
    return new AlertDialog.Builder(context).setView(view); 
} 

} 

而使用的一個例子:

AlertDialog.Builder myDialog = MyDialog.create(this, getLayoutInflater(), "Quitter ECOLEMS", "Voulez-vous vraiment quitter l'application?"); 
myDialog.setPositiveButton("Oui", new DialogInterface.OnClickListener() { 
    public void onClick(DialogInterface dialog, int id) { 
     // YOUR TREATMENT 
    } 
}) 
.setNegativeButton("Non", null) 
.show(); 

我希望你有幫助!

+0

xml看起來不完整 – Manny265

0
AlertDialog.Builder builder = new AlertDialog.Builder(MyClass.this, AlertDialog.THEME_DEVICE_DEFAULT_LIGHT); 

builder.setTitle("Change"); 

String[] info= this.getResources().getStringArray(R.array.info); 

ArrayAdapter arrayAdapter = new ArrayAdapter(this, android.R.layout.select_dialog_singlechoice); 

arrayAdapter.addAll(info); 

builder.setSingleChoiceItems(arrayAdapter, ....**change this line to** 

builder.setSingleChoiceItems(info,0,null); 
23

如果有人碰巧閱讀本,並使用詢問服務庫警報對話框,並希望改變的列表項的文本顏色則下降了android:第一部分,像這樣:

<item name="textColorAlertDialogListItem">@color/your_color</item> 
+2

而且,這用於着色未選中的單選按鈕' @ color/your_color' –