为了账号安全,请及时绑定邮箱和手机立即绑定

如何以编程方式在RelativeLayout中部署视图?

如何以编程方式在RelativeLayout中部署视图?

慕哥9229398 2019-10-14 12:08:08
如何以编程方式在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 回答

?
慕姐4208626

TA贡献1852条经验 获得超7个赞

从我能够拼凑起来的东西来看,你必须使用LayoutParams添加视图。

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);

所有的功劳都归功于sechaden,为了相对地以编程方式定位您的项目,您必须将ID分配给它们。

TextView tv1 = new TextView(this);tv1.setId(1);TextView tv2 = new TextView(this);tv2.setId(2);

然后addRule(RelativeLayout.RIGHT_OF, tv1.getId());



查看完整回答
反对 回复 2019-10-15
?
炎炎设计

TA贡献1808条经验 获得超4个赞

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 ...构建代码最少的GitHub存储库.



查看完整回答
反对 回复 2019-10-15
  • 3 回答
  • 0 关注
  • 420 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信