说明情况:
-我有一个充满多行的列表视图,现在我想取任何行并向左或向右滑动;无论哪种方式,我都需要在滑动时在当前行后面显示另一个视图(一种带有操作栏的滑动菜单,尽管我认为我不能在我的情况下使用它)
例如,当用户向左滑动时,新视图可以有一个偏移量,(或没有),所以它可能会或可能不会覆盖整行,有什么建议吗?多谢
随机码()
<ListView
android:id="@+id/lvWatchlists"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/relativeLayout1"
android:layout_below="@+id/header_l" >
</ListView>
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#004c98" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/donnees" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/imageView1"
android:text="@string/differe"
android:textColor="@color/title_selected"
android:textSize="@dimen/footer_text" />
<TextView
android:id="@+id/maj2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:text="00/00/00 à 00:00:00"
android:textColor="@color/title_selected"
android:textSize="@dimen/footer_text" />
<TextView
android:id="@+id/maj1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/maj2"
android:text="@string/maj_le"
android:textColor="@color/title_selected"
android:textSize="@dimen/footer_text" />
</RelativeLayout>