我想在LinearLayout
中添加多个视图。以下是我用于添加向LinearLayout
添加多个视图的代码。
Java代码:
LinearLayout seriesMainListItemView = (LinearLayout) findViewById(R.id.SeriesMainListItemView);
LayoutInflater mInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
for (int i=0; i<scheduleArr.length; i++) {
View inflatedView = mInflater.inflate(R.layout.scheduleitem, null);
TextView inflatertext1 = (TextView) inflatedView.findViewById(R.id.text1);
TextView inflatertext2 = (TextView) inflatedView.findViewById(R.id.text2);
inflatertext1.setText(scheduleArr[i][0]);
inflatertext2.setText(scheduleArr[i][1]);
Log.i("data",i + " " + scheduleArr[i][0] + "/" + scheduleArr[i][1]);
seriesMainListItemView.addView(inflatedView);
}
以下是我想多次添加的View xml。
这是我要添加它的LinearLayout。
<TableLayout
android:layout_gravity="center_vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="1dip"
android:paddingRight="1dip" >
<TableRow
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/imgSeriesMainScheduleImg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/scheduleheader"/>
<LinearLayout
android:id="@+id/SeriesMainListItemView"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</LinearLayout>
</TableRow>
..............
</TableLayout>
但是只有单个视图在LinearLayout中添加,尽管数组的长度为3.我的代码中有什么问题?
答案 0 :(得分:11)
我已将LinearLayout的方向添加为Vertical。它变得完美。谢谢Sujit的提示。
答案 1 :(得分:1)
使用带有addView()
对象的LayoutParams
版本,提供适当的LinearLayout.LayoutParams
,看看是否有帮助。