2

パーセル可能な配列からのデータのループに基づいて、アクティビティ内にx個の xml レイアウトを表示したいと考えています。この例では、配列サイズを 3 の固定値に変更しました。

膨らませたいレイアウトのxmlは次のとおりです。

<?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" >
<TextView
    android:id="@+id/tv_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>    
    <RadioGroup android:id="@+id/rg_type"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
    <RadioButton
        android:id="@+id/radioButton1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Yes"
        android:tag="1" />
    <RadioButton
        android:id="@+id/radioButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="No"
        android:tag="0" />
    <RadioButton
        android:id="@+id/radioButton3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Don't Know"
        android:tag="3" />    
</RadioGroup>
</LinearLayout>

親ページの xml は次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:orientation="vertical"> 
<LinearLayout 
    android:id="@+id/ll_content"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content">
</LinearLayout>
</LinearLayout>

これはアクティビティのコードです:

public class PainRecord_FollowUp extends Activity {

LinearLayout llContent;
Context context;
PainDataItem pd_in; //this is the Parcelable extra received

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.painrecord_followup);       

    Bundle extras = getIntent().getExtras();
    if (extras != null) {
        pd_in = extras.getParcelable("m_PainDataItem");
    }        
    LayoutInflater layoutInflator = (LayoutInflater) getApplicationContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    LinearLayout insertPoint = (LinearLayout) findViewById(R.id.ll_content);
    List views = new ArrayList();

    for(int i=0; i<3; i++){
        View view = layoutInflator.inflate(R.layout.row_painrecord_followup, null);
        TextView textView = (TextView) view.findViewById(R.id.tv_title);
        textView.setText("did x help " + i);
        view.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
        views.add(view);
    }
    for(int i = 0; i<views.size(); i++)
        insertPoint.addView((View) views.get(i));
}
}

各レイアウトを互いの下に表示する代わりに、次のように表示します。

ここに画像の説明を入力

LayoutParams.FILL_PARENT に変更すると、[0] ループ値だけが表示されます。

どんなアドバイスも大いに受けました。

ありがとう

4

1 に答える 1

2

LinearLayout の向きを垂直に設定します

<LinearLayout
    android:id="@+id/ll_content"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:orientation="vertical">
</LinearLayout>
于 2012-04-15T00:11:49.697 に答える