2013년 12월 10일 화요일

Scroll 가능한 TextView 만들기

Layout:
<TextView
    android:id="@+id/text_view"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:singleLine="false"
    android:maxLines="3"
    android:scrollbars="vertical"
    android:textColor="@android:color/secondary_text_dark_nodisable"
    >
</TextView>
Code:
TextView textView = (TextView)findViewById(R.id.text_view);
textView.setMovementMethod(ScrollingMovementMethod.getInstance());
Note:
The android:textColor="@android:color/secondary_text_dark_nodisable" is used to avoid text fade out when textView is touched.

댓글 없음:

댓글 쓰기