gpt4 book ai didi

java - 安卓.view.InflateException : Binary XML file line #34: Error inflating class AutoFitTextureView

转载 作者:行者123 更新时间:2023-11-29 23:46:13 26 4
gpt4 key购买 nike

由于 Inflate 异常,我在某些设备上发生崩溃,我正在尝试对一个名为 AutoFitTextureView 的自定义类进行膨胀,我收到此 Logcat 消息:

android.view.InflateException: Binary XML file line #34: Binary XML file line #34: Error inflating class com.xscoder.pikky.AutoFitTextureView

我正在使用来自 google 的 Camera2 Basic 代码打开自定义相机。

这是我的 square_camera.xml 布局的一部分:

<com.xscoder.pikky.AutoFitTextureView
android:id="@+id/texture"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/sqcTopView"
android:layout_centerHorizontal="true"
android:background="#333"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
</com.xscoder.pikky.AutoFitTextureView>

这是我的AutoFixTextureView 类的代码:

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);
}

public AutoFitTextureView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}



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);
}
}
}


}// ./ end

这就是我所说的:

public class SquareCamera extends AppCompatActivity {

private AutoFitTextureView mTextureView;
...
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.square_camera);

mTextureView = findViewById(R.id.texture);

我真的不知道出了什么问题,因为如果我在装有 Android 6.0 的真实华为 Cam 21 或装有 Android 5.1 的 Quilive 上运行我的应用程序,应用程序根本不会崩溃,但在其他设备上,并且也是 Android 8.0 模拟器,它因该错误而崩溃。

最佳答案

通过简单地编辑我的 square_camera.xml 文件修复了错误,如下所示:

<com.xscoder.pikky.AutoFitTextureView
android:id="@+id/texture"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/sqcTopView"
>
</com.xscoder.pikky.AutoFitTextureView>

似乎有些 Android 设备不处理自定义 TextureView 的附加属性,因此最好在 Java 中以编程方式设置:)

关于java - 安卓.view.InflateException : Binary XML file line #34: Error inflating class AutoFitTextureView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51364874/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com