Android Nougat: TextureView не поддерживает отображение фона для рисования
Я использовал TextureView в моем приложении для Android, и он работал нормально. Совсем недавно я тестировал свой код на устройстве Android с Android API 25 (7.1.2). Тот же код сейчас не работает и выдает ошибку, java.lang.UnsupportedOperationException: TextureView doesn't support displaying a background drawable
,
я знаю это void setBackgroundDrawable (Drawable background)
долгое время считалось устаревшим, а теперь должно быть удалено. Но я даже не устанавливаю это сам.
Я использую последние buildTools и SDK. Итак, мне интересно, почему внутренняя реализация textureView не была обновлена.
Вот соответствующая трассировка стека:
java.lang.UnsupportedOperationException: TextureView doesn't support displaying a background drawable
at android.view.TextureView.setBackgroundDrawable(TextureView.java:315)
at android.view.View.setBackground(View.java:18124)
at android.view.View.<init>(View.java:4573)
at android.view.View.<init>(View.java:4082)
at android.view.TextureView.<init>(TextureView.java:159)
at com.abdulwasaetariq.xyz.ui.customView.AutoFitTextureView.<init>(AutoFitTextureView.java:24)
at com.abdulwasaetariq.xyz.ui.customView.AutoFitTextureView.<init>(AutoFitTextureView.java:20)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
[...]
at java.lang.Thread.run(Thread.java:745)
Вот как я использую свой (еще не настроенный) пользовательский TextureView:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
tools:context="com.abdulwasaetariq.xyz.ui.activity.MainActivity">
<com.abdulwasaetariq.xyz.ui.customView.AutoFitTextureView
android:id="@+id/texture"
android:layout_width="1080px"
android:layout_height="1080px"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true" />
</RelativeLayout>
Вот мой соответствующий AutoFitTextureView.java: enter code here
public class AutoFitTextureView extends TextureView {
private int mRatioWidth = 0;
private int mRatioHeight = 0;
public AutoFitTextureView(Context context) {
this(context, null);
}
public AutoFitTextureView(Context context, AttributeSet attrs) {
this(context, attrs, 0); //(LINE#20)
}
public AutoFitTextureView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle); //(LINE#24)
}
public void setAspectRatio(int width, int height) {
if (width < 0 || height < 0) {
throw new IllegalArgumentException("Size cannot be negative.");
}
mRatioWidth = width;
mRatioHeight = height;
requestLayout();
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int width = MeasureSpec.getSize(widthMeasureSpec);
int height = MeasureSpec.getSize(heightMeasureSpec);
if (0 == mRatioWidth || 0 == mRatioHeight) {
setMeasuredDimension(width, height);
} else {
if (width < height * mRatioWidth / mRatioHeight) {
setMeasuredDimension(width, width * mRatioHeight / mRatioWidth);
} else {
setMeasuredDimension(height * mRatioWidth / mRatioHeight, height);
}
}
}}
Итак, как вы можете видеть, исключения происходят на super()
методы, что означает, что мой пользовательский TextureView не несет ответственности за это исключение. Это внутренний звонок.
Вот мой конфиг gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
applicationId "com.abdulwasaetariq.xyz"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha8'
compile 'com.github.hotchemi:permissionsdispatcher:2.3.2'
annotationProcessor 'com.github.hotchemi:permissionsdispatcher-processor:2.3.2'
}
Есть идеи, почему это может происходить? Какие-нибудь заметки о выпуске Android API 25, где говорится об этом изменении?
5 ответов
Если вы посмотрите на источник для представления текстуры для API 24, вы увидите следующее:
/**
* Subclasses of TextureView cannot do their own rendering
* with the {@link Canvas} object.
*
* @param canvas The Canvas to which the View is rendered.
*/
@Override
public final void draw(Canvas canvas) {
// NOTE: Maintain this carefully (see View#draw)
mPrivateFlags = (mPrivateFlags & ~PFLAG_DIRTY_MASK) | PFLAG_DRAWN;
/* Simplify drawing to guarantee the layer is the only thing drawn - so e.g. no background,
scrolling, or fading edges. This guarantees all drawing is in the layer, so drawing
properties (alpha, layer paint) affect all of the content of a TextureView. */
if (canvas.isHardwareAccelerated()) {
DisplayListCanvas displayListCanvas = (DisplayListCanvas) canvas;
HardwareLayer layer = getHardwareLayer();
if (layer != null) {
applyUpdate();
applyTransformMatrix();
mLayer.setLayerPaint(mLayerPaint); // ensure layer paint is up to date
displayListCanvas.drawHardwareLayer(layer);
}
}
}
Комментарий в теле draw()
дает обоснование изменения, которое вы видели. Это единственная документация, которую я нашел. Сравните это с TextureView
из API 23:
/**
* Subclasses of TextureView cannot do their own rendering
* with the {@link Canvas} object.
*
* @param canvas The Canvas to which the View is rendered.
*/
@Override
public final void draw(Canvas canvas) {
// NOTE: Maintain this carefully (see View.java)
mPrivateFlags = (mPrivateFlags & ~PFLAG_DIRTY_MASK) | PFLAG_DRAWN;
applyUpdate();
applyTransformMatrix();
}
В API 24 также введены переопределения для методов "установки фона", которые не переопределяются в API 23. Установка фона теперь явно не рекомендуется и просто не допускается. Если вы видите исключение неподдерживаемой операции и явно не устанавливаете фон, возможно, он пробирается через ваши стили. Попробуйте установить android:background="@null"
в вашем XML, чтобы фон был нулевым, чтобы обойти ошибку. Вы также можете добавить следующий код в свое пользовательское представление, чтобы сохранить функциональность в тех версиях, которые поддерживают настройку фона:
@Override
public void setBackgroundDrawable(Drawable background) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.N && background != null) {
setBackgroundDrawable(background);
}
}
Неясно, как заменить функциональность, которую вы потеряли, для API 24+ или вам она вообще нужна, но вы просто хотите иметь в своем арсенале фоновый инструмент.
Ниже приведены фрагменты из исходного кода для View
для Android Nougat:
/**
* Allow setForeground/setBackground to be called (and ignored) on a textureview,
* without throwing
*/
static boolean sTextureViewIgnoresDrawableSetters = false;
В конструкторе с одним аргументом (вызывается из всех остальных):
// Prior to N, TextureView would silently ignore calls to setBackground/setForeground.
// On N+, we throw, but that breaks compatibility with apps that use these methods.
sTextureViewIgnoresDrawableSetters = targetSdkVersion <= M;
в View
конструктор, в который выдается ваше исключение:
...
switch (attr) {
case com.android.internal.R.styleable.View_background:
background = a.getDrawable(attr);
break;
...
if (background != null) {
setBackground(background); // <--- this is the problematic line, apparently "background" is not null here
}
Фактическое определение setBackground
:
/**
* Set the background to a given Drawable, or remove the background. If the
* background has padding, this View's padding is set to the background's
* padding. However, when a background is removed, this View's padding isn't
* touched. If setting the padding is desired, please use
* {@link #setPadding(int, int, int, int)}.
*
* @param background The Drawable to use as the background, or null to remove the
* background
*/
public void setBackground(Drawable background) {
//noinspection deprecation
setBackgroundDrawable(background);
}
Тогда переопределение setBackgroundDrawable
в TextureView
:
@Override
public void setBackgroundDrawable(Drawable background) {
if (background != null && !sTextureViewIgnoresDrawableSetters) {
throw new UnsupportedOperationException(
"TextureView doesn't support displaying a background drawable");
}
}
Итак, что вы можете собрать из всего, что есть:
1) У вас есть целевой SDK N (Nougat) - это очевидно из вашего файла сборки;
2) Конструктор из View
определяет ненулевой фон (я не могу объяснить эту часть в данный момент).
Это все, что нужно для того, чтобы это стало актуальной проблемой. Я не вижу, что вам удалось определить Drawable в вашем XML, поэтому переопределение setBackground
или же setBackgroundDrawable
кажется, наиболее разумная возможность решить проблему для меня. Может быть другой обходной путь (или, может быть, "предложенное использование" будет лучшей терминологией), с помощью которого вы сможете заставить background
переменная в конструкторе, чтобы остаться нулевым.
Отметим, что не только TextureView: я обнаружил, что GridLayout также не поддерживает отображение фона, который можно рисовать с API 24.
Я старался:
A) gridLayout.setBackgroundResource(R.drawable.board_960x960px_border_in_bg);
B)Resources res = getResources();
Drawable drawable = res.getDrawable(R.drawable.board_960x960px_border_in_bg);
gridLayout.setBackground(drawable);
Кажется, что ни один из вышеперечисленных не работает над API 23.
Однако фон TableLayout не исчезнет даже при API 24+, поэтому я переписал весь свой соответствующий код с GridLayout на TableLayout, и теперь все в порядке.
установите фон как null в самом файле xml для вашего TextureView.
например , андроид: фон = "@null"
Работает на меня.
Моя проблема решена, когда я изменил свой targetSdkVersion на 23.