我在动态添加linearlayout时遇到了一些问题。它添加在屏幕顶部,覆盖其他线性布局。
这里是XML,代码和结果。
XML:
<TextView
android:id="@+id/top_km"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:background="#888"
android:gravity="top"
android:textColor="#fff"
android:textSize="30dip"
android:layout_centerHorizontal="true"/>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/top_km"
android:id="@id/textLayout">
</RelativeLayout>
代码:
myLayout = (RelativeLayout) page.findViewById(R.id.textLayout);
LinearLayout linLayout = new LinearLayout(this);
linLayout.setOrientation(LinearLayout.VERTICAL);
LayoutParams params = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
myLayout.addView(linLayout);
LinearLayout hozLayout = new LinearLayout(this);
hozLayout.setOrientation(LinearLayout.HORIZONTAL);
LayoutParams params = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
myLayout.addView(hozLayout);
结果: enter link description here
由于
答案 0 :(得分:1)
这是因为您使用 RealativeLayout 进行正确的添加使用 1.St LayoutParams的RelativeLayout.LayoutParams 2.在LayoutParams中,使用下面的字段
示例:
RelativeLayout rl=new RelativeLayout(this);
LinearLayout ll1=new LinearLayout(this);
TextView tx1=new TextView(this);
tx1.setText("Test1");
ll1.addView(tx1);
rl.addView(ll1);
LinearLayout ll2=new LinearLayout(this);
TextView tx2=new TextView(this);
tx2.setText("Test1");
ll2.addView(tx1);
rl.addView(ll2);
RelativeLayout.LayoutParams lp2=(LayoutParams) ll2.getLayoutParams();
然后使用 lp2.addRule
这里有一些帮助:
参数 动词由RelativeLayout定义的动词之一,例如ALIGN_WITH_PARENT_LEFT。 anchor用作锚点的另一个视图的id,或者布尔值(表示为TRUE)表示true,0表示false表示。对于不引用其他兄弟的动词(例如,ALIGN_WITH_PARENT_BOTTOM),只需使用-1。
答案 1 :(得分:1)
请勿使用RelativeLayout
作为持有人。请改用LinearLayout
代替orientation="vertical"
。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/top_km"
android:orientation="vertical"
android:id="@id/textLayout" />
然后在代码中
myLayout = (LinearLayout) page.findViewById(R.id.textLayout);
接着是
// rest of your code
答案 2 :(得分:0)
也许您可以更轻松地将其添加到包含android:visibility="GONE"
的XML文件中,然后在代码中显示它(View.VISIBLE
)或隐藏它(View.GONE
)。