我正在使用一个简单的适配器来显示我的代码。不幸的是,我需要更改顶部的 textView 颜色。
这是我的代码片段:
// Keys used in Hashmap
String[] from = { "txt1", "txt2" };
// Ids of views in listview_layout
int[] ids = { android.R.id.text1, android.R.id.text2 };
SimpleAdapter adapter = new SimpleAdapter(this, aList,
android.R.layout.simple_list_item_2, from, ids);
setListAdapter(adapter);
我尝试制作自己的 simple_list_item_2,但由于某种原因,它不允许我更改 xml 中 textView 的颜色。关于如何做到这一点的任何想法?
我最后的想法是:
findViewById(android.R.id.text1).setTextColor(#000)
但我不知道把它放在哪里,而且我的十六进制代码不起作用。