在我们的Xamarin Android应用中,我们希望启动屏幕从应用属性(或其他存储机制)中加载自定义图像。因此,该图像不可作为APK中的Android资源使用(编译时)。我可以在Activity中使用Window.SetBackgroundDrawable(Resources,Drawable)替换窗口背景,但是只有在加载即将完成时才应用背景。如果我在可绘制的XML中直接(但静态)配置了类似的背景图片,则会快速正确地加载它。
关于如何及时显示图像的任何想法?
可绘制的初始屏幕:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<color android:color="@color/splash_background"/>
</item>
<item>
<bitmap
android:src="@drawable/splash"
android:tileMode="disabled"
android:gravity="center"/>
</item>
</layer-list>
我们的启动主题:
<style name="CompanySplashTheme" parent ="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowBackground">@drawable/splash_screen</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">true</item>
</style>
活动:
using System.Text;
using System.Threading.Tasks;
using Android.App;
using Android.Content;
using Android.Graphics.Drawables;
using Android.Support.V7.App;
namespace Provisior.Mobile.Droid
{
[Activity(Theme = "@style/CompanySplashTheme", MainLauncher = true, NoHistory = true)]
public class SplashActivity : AppCompatActivity
{
protected override void OnResume()
{
base.OnResume();
ReplaceBackground();
new Task(() => StartActivity(new Intent(Application.Context, typeof(MainActivity)))).Start();
}
private void ReplaceBackground()
{
var imageBytes = Encoding.UTF8.GetBytes(App.Current.Properties["splash_background"] as string);
var backgroundBitmap = global::Android.Graphics.BitmapFactory.DecodeByteArray(imageBytes, 0, imageBytes.Length);
var backgroundDrawable = new BitmapDrawable(Resources, backgroundBitmap);
Window.SetBackgroundDrawable(backgroundDrawable);
}
public override void OnBackPressed() { }
}
}
答案 0 :(得分:1)
在活动的ReplaceBackground()
方法中,将onCreate()
设置为将背景更改为启动画面。
编辑:只是意识到它不是java,答案仍然适用