解释情况:
-i有一个列有多行的列表视图,现在我想要任意行并向左或向右滑动; 无论哪种方式,我都需要在当前行后面显示另一个视图,因为我轻扫(带动作栏的滑动菜单类型,虽然我不认为我可以在我的情况下使用它)
当用户向左滑动时,例如新视图可以有偏移量(或不是),所以它可能会也可能不会覆盖整行,是否有任何建议? 非常感谢
随机代码()
<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>
答案 0 :(得分:1)
答案 1 :(得分:-1)
通过滑动行视图,删除它或其他东西来取决于你或者做什么