嗨我用每个按钮点击的视图给我的布局充气。但是在添加3个视图后,视图离开了屏幕而没有进入下一行。 我希望我的视图根据屏幕大小来到下一行
下面是我的代码:
LayoutInflater inflater = getLayoutInflater();
notes_container = (LinearLayout) findViewById(R.id.notes_container);
final View view = inflater.inflate(R.layout.view_note, null);
if (notes_container.getChildCount() == 0) {
notes_container.addView(view);
} else if (notes_container.getChildCount() < 100) {
notes_container.addView(view, notes_container.indexOfChild(view));
}
//布局
<LinearLayout
android:id="@+id/notes_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="0dp"
android:layout_marginRight="60dp"
android:orientation="horizontal" >
</LinearLayout>
提前致谢。
答案 0 :(得分:0)
看起来动态增加&#39;身高&#39;正在给你带来麻烦。
尝试使用android:layout_height="match_parent"
,如果这不会影响您的设计