I have lot of items on the screen, and I need to use Scrollbar so the user can go down, But the scroll is not visible, How is posssible to addd scrollbar to a liniearlayout?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 36 down vote accepted

Wrap the linear layout with a <ScrollView>

See here for an example.

link|improve this answer
feedback
<ScrollView android:id="@+id/scroll" android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <LinearLayout android:id="@+id/container"
        android:orientation="vertical" android:layout_width="fill_parent"
        android:layout_height="wrap_content"></LinearLayout>

</ScrollView>
link|improve this answer
Missing android namespace. – Tahir Akram Feb 7 at 11:15
feedback

You can add an atrribute in linearLayout: android:scrollbars="vertical"

link|improve this answer
this didn't work – Troj Nov 1 '10 at 1:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.