Полоса прокрутки в Android - PullRequest
3 голосов
/ 30 января 2012

Как я могу добавить полосу прокрутки в Android XML-файл ???Может кто-нибудь пртовидит мне простой способ добавить его в относительное расположение.Я много раз пытался добавить его в относительную и линейную разметку.Но это не работает.Пожалуйста, дайте мне решение.

Спасибо.

Ответы [ 2 ]

3 голосов
/ 03 февраля 2012

Ссылка на ответ выше:

КАК ИСПОЛЬЗОВАТЬ ОТНОСИТЕЛЬНЫЙ ПЛАН 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>
3 голосов
/ 30 января 2012

Оберните ваш относительный или линейный макет в ScrollView . Например:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <!-- contents of linear layout go here -->
    </LinearLayout>
</ScrollView>
...