如何以编程方式在RelativeLayout中部署视图?我试图以编程方式(而不是通过XML声明)实现以下目标:<RelativeLayout...>
<TextView ... android:id="@+id/label1" />
<TextView ... android:id="@+id/label2"
android:layout_below: "@id/label1" /></RelativeLayout>换句话说,我如何使第二个TextView出现在第一个代码下面,但我想在代码中这样做:RelativeLayout layout = new RelativeLayout(this);TextView label1 = new TextView(this);TextView label2 = new TextView(this);...
layout.addView(label1);layout.addView(label2);setContentView(layout);最新情况:谢谢,TreeUK。我理解总体方向,但仍然行不通-“B”与“A”重叠。我做错什么了?RelativeLayout layout = new RelativeLayout(this);TextView tv1 = new TextView(this);tv1.setText("A");TextView tv2 = new TextView(this);
tv2.setText("B");RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.FILL_PARENT);
lp.addRule(RelativeLayout.RIGHT_OF, tv1.getId());layout.addView(tv1);
layout.addView(tv2, lp);
3 回答
慕田峪9158850
TA贡献1794条经验 获得超8个赞
LinearLayout linearLayout = new LinearLayout(this);RelativeLayout.LayoutParams relativeParams = new RelativeLayout.LayoutParams( LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);relativeParams.addRule(RelativeLayout.ALIGN_PARENT_TOP); parentView.addView(linearLayout, relativeParams);
TextView tv1 = new TextView(this);tv1.setId(1);TextView tv2 = new TextView(this);tv2.setId(2);
addRule(RelativeLayout.RIGHT_OF, tv1.getId());
慕标琳琳
TA贡献1830条经验 获得超9个赞
Android 22最小可运行示例
import android.app.Activity;import android.os.Bundle;import android.view.View;import android.view.ViewGroup;
import android.widget.RelativeLayout;import android.widget.TextView;public class Main extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final RelativeLayout relativeLayout = new RelativeLayout(this);
final TextView tv1;
tv1 = new TextView(this);
tv1.setText("tv1");
// Setting an ID is mandatory.
tv1.setId(View.generateViewId());
relativeLayout.addView(tv1);
// tv2.
final TextView tv2;
tv2 = new TextView(this);
tv2.setText("tv2");
RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.FILL_PARENT);
lp.addRule(RelativeLayout.BELOW, tv1.getId());
relativeLayout.addView(tv2, lp);
// tv3.
final TextView tv3;
tv3 = new TextView(this);
tv3.setText("tv3");
RelativeLayout.LayoutParams lp2 = new RelativeLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT );
lp2.addRule(RelativeLayout.BELOW, tv2.getId());
relativeLayout.addView(tv3, lp2);
this.setContentView(relativeLayout);
}}android create project ....
- 3 回答
- 0 关注
- 366 浏览
添加回答
举报
0/150
提交
取消
