스크롤바 넣기 (ScrollView)
스크롤 할 부분을 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> |
'프로그래밍 > Android (Java)' 카테고리의 다른 글
타이틀바 및 상태바 제거 (0) | 2015.01.27 |
---|---|
뒤로가기(Back 버튼) 두번 눌러 앱 종료하기 (0) | 2015.01.27 |
액티비티 (activity) 재시작 재호출 재구동 (2) | 2015.01.27 |
xml 파일을 이용한 메뉴버튼 구현 (OptionsMenu) (0) | 2015.01.27 |
edittext 속성 - 기본값 입력 및 쓰기 금지 설정 (0) | 2015.01.27 |