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?
A:
<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>
krunal shah
2010-10-30 04:16:02
A:
You can add an atrribute in linearLayout: android:scrollbars="vertical"
alishan
2010-10-30 04:18:48