编程添加视图RelativeLayout的 [英] Add view programmatically to RelativeLayout

查看:126
本文介绍了编程添加视图RelativeLayout的的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你能不能给我加子视图以编程方式 RelativeLayout的在给定位置的一个很简单的例子?

Can you give me a very simple example of adding child view programmatically to RelativeLayout at a given position?

例如,要体现以下XML:

For example, to reflect the following XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="107dp"
    android:layout_marginTop="103dp"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge" />

我不明白如何创造一个合适的 RelativeLayout.LayoutParams 实例。

I don't understand how to create an appropriate RelativeLayout.LayoutParams instance.

推荐答案

下面有一个例子,让你开始,填写其余适用:

Heres an example to get you started, fill in the rest as applicable:

TextView tv = new TextView(mContext);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_LEFT, RelativeLayout.TRUE);
params.leftMargin = 107
...
mRelativeLayout.addView(tv, params);

该文档为RelativeLayout.LayoutParams和构造函数是<一href="http://developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html#RelativeLayout.LayoutParams%28int,%20int%29">here

这篇关于编程添加视图RelativeLayout的的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆