Scroll linear layout in android Scroll linear layout in android sqlite sqlite

Scroll linear layout in android


All you need to do is put the LinearLayout in a ScrollView container:

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

Note that wrap_content is used here, because the LinearLayout's contents define the height.