これは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());
問題は、最初のテキストビューのみが表示されることです。線形レイアウトの代わりに相対レイアウトを使用すると、すべてのテキスト ビューが表示されますが、互いに 1 つ表示されます。どのようにできるのか?
事前にthx!