2

带有(箭头?)的选定列表视图项

如上图所示,您会在右侧看到此箭头,该箭头从其他布局指向列表视图中的选定列表项。我不知道这是怎么称呼的,所以我不知道用谷歌搜索什么。

一个人将如何实现这一目标?

4

2 回答 2

3

使用选择器来实现这一点。这样列表视图的 listitemselector 将设置为您制作的自定义选择器。同样在选择器中,您将拥有一个图像作为绿色选择器。

例如:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_focused="true" android:drawable="@drawable/bg_green_with_arrow"></item>
<item android:state_selected="true" android:drawable="@drawable/bg_green_with_arrow"></item>
<item android:state_active="true" android:drawable="@drawable/bg_green_with_arrow"></item>
<item android:state_pressed="true" android:drawable="@drawable/bg_green_with_arrow"></item>
<item android:drawable="@drawable/bg_white_plain"></item>
</selector>
于 2013-10-22T08:48:57.220 回答
-1

看看它是否是你的帮助。它被称为导航抽屉

http://manishkpr.webheavens.com/android-navigation-drawer-example-using-fragments/

于 2013-10-22T08:05:30.507 回答