无法将PNG扩展到Android应用程序SplashScreen

时间:2017-04-11 23:08:10

标签: android android-layout

我正在我的应用程序上实现加载屏幕,我遵循了本教程: https://www.bignerdranch.com/blog/splash-screens-the-right-way/

非常酷且简单,但是当显示加载屏幕时,我使用的png图像非常放大,因为我没有缩放它。我的问题是,我该怎么做? 这是可绘制的xml:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item
        android:drawable="@color/white"/>

    <item>
        <bitmap
            android:src="@drawable/loading"
            />
    </item>

</layer-list>

1 个答案:

答案 0 :(得分:0)

试试这个:

<item android:width="100dp"
      android:height="100dp">
      <bitmap
          android:src="@drawable/loading"/>
</item>