설.현.아빠
TextView에는 scrollbar가 적용되지 않나요?? 본문
>애트리뷰트에는 존재하는데 실제로는 적용이 안되는듯 싶네요 >이부분에 대해서 혹시 아시는 분 계신가요? 아래와 같은 방식으로 TextView를 ScrollView로 Wrapping하셔야 될 듯합니다. 오류 : TextView에 android:scrollbars="vertical" attribute를 사용할 경우. <?xml version="1.0" encoding="utf-8"?> 해법 : TextView를 ScrollView로 Wrapping <?xml version="1.0" encoding="utf-8"?> <LinearLayout
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="30sp"
android:scrollbars="vertical" <- 이 구조로는 scrollbar가 생성되지 않습니다.
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="10px"
android:text="가나다라마바사아자차카타파하\nabcdefghijklmnopqrstuvwxyz\nABCDEFGHIJKLMNOPQRSTUVWXYZ\n가나다라마바사아자차카타파하\nabcdefghijklmnopqrstuvwxyz\nABCDEFGHIJKLMNOPQRSTUVWXYZ"
/>
</LinearLayout>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="30sp"
android:scrollbarFadeDuration="1000"
android:scrollbarSize="12dip">
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="10px"
android:text="가나다라마바사아자차카타파하\nabcdefghijklmnopqrstuvwxyz\nABCDEFGHIJKLMNOPQRSTUVWXYZ\n가나다라마바사아자차카타파하\nabcdefghijklmnopqrstuvwxyz\nABCDEFGHIJKLMNOPQRSTUVWXYZ"
/>
</LinearLayout>
</ScrollView>
'안드로이드 > String' 카테고리의 다른 글
현재 날짜와 시간을 가져오는 방법 (0) | 2011.04.13 |
---|---|
String xliff 사용하기. (0) | 2011.03.23 |
FileReader FileNotFoundException 에러 관련 질문 (StringTokenizer 사용 예제 포함.) (0) | 2011.02.11 |
StringTokenizer와 split 구현 예제. (0) | 2011.02.11 |
StringTokenizer API (1) | 2011.02.11 |