| 12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout 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="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".ui.launcher.LauncherActivity">
- <ImageView
- android:id="@+id/iv_launcher_bg"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:scaleType="fitXY"
- android:src="@mipmap/bg_launcher" />
- <ImageView
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="110dp"
- android:src="@mipmap/iv_evvm_lcon"
- android:layout_width="166dp"
- android:layout_height="148dp" />
- <TextView
- android:textSize="13.44sp"
- android:layout_gravity="bottom|center_horizontal"
- android:layout_marginBottom="48dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="版本号 V1.0.0"/>
- </FrameLayout>
|