我正在尝试构建一个中间带有徽标的启动画面。我正在从 Photoshop 导出 480x800 的图像构建以进行测试。
我的设计:
安卓应用
XML 文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/dark_bg"
android:gravity="center"
android:orientation="vertical"
android:textAlignment="center" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:src="@drawable/logo" />
</RelativeLayout>