SubwayTooter-Android-App/app/src/main/res/layout/lv_column_list.xml

100 lines
3.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<com.woxthebox.draglistview.swipe.ListSwipeItem
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:leftViewId="@+id/item_left"
app:rightViewId="@+id/item_right"
app:swipeViewId="@+id/item_layout">
<TextView
android:id="@+id/item_left"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/item_layout"
android:layout_alignTop="@+id/item_layout"
android:background="#0088ff"
android:gravity="start|center_vertical"
android:padding="16dp"
android:text="@string/app_name"
android:textColor="@android:color/white"
android:textSize="20sp"/>
<TextView
android:id="@+id/item_right"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/item_layout"
android:layout_alignTop="@+id/item_layout"
android:background="#FF0000"
android:gravity="end|center_vertical"
android:padding="16dp"
android:text="@string/delete"
android:textColor="@android:color/white"
android:textSize="20sp"/>
<LinearLayout
android:id="@id/item_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/list_item_selector"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="16dp">
<!-- minHeight の代わりにViewで賄う -->
<View
android:layout_width="0dp"
android:layout_height="48dp"
/>
<ImageView
android:id="@+id/ivDragHandle"
android:layout_width="48dp"
android:layout_height="match_parent"
android:background="#80cccccc"
android:contentDescription="@string/drag_handle"
android:scaleType="center"
android:src="@drawable/ic_knob"
/>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="12dp"
android:layout_weight="1"
android:orientation="vertical"
>
<TextView
android:id="@+id/tvAccess"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:textColor="#888888"
android:textSize="12sp"
/>
<TextView
android:id="@+id/tvName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
<ImageView
android:id="@+id/ivBookmark"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_marginEnd="12dp"
android:layout_marginStart="8dp"
android:contentDescription="@string/last_selection"
android:scaleType="center"
android:src="@drawable/ic_bookmark"
/>
</LinearLayout>
</com.woxthebox.draglistview.swipe.ListSwipeItem>