29 lines
919 B
Plaintext
29 lines
919 B
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical"
|
||
|
|
||
|
tools:context=".AD.toutiao.SplashActivity">
|
||
|
|
||
|
<FrameLayout
|
||
|
android:layout_weight="1"
|
||
|
android:id="@+id/splash_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:background="#000000"
|
||
|
>
|
||
|
</FrameLayout>
|
||
|
<TextView android:id="@+id/textTile"
|
||
|
android:layout_weight="0"
|
||
|
android:layout_gravity="center"
|
||
|
android:gravity="center"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="50dp"
|
||
|
android:textSize="20sp"
|
||
|
android:textStyle="bold"
|
||
|
android:text="" />
|
||
|
</LinearLayout>
|