简体   繁体   中英

how to set text color in array adapter in android

in my app i have created a list view and added some text in the list. In my coding part the text are been added as an array adapter to have a check box. In the layout i have given a white color for the list view because of this the text appear to be very dull. How to set the text color to be as black.

i have placed the list view in layout file and placed the values for text view in coding. the following is the part of my coding

names = new String[] { "Sequenced","Random" };
list1 = (ListView) findViewById(R.id.cardlist);
list1.setAdapter(new ArrayAdapter<String>(this,
                android.R.layout.simple_list_item_checked,names));

                list1.setChoiceMode(ListView.CHOICE_MODE_SINGLE);

                list1.setItemChecked(0,true);

please help me......

更改simple_list_item_checked布局中的文本颜色

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM