22 lines
714 B
XML
22 lines
714 B
XML
|
<?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="wrap_content"
|
||
|
android:padding="16dp"
|
||
|
android:orientation="vertical"
|
||
|
android:gravity="center_vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/app_name"
|
||
|
android:textSize="25dp"/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/subTitleView"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="你好,世界!"/>
|
||
|
|
||
|
</LinearLayout>
|