我正在尝试编写自己的自定义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
,当我将view
充值addView(view, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT, 1F));
添加到父mLayoutParams
时1}}。
但刚刚加载的视图的子项的{{1}}不为null。 为什么在视图膨胀时忽略xml布局中只有根元素的LayoutParams?
答案 0 :(得分:122)
使用以下语句来膨胀:
View view = inflater.inflate( R.layout.item /* resource id */,
MyView.this /* parent */,
false /*attachToRoot*/);
答案 1 :(得分:0)
好的,如果我理解正确,你可以在ll
中找到上面提到的XML,并且你正在添加一些东西(R.layout.item_layout
)。
我看到的问题是:
ll
)有match_parent
,但我们不知道它是否有父级。所以行为很难猜测。R.layout.item_layout
不是您显示的xml)。所以它可能是预期的行为,甚至是未定义的(因此预期会出现意外)。可能有太多的代码要发布在这里,我不知道,但是你可能最好使用hierarchy viewer查看树中的视图有什么参数,所以你实际上可以看看发生了什么。
另外,请注意not all Views support margin。
即使视图可以定义一个 填充,它不提供任何 支持利润。但是,观点 团体提供这样的支持。参考 到ViewGroup和 ViewGroup.MarginLayoutParams for 进一步的信息。
答案 2 :(得分:0)
在Android中,“layout_”参数指的是当前View在其父布局中的行为方式。在这种情况下,它的父级是ll,但是我们看不出它是什么。
对于LinearLayout内部TextView的布局,由于LinearLayout是垂直的,所以它的所有子节点都会自动将其layout_height覆盖为“wrap_content”,以便它们可以正确布局。
现在问题是,你实际看到了什么,你想看到什么?