我开发了一个带有 DrawerLayout 的应用程序。
我的问题是ListView
,当我点击一个项目时,他textColor
变成白色,但背景仍然透明并且ListView
背景是白色的。所以选定的文本是不可读的。
我搜索了解决方案,并尝试了许多解决方案,但没有一个有效。我只想更改背景颜色,#FFCCCCCC
例如在选择项目时。
你有什么主意吗 ?
抽屉布局
<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFDDDDDD"/>
<!-- The navigation drawer -->
<ListView android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="#FFF"/>
</android.support.v4.widget.DrawerLayout>
导航列表
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ImageView
android:id="@+id/image"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_margin="15dp" />
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18sp"
android:layout_gravity="center_vertical"/>
</LinearLayout>
如果您有任何解决方案...谢谢:)
编辑 :