안드로이드 텍스트뷰에 스크롤 추가하기
안드로이드 텍스트뷰에 스크롤 추가하기 layout xml 코드 액티비티에 textview = findViewById(R.id.textview); textview.setMovementMethod(new ScrollingMovementMethod()); 만약 스크롤을 보이게 하고 싶다면 android:scrollbarFadeDuration = "0" android:scrollbarAlwaysDrawVerticalTrack = "True" android:scrollbarThumbVertical="@color/원하는 컬러" //현위치 스크롤바 색깔 android:scrollbarTrackVertical="@color/원하는 컬러" //전체 스크롤바 색깔 android:scrollbarSize="2dp" // 스..
프로그래밍/안드로이드 앱프로그래밍
2020. 1. 30. 18:58