我正在开发一个Android应用程序,我想在用户滑动列表的特定项目时显示一个按钮。
这是我的xaml,其中有一个按钮和其他一些项目。我在列表视图中使用此xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#f1eff0">
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:visibility="visible" android:id="@+id/tb1">
<TableRow>
<TextView android:id="@+id/createdBy" android:typeface="normal"
android:singleLine="true" android:textSize="14sp" android:textStyle="bold"
android:layout_width="wrap_content" android:textColor="#000000"
android:layout_height="wrap_content" />
</TableRow>
<TableRow>
<TextView android:id="@+id/postText" android:typeface="normal"
android:singleLine="true" android:textSize="14sp" android:textStyle="normal"
android:layout_width="wrap_content" android:textColor="#000000"
android:layout_height="wrap_content" />
<Button android:id="@+id/btnDelete" android:textColor="#ffffff" android:visible="Gone"
android:background="@color/hover_button" android:text="Delete"
android:textSize="14sp" android:textStyle="normal" android:typeface="normal"
android:layout_marginLeft="320dp" />
</TableRow>
<TableRow>
<TextView android:id="@+id/postDate" android:typeface="normal"
android:singleLine="true" android:textSize="14sp" android:textStyle="normal"
android:layout_width="wrap_content" android:textColor="#000000"
android:layout_height="wrap_content" />
</TableRow>
</TableLayout>
</RelativeLayout>
我已经在google上搜索了但是无法理解我为android做的新例子请帮助我。
答案 0 :(得分:2)
以下链接将帮助您在列表视图中实现滑动删除操作。
答案 1 :(得分:0)
我建议你实现47Degree Swipe List View(Works ultimate)
获取有关在此处实施滑动列表视图的更多信息,
Slide ListView Item on Android like iPhone Mail app
Need help to implement 47degree Android-SwipeListView
接受&amp;如果你觉得它们有用,可以向上投票。