这是xml代码:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".DeleteActivity" >
<LinearLayout
android:id="@+id/linear_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</LinearLayout>
这是java代码的一部分:
LinearLayout linear_layout = (LinearLayout) findViewById(R.id.linear_layout);
final TextView[] myTextViews = new TextView[count];
do {
myTextViews[pointer] = new TextView(this);
myTextViews[pointer].setText(getResources().getString(R.string.data_dd) + data + "\n");
linear_layout.addView(myTextViews[pointer]);
pointer++;
}while(c.moveToNext());
问题是只显示第一个文本视图。如果我使用相对布局而不是线性布局,它会显示所有文本视图,但彼此显示。我能怎么做?
提前谢谢!