如何使用Android自定义视图中的属性设置调整膨胀布局的大小?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用Android自定义视图中的属性设置调整膨胀布局的大小?相关的知识,希望对你有一定的参考价值。
我通过从布局膨胀创建自定义视图,如下所示:
custom view.Java
public class CustomView extends FrameLayout {
public CustomView(@NonNull Context context) {
this(context, null);
}
public CustomView(@NonNull Context context, @Nullable AttributeSet attrs) {
this(context, attrs, 0);
}
public CustomView(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
LayoutInflater.from(context).inflate(R.layout.custom_view, this, true);
}
}
custom_view.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
...
</FrameLayout>
我的问题是,当我在布局中使用这个自定义视图时,有一些layout_width和layout_height值,内部的内容不会使用新值调整大小。
答案
当你的CustomView
扩展FrameLayout
和custom_view.xml
的根也是FrameLayout
,你可以使用merge。
只需将custom_view.xml
的根目录更改为<merge></merge>
即可。
以上是关于如何使用Android自定义视图中的属性设置调整膨胀布局的大小?的主要内容,如果未能解决你的问题,请参考以下文章
如何解决:使用自定义视图实现双向数据绑定时“找不到属性'android:text'的getter”?