70 lines
2.2 KiB
XML
70 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="300dp"
|
|
android:layout_height="450dp"
|
|
android:layout_gravity="center"
|
|
app:cardCornerRadius="20dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="150dp"
|
|
android:layout_margin="20dp"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/title_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="@string/app_name"
|
|
android:textSize="17sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/choose_first"
|
|
android:layout_width="150dp"
|
|
android:layout_height="50dp"
|
|
android:enabled="false"
|
|
android:text="测试"
|
|
android:textSize="13sp"
|
|
android:visibility="gone">
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
android:id="@+id/choose_second"
|
|
android:layout_width="150dp"
|
|
android:layout_height="50dp"
|
|
android:layout_marginTop="20dp"
|
|
android:enabled="false"
|
|
android:text="测试"
|
|
android:textSize="13sp"
|
|
android:visibility="gone">
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
android:id="@+id/choose_third"
|
|
android:layout_width="150dp"
|
|
android:layout_height="50dp"
|
|
android:layout_marginTop="20dp"
|
|
android:enabled="false"
|
|
android:text="测试"
|
|
android:textSize="13sp"
|
|
android:visibility="gone">
|
|
|
|
</Button>
|
|
|
|
</LinearLayout>
|
|
</android.support.v7.widget.CardView> |