web-dev-qa-db-ja.com

別のレイアウト内にプログラムでレイアウトを追加する

ImageViewとTextViewを含むxmlファイル(option_element.xml)があります

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    Android:layout_marginTop="-18dp" >

    <ImageView
        Android:id="@+id/button"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_centerInParent="true"
        Android:src="@drawable/option_button" />

    <TextView
        Android:id="@+id/text"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:layout_alignBottom="@+id/button"
        Android:layout_alignLeft="@+id/button"
        Android:layout_alignRight="@+id/button"
        Android:layout_alignTop="@+id/button"
        Android:layout_centerHorizontal="true"
        Android:gravity="center" />

</RelativeLayout>

配列の内容に基づいて、LinearLayoutにこのビューを入力する必要があります

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="match_parent"
    Android:layout_height="wrap_content"
    Android:orientation="vertical" >

    <LinearLayout
        Android:id="@+id/options_list"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        Android:orientation="vertical" />

    <!-- other layout elements -->

</LinearLayout>

私はそれを次のように追加しています

LinearLayout options_layout = (LinearLayout) findViewById(R.id.options_list);
String[] options = getActivity().getResources().getStringArray(R.array.options);
for (int i = 0; i < options.length; i++) {
    View to_add = inflater.inflate(R.layout.options_element,
                options_layout);

    TextView text = (TextView) to_add.findViewById(R.id.text);
    text.setText(options[i]);
    text.setTypeface(FontSelector.getBold(getActivity()));

}

しかし、何かがうまくいかなかった。 options [i]テキストで満たされた相対TextViewを持つoptions.lengthImageViewを期待していますが、options.length ImageViewを取得していますが、最初の1つだけにテキストがあります(テキストはoptions [0]要素ではなく、最後の1つです)。

たとえば、オプションの最初のimageView内に{"one"、 "two"、 "three"}が含まれている場合、 "three"が表示され、他のオプションは空になります。各文字列を各TextView内に配置するにはどうすればよいですか?

11
giozh

inflate(int resource, ViewGroup root)メソッドはrootがnullでない場合、rootを返します。したがって、to_add.findViewById()options_layout.findViewById()と等しく、常にビューを返します。最初の位置。次のように変更すると役立ちます。

LinearLayout options_layout = (LinearLayout) findViewById(R.id.options_list);
String[] options = getActivity().getResources().getStringArray(R.array.options);
for (int i = 0; i < options.length; i++) {
    View to_add = inflater.inflate(R.layout.options_element,
                options_layout);

    TextView text = (TextView) to_add.findViewById(R.id.text);
    text.setText(options[i]);
    text.setTypeface(FontSelector.getBold(getActivity()));

}

に:

LinearLayout options_layout = (LinearLayout) findViewById(R.id.options_list);
String[] options = getActivity().getResources().getStringArray(R.array.options);
for (int i = 0; i < options.length; i++) {
    View to_add = inflater.inflate(R.layout.options_element,
                options_layout,false);

    TextView text = (TextView) to_add.findViewById(R.id.text);
    text.setText(options[i]);
    text.setTypeface(FontSelector.getBold(getActivity()));
    options_layout.addView(to_add);
}
8
Lei Guo