나는 일주일 이상 이것으로 어려움을 겪고 마침내이 일을하는 방법을 알아 냈습니다!
내 문제는 모든 것이 '블록'으로 스크롤된다는 것입니다. 텍스트 자체는 스크롤되었지만 줄 단위가 아닌 덩어리로 표시되었습니다. 이것은 바닥에서 줄을 잘라서 나에게 분명히 효과가 없었습니다. 이전의 모든 솔루션이 저에게 효과적이지 않아서 내 자신을 만들었습니다.
가장 쉬운 해결책은 다음과 같습니다.
패키지 내에 'PerfectScrollableTextView'라는 클래스 파일을 만든 다음이 코드를 복사하여 붙여 넣습니다.
import android.content.Context;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.TextView;
public class PerfectScrollableTextView extends TextView {
public PerfectScrollableTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
setVerticalScrollBarEnabled(true);
setHorizontallyScrolling(false);
}
public PerfectScrollableTextView(Context context, AttributeSet attrs) {
super(context, attrs);
setVerticalScrollBarEnabled(true);
setHorizontallyScrolling(false);
}
public PerfectScrollableTextView(Context context) {
super(context);
setVerticalScrollBarEnabled(true);
setHorizontallyScrolling(false);
}
@Override
protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
if(focused)
super.onFocusChanged(focused, direction, previouslyFocusedRect);
}
@Override
public void onWindowFocusChanged(boolean focused) {
if(focused)
super.onWindowFocusChanged(focused);
}
@Override
public boolean isFocused() {
return true;
}
}
마지막으로 XML에서 'TextView'를 변경하십시오.
에서: <TextView
에: <com.your_app_goes_here.PerfectScrollableTextView
maxLines
임의의 숫자를 입력해야합니다. 이것은 모든 화면 크기 및 글꼴 크기에 대해 작동하지 않는 것이 있습니까? 그냥로 감싸는 것이 더 간단ScrollView
하다는 것을 알았 습니다 . 즉, XML 속성이나 코드를 추가 할 필요가 없습니다 (이동 방법 설정과 같은).