스크롤바 넣기 (ScrollView)

프로그래밍/Android (Java)|2015. 1. 27. 10:56
반응형

스크롤 할 부분을 ScrollView 로 감싸면 됩니다.

주의할 것은 ScrollView 내부에 Layout 이 하나만 들어 갈 수 있습니다.

그러므로 복잡한 레이아웃을 만들 경우 ScrollView 안의 Layout 속에 여러개의 Layout 을 만들면 됩니다.


/res/layout/activity_main.xml


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:id="@+id/sysdocu_main_layer"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical"

    android:background="#ffffff">


<ScrollView

    android:id="@+id/scrollview"

    android:layout_width="match_parent"

    android:layout_height="match_parent">


<LinearLayout

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical"

    android:background="#ffffff">


     <TextView android:id="@+id/history"

         android:layout_width="match_parent"

         android:layout_height="wrap_content"

         android:textSize="16dip"

         android:layout_margin="10dip"

         android:textColor="#000000"/>


     <TextView android:id="@+id/lblMessage" 

         android:layout_width="match_parent"

         android:layout_height="wrap_content"

         android:textSize="16dip"

         android:layout_margin="10dip"

         android:textColor="#000000"/>


</LinearLayout>


</ScrollView>


</LinearLayout> 


반응형

댓글()