选定的Listview项目(箭头?)

时间:2013-10-22 07:54:40

标签: java android android-layout android-listview android-navigation

Selected listview item with (arrow?)

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

如何实现这一目标?

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分:-1)

如果是您的帮助,请查看此信息。它被称为导航抽屉

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