не изменяется стиль listView
В примере создается такой адаптер для ListView:
userAdapter = new SimpleCursorAdapter(this, android.R.layout.two_line_list_item,
userCursor, headers, new int[]{android.R.id.text1, android.R.id.text2}, 0);
userList.setAdapter(userAdapter);
Пытаюсь изменить стиль текста в R.layout.two_line_list_item, путем добавления textColor,background, но элементы ListView по прежнему отображаются дефолтные. Подскажите, что не так?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView android:id="@android:id/text1"
android:textSize="25sp"
android:textStyle="bold"
android:textColor="#ffffff"
android:background="#11000000"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView android:id="@android:id/text2"
android:textSize="25sp"
android:textColor="#ffffff"
android:background="#11000000"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>