【发布时间】:2011-07-14 09:23:46
【问题描述】:
我正在尝试编写自己的自定义 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 方法会膨胀项目并添加到我的视图中。这是一个项目布局
<?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>
以及活动代码
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();
}
}
这是我得到的截图
所以问题是:项目根元素的属性被忽略了
android:layout_width="match_parent"
android:layout_height="match_parent"
但结果我想得到这样的结果(当我用这一行替换 addView(view); 时得到这个结果)
addView(view, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1F));
所以问题是:如何在没有硬编码的 LayoutParams 的情况下实现这个结果? 感谢您的帮助!
更新
我还在调试模式下查看了 view 变量字段 - mLayoutParams 是 null,当我使用 addView(view, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1F)); 将膨胀的 view 添加到父级时,它变得不为空。
但刚刚加载视图的子级mLayoutParams 不为空。
为什么视图膨胀时xml布局中只有根元素的LayoutParams会被忽略?
【问题讨论】:
-
如果没有您的实际代码,我很难评论您的代码......
-
不太清楚。我假设上面是你正在膨胀的 xml?但是代码中的
ll是什么?或者你是在向 xml 中添加一些东西,如果是,你要添加什么? -
ll在代码中动态创建,我膨胀给定的 xml 并将其放入ll -
当我使用
v将新的LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1F);传递给addView 时,它工作正常! (在这种情况下,边距被忽略)
标签: android layout layoutparams