gpt4 book ai didi

android - 加载 View 的布局参数被忽略

转载 作者:IT王子 更新时间:2023-10-29 00:04:53 25 4
gpt4 key购买 nike

我正在尝试编写自己的自定义 View,但 LayoutParams 有问题。

思路是扩展ViewGroup(LinearLayout)

public class MyView extends LinearLayout{
public MyView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyView(Context context) {
super(context);
}
public void putContent(){
setOrientation(HORIZONTAL);
LayoutInflater inflater = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
for (int i = 0; i < 5; i++){
View view = inflater.inflate(R.layout.item, null);
TextView tv = (TextView)view.findViewById(R.id.item_text);
tv.setText("Item " + i);
addView(view);
}
}
}

如您所见,putContent 方法会膨胀项目并添加到我的 View 中。这是一个项目布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF">
<TextView android:text="TextView"
android:id="@+id/item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"/>
</LinearLayout>

和主屏布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android_layout_weight="1"
android:text="@string/hello"
/>
<my.test.MyView
android:id="@+id/my_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android_layout_weight="1"
/>
</LinearLayout>

以及 Activity 代码

public class Start extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
MyView myView = (MyView)findViewById(R.id.my_view);
myView.putContent();
}
}

这是我得到的截图

enter image description here

所以问题是:项目根元素的属性被忽略了

android:layout_width="match_parent"
android:layout_height="match_parent"

但结果我想得到这样的结果(当我用这一行替换 addView(view); 时得到这个结果)

addView(view, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1F));

enter image description here

所以问题是:如何在没有硬编码的 LayoutParams 的情况下实现这个结果?感谢您的帮助!

更新

我还在 Debug模式下查看 view 变量字段 - mLayoutParamsnull,当我添加充气 view 使用 addView(view, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1F)); 进入父级。 enter image description here

但刚刚加载的 View 子的mLayoutParams不为空。为什么 View 膨胀时xml布局中只有根元素的LayoutParams会被忽略?

最佳答案

使用下面的语句来膨胀:

View view = inflater.inflate( R.layout.item /* resource id */,
MyView.this /* parent */,
false /*attachToRoot*/);

关于android - 加载 View 的布局参数被忽略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5288435/

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