Android TextView 수직 스크롤 효과 구현 방법

이 사례 는 Android TextView 가 수직 스크롤 효 과 를 실현 하 는 방법 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
TextView 에서 텍스트 가 길 면 텍스트 를 수직 으로 스크롤 하여 표시 하 는 효 과 를 실현 해 야 할 수도 있 습 니 다.XML 레이아웃 파일 에서 TextView 에 다음 과 같은 속성 을 설정 해 야 합 니 다.

Android:scrollbars="vertical"
android:scrollbarStyle="X"

그 중 X 는 outside Overlay 나 inside Overlay 입 니 다.

android:scrollbarFadeDuration="X"
그 중에서 X 는 스크롤 바 가 나타 날 때 부터 사라 질 때 까지 의 시간 을 나타 내 고 단 위 는 밀리초 이다.
다음은 완전한 XML 코드 예 입 니 다.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical" android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <TextView
    android:id="@+id/textview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:singleLine="false"
    android:maxLines="8"
    android:background="#FFF"
    android:textColor="#000"
    android:textSize="20dp"
    android:layout_margin="10dp"
    android:scrollbars="vertical"
    android:text="@string/big_text"
    android:scrollbarStyle="outsideOverlay"
    android:padding="10dp"
    android:scrollbarFadeDuration="2000" />
</LinearLayout>

운행 효 과 는 아래 그림 과 같다.

더 많은 안 드 로 이 드 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기