티스토리 뷰
스크롤바(ScrollBar) 색상, 위치 변경해보기
ㆍ스크롤바의 위치와 색상 설정 방법.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical"
android:gravity="center">
<ScrollView
android:layout_width="300dp"
android:layout_height="300dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="어쩌구"
android:textColor="#000000" />
</ScrollView>
</LinearLayout>
스크롤바를 항상보이게 하기
android:scrollbarFadeDuration = "0"
android:scrollbarAlwaysDrawVerticalTrack = "True"
혹은
android:scrollbarDefaultDelayBeforeFade="500000"
스크롤바 위치를 우측에서 좌측으로 바꾸기
android:VerticalScrollbarPosition = "left"
스크롤바가 밖으로, 내부 콘텐츠를 가리지 않도록 설정하기
android:scrollbarStyle="outsideInset"
스크롤바를 원하는 그림으로 변경하기, Size 변경하기
android:scrollbarThumbVertical="@drawable/scroll_thumb"
android:scrollbarSize="2dp"
스크롤바 배경 라인 변경하기
android:scrollbarTrackVertical="@drawable/scroll_track"
'Computer > Android' 카테고리의 다른 글
안드로이드 Task의 종료시점 확인하기 (0) | 2019.01.20 |
---|---|
TextView 줄간격, 자간, 장평 설정하기 (0) | 2019.01.06 |
[Android] FileProvider 사용방법 (0) | 2018.08.19 |
Face API in Android (1) (0) | 2018.08.14 |
[Android] Activity간 객체, 행렬 데이터 전달 (0) | 2018.05.13 |