web-dev-qa-db-ja.com

ビューをプログラムでRelativeLayoutに追加する方法は?

特定の位置でRelativeLayoutにプログラムで子ビューを追加する非常に簡単な例を教えてください。

たとえば、次の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インスタンスを作成する方法がわかりません。

57
Suzan Cioc

以下に例を示します。必要に応じて残りを記入してください。

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およびコンストラクターのドキュメントは here です

98
JRaymond

まず、RelativeLayoutにidを指定します(relativeLayout1など)。

RelativeLayout mainLayout = (RelativeLayout) findViewById(R.id.relativeLayout1);
TextView mTextView = new TextView(context);
mTextView.setText("Dynamic TextView");
mTextView.setId(111);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.ALIGN_PARENT_LEFT, RelativeLayout.TRUE);
params.addRule(RelativeLayout.ALIGN_PARENT_TOP, RelativeLayout.TRUE);
mainLayout.addView(mTextView, params);
29
Onuray Şahin