程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> dialog-Android 對話框中在黑色的背景上的黑色文字

dialog-Android 對話框中在黑色的背景上的黑色文字

編輯:編程綜合問答
Android 對話框中在黑色的背景上的黑色文字

我想在對話框中設置一個ListView中背景為白色,文本為黑色。下面的代碼生成一個對話框,是一個黑色的背景帶有黑色的字體。但是contextmenu看起來是正確的,有白色背景和黑色字體。
我把主題設置為Light,還要添加什麼呢?

        dialog1 = new Dialog(this);         
        AlertDialog.Builder builder = new AlertDialog.Builder(this);            
        builder.setTitle("Select Color Mode");

        ListView modeList = new ListView(this);         
        String[] stringArray = new String[] { "Bright Mode", "Normal Mode" };
        ArrayAdapter<String> modeAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, android.R.id.text1, stringArray);
        modeList.setAdapter(modeAdapter);

最佳回答:


你可以使用一個自定義的適配器:

getView(int position, View v, ViewGroup parent)

然後你可以在每一個 list item中調用 setBackgroundColor() / setBackgroundDrawable() / setBackgroundResource()

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved