Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scrollbar in android

How I can add scrollbar in android xml file??? Can anyone prtovide me the simple way to add it in relative layout. I tried many times to add it in relative and linear layout. But,It doesn't work. Please give me solution.

Thanks.

like image 705
Pratik Patel Avatar asked Nov 19 '25 04:11

Pratik Patel


1 Answers

Reference to above answer:

HOW TO USE RELATIVE LAYOUT W.R.T. SCROLLVIEW

<ScrollView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/scrollView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"  >


    <RelativeLayout 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >         
    ... ... ...

</RelativeLayout>
</ScrollView>
like image 128
Harpreet Avatar answered Nov 21 '25 19:11

Harpreet