Android 1x在单个ImageView上透支

时间:2019-04-16 09:35:14

标签: android android-imageview android-xml android-drawable

我不明白为什么会出现透支,而我的SplashActivity的布局仅由<ImageView .../>组成,并且为窗口设置了null背景可绘制。

以下是活动onCreate的代码:

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    window.setBackgroundDrawable(null)
    setContentView(R.layout.activity_splash)
}

还有activity_splash的内容:

<?xml version="1.0" encoding="utf-8"?>
<ImageView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@null"
    android:src="@drawable/splash"
    android:scaleType="centerCrop"
    tools:context=".feature.splash.SplashActivity"
    tools:ignore="ContentDescription"/>

不过,如果透支调试模式处于打开状态-图像显然是蓝色的。为什么?我真的不明白透支的来源。

2 个答案:

答案 0 :(得分:0)

像这样设置imageview backroung null:-

 android:background="null"

从imageview backround标记中删除@

答案 1 :(得分:0)

出乎意料的是,解决方案是将window.setBackgroundDrawable(null)放在setContentView(...)之后。之后透支消失了。