拖動(dòng)手柄
在設(shè)計(jì)一個(gè)支持"拖放"的列表時(shí), 通常提供一個(gè)在觸摸時(shí)初始化拖拽的"拖動(dòng)手柄". 因其可發(fā)現(xiàn)性和可用性而被Material Guidelines所推薦, 尤其是列表處于"可編輯模式"時(shí).
首先更新item的布局(item_main.xml):
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/item" android:layout_width="match_parent" android:layout_height="?listPreferredItemHeight" android:clickable="true" android:focusable="true" android:foreground="?selectableItemBackground"> <TextView android:id="@+id/text" android:layout_width="wrap_content" &nb