You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
44 lines
1.3 KiB
<?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:paddingLeft="16dp"
|
|
android:paddingRight="16dp"
|
|
android:orientation="vertical"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:layout_width="400dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="Meet you"
|
|
android:textSize ="80sp"
|
|
android:layout_marginTop="100dp"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/register"
|
|
android:layout_width="100dp"
|
|
android:layout_height="70dp"
|
|
android:text="注册"
|
|
android:textSize="25sp"
|
|
android:layout_margin="10dp"
|
|
></Button>
|
|
|
|
<Button
|
|
android:id="@+id/login"
|
|
android:layout_width="100dp"
|
|
android:layout_height="70dp"
|
|
android:text="登陆"
|
|
android:textSize="25sp"
|
|
android:layout_margin="10dp"></Button>
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|