当我从xml中膨胀时,为什么mLayoutParams为空?

时间:2011-12-21 06:36:21

标签: android android-layout android-widget

这是用于膨胀视图的代码:

    LayoutInflater inflater = LayoutInflater.from(this);
    View view  = inflater.inflate(R.layout.test, null);

我的test.xml

<?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="50px">
    <Button android:text="Button" android:id="@+id/button1"
        android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</LinearLayout>

我在此行下面设置了断点,这会使test.xml膨胀,并发现视图中的mLayoutParams实例为空。我想如果在第二个膨胀参数中指定父视图,则不会发生这种情况 但它仍然感觉很奇怪:如果mLayoutParams为空,那么我为什么要在LinearLayout元素中设置layout_widthlayout_height属性。

2 个答案:

答案 0 :(得分:2)

使用此代码

LayoutInflater inflater =(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

LayoutInflater inflater =(LayoutInflater)getLayoutInflater();

在此之后,我认为你的问题将得到解决。

答案 1 :(得分:0)

使用以下方式创建。

LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);