안드로이드 TextView에 내용이 많을때 스크롤바가 필요한데 xml에 아래 6번째 줄처럼 android:scrollbars=”vertical”를 추가한다.
<TextView android:id="@+id/textViewLog" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="1dp" android:scrollbars="vertical" android:background="#ffffff" android:text="TextView" />
그리고 소스코드에서 .setMovementMethod(new ScrollingMovementMethod()); 를 추가해줌.
m_TextViewLog = (TextView) rootView.findViewById(R.id.textViewLog); m_TextViewLog.setMovementMethod(new ScrollingMovementMethod());
답글 남기기