我正在嘗試在中心創建一個帶有徽標的閃屏。從Photoshop我出口的圖像生成480x800測試。Android:圖像顯示比預期的方式更大
我的設計:
Android應用
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>
請閱讀有關[支持多屏幕](http://developer.android.com/guide/practices/screens_support.html)的文檔。你會發現這是關於這個話題的最全面的指南。 – wsanville
您在哪個文件夾中放置了您的徽標? – dmon
@dmon我把它放在可繪製的文件夾中 –