39

我正在尝试编写自己的自定义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调试模式下查看变量字段 -当我将 inflated 添加到 parent withmLayoutParamsnull,它变得不为空。 viewaddView(view, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1F));在此处输入图像描述

但是mLayoutParams刚刚加载的视图的孩子不为空。为什么视图膨胀时xml布局中仅根元素的LayoutParams被忽略?

4

3 回答 3

125

使用以下语句进行膨胀:

View view = inflater.inflate( R.layout.item /* resource id */,
                                         MyView.this /* parent */,
                                         false /*attachToRoot*/);
于 2011-03-20T04:00:34.343 回答
0

在 Android 中,“layout_”参数指的是当前视图在其父布局中的行为方式。在这种情况下,它的父级是 ll,但我们看不到它是什么。

至于LinearLayout中TextView的布局,由于LinearLayout是垂直的,它的所有子元素的layout_height会自动被“wrap_content”覆盖,这样它们就可以正确地排列在另一个之下。

所以现在的问题是,你实际看到了什么,你想看到什么?

于 2011-03-13T09:37:42.680 回答
0

好的,如果我理解正确,您有上面提到的 XML ll,并且您正在向R.layout.item_layout其中添加一些东西 ()。

我看到的问题是:

  • 您的基本布局(给定的 xml,加载到ll)有match_parent,但我们不知道它是否有父级。所以这种行为很难猜测。
  • 您没有指定要添加的项目的布局参数是什么(仍然假设R.layout.item_layout不是您显示的 xml)。所以它可能是预期的行为,甚至是未定义的(所以预期它是意外的)。

我不知道这里可能有太多代码要发布,但是你最好使用层次结构查看器来检查树中的视图有哪些参数,这样你就可以实际看到发生了什么。

另外,请注意并非所有视图都支持 margin

尽管视图可以定义填充,但它不提供对边距的任何支持。但是,视图组提供了这样的支持。有关详细信息,请参阅 ViewGroup 和 ViewGroup.MarginLayoutParams。

于 2011-03-13T09:31:11.067 回答