我正在使用下面的樣式在我的Xamarin Android應用程序中顯示初始屏幕,但圖像始終顯示的大小不正確。我希望它調整大小的正確尺寸,但它總是擴大到適合屏幕。初始屏幕正在調整大小錯誤
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="Theme.Splash" parent="android:Theme">
<item name="android:windowBackground">@drawable/splashscreenimage</item>
<item name="android:windowNoTitle">true</item>
<item name="android:adjustViewBounds">true</item>
<item name="android:scaleType">centerCrop</item>
</style>
</resources>
閃屏活動
[Activity(MainLauncher = true, Theme = "@style/Theme.Splash", NoHistory = true)]
public class SplashScreenActivity : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
// Start our real activity
StartActivity(typeof(LoginActivity));
}
}
'ScaleType'僅適用於'ImageView',但問題與'windowBackground'有關。 – 2017-10-28 15:10:57