Android Splash Screen Nine-Patch未使用正确的分辨率

时间:2016-04-18 22:36:55

标签: android android-layout splash-screen nine-patch

我使用此工具创建了一个九补丁启动画面:

http://romannurik.github.io/AndroidAssetStudio/nine-patches.html

我把每个" splash.9.png"在适当的res / drawable文件夹中(drawable-mdpi,drawable-hdpi,drawable-xxhdpi)。这是我的style.xml:

<?xml version="1.0" encoding="utf-8"?>

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:background="#ffff">
    <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:scaleType="fitXY" android:src="@drawable/splash" />
</FrameLayout>

然而,在所有设备上都使用了mdpi启动画面,在放大时看起来非常模糊。有什么建议吗?

0 个答案:

没有答案