Я в самом начале Android.
Пока я играл с видами, я столкнулся с этой проблемой, немного погуглил, но ничего не смог найти. Я перечислил несколько строк (текстовых представлений) по горизонтали (см. Рисунок). Моя проблема в том, что я не могу скользить вниз по списку, чтобы увидеть элементы ниже. Чтобы слайд работал, нужно ли добавить какое-нибудь значение library / function / xml?
Что мне не хватает?
Это часть моего Java-кода (я беру данные из БД и выводю их на экран с помощью цикла while)
LinearLayout l = (LinearLayout)findViewById(R.id.myList);
TextView t = new TextView( getApplicationContext() );
t.setText("some text");
t.setClickable(true);
l.addView(t, 250, 30);
и мой xml
<?xml version="1.0" encoding="utf-8"?>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Add"
/>
<EditText
android:id="@+id/title"
android:singleLine="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<EditText
android:id="@+id/body"
android:singleLine="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/myList"
>
<Button
android:id="@+id/ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Ok -----------> "
/>
<Button
android:id="@+id/delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Delete All"
/>
</LinearLayout>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/list"
/>
</LinearLayout>