我正在尝试向列表视图中的每个列表项添加操作栏,该列表视图在单击时将显示多个选项。我已经尝试使用谷歌搜索,但无法找到任何解决方案。目前,我的列表视图是相对布局的一部分:
<RelativeLayout 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.support.v7.widget.CardView
android:id="@+id/playback_error"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:animateLayoutChanges="true"
android:visibility="gone">
<TextView
android:id="@+id/error_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingRight="@dimen/error_horizontal_padding"
android:paddingLeft="@dimen/error_horizontal_padding"
android:paddingTop="@dimen/error_vertical_padding"
android:paddingBottom="@dimen/error_vertical_padding"
android:background="@color/error_message_background"
android:gravity="center"
tools:text="Connectivity error!"
android:textColor="@android:color/white"
android:textStyle="bold"/>
</android.support.v7.widget.CardView>
<ListView
android:id="@+id/list_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_below="@id/playback_error">
</ListView>
</RelativeLayout>
如何开始?如果我使用自定义列表视图,操作栏将如何实现?
答案 0 :(得分:0)
我认为使用PopUpMenu会更适合我的情况。