我有以下代码。当我在列表视图上发送数据时,我什么也看不见,因为颜色设置为白色。如何将颜色设置为黑色?它上面没有textColor属性。另外,如何删除每个列表项上的灰色。
<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="match_parent"
android:background="#ffffff"
android:orientation="vertical"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="20dp"
android:layout_weight="1"
android:background="#f8f8f8"
android:orientation="vertical" >
<ListView
android:id="@+id/output_area"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:background="#ffffff"
android:drawSelectorOnTop="false" >
</ListView>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:1)
您需要为列表视图的行创建布局,在这里您可以设置文本的颜色:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/default_listview_row"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#000000"
android:padding="5dp"
/>
然后你就这样使用它:
ArrayAdapter<String> adapter = new ArrayAdapter<String>(activity, R.layout.row_default, strings);
listView.setAdapter(adapter);