New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| | | android:layout_width="match_parent" |
| | | android:layout_height="match_parent" |
| | | android:orientation="vertical"> |
| | | |
| | | <RelativeLayout |
| | | android:layout_width="match_parent" |
| | | android:layout_height="0dp" |
| | | android:layout_weight="279" |
| | | android:layout_marginLeft="80dp" |
| | | android:layout_marginRight="80dp" |
| | | android:gravity="center_vertical" |
| | | android:orientation="horizontal"> |
| | | |
| | | <RelativeLayout |
| | | android:id="@+id/rl_sceenshot" |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:gravity="center"> |
| | | |
| | | <ImageView |
| | | android:id="@+id/icon_screenshot" |
| | | android:layout_width="58dp" |
| | | android:layout_height="58dp" |
| | | android:scaleType="centerInside" |
| | | android:src="@drawable/screenshot" /> |
| | | |
| | | <TextView |
| | | android:id="@+id/tv_screenshot" |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:layout_below="@id/icon_screenshot" |
| | | android:layout_centerHorizontal="true" |
| | | android:text="截图" |
| | | android:textColor="@color/text_color" |
| | | android:textSize="18sp" /> |
| | | |
| | | </RelativeLayout> |
| | | |
| | | <RelativeLayout |
| | | android:id="@+id/rl_unlock" |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:layout_alignParentRight="true" |
| | | android:gravity="center"> |
| | | |
| | | <ImageView |
| | | android:id="@+id/icon_unlock" |
| | | android:layout_width="58dp" |
| | | android:layout_height="58dp" |
| | | android:scaleType="centerInside" |
| | | android:src="@drawable/unlock" /> |
| | | |
| | | <TextView |
| | | android:id="@+id/tv_unlock" |
| | | android:layout_width="wrap_content" |
| | | android:layout_height="wrap_content" |
| | | android:layout_below="@id/icon_unlock" |
| | | android:layout_centerHorizontal="true" |
| | | android:text="开锁" |
| | | android:textColor="@color/text_color" |
| | | android:textSize="18sp" /> |
| | | |
| | | </RelativeLayout> |
| | | </RelativeLayout> |
| | | </LinearLayout> |