53 lines
2.1 KiB
XML
53 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<com.daimajia.swipe.SwipeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent" android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:tag="Bottom2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent">
|
|
<ImageView
|
|
android:id="@+id/magnifier"
|
|
android:src="@drawable/magnifier"
|
|
android:layout_width="70dp"
|
|
android:background="#f7e79c"
|
|
android:paddingLeft="25dp"
|
|
android:paddingRight="25dp"
|
|
android:layout_height="match_parent" />
|
|
<ImageView
|
|
android:id="@+id/star"
|
|
android:src="@drawable/star"
|
|
android:layout_width="70dp"
|
|
android:background="#4cd964"
|
|
android:paddingLeft="25dp"
|
|
android:paddingRight="25dp"
|
|
android:layout_height="match_parent" />
|
|
<ImageView
|
|
android:id="@+id/trash"
|
|
android:src="@drawable/trash"
|
|
android:layout_width="70dp"
|
|
android:background="@drawable/red"
|
|
android:paddingLeft="25dp"
|
|
android:paddingRight="25dp"
|
|
android:layout_height="match_parent" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:padding="10dp"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/white"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<TextView
|
|
android:tag="Hover"
|
|
android:text="理解(りかい)されるということは、一種(いっしゅ)の贅沢(ぜいたく)である。"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
<Button
|
|
android:visibility="invisible"
|
|
android:id="@+id/click"
|
|
android:text="Click"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
</com.daimajia.swipe.SwipeLayout> |