私はこれに1週間以上苦労し、ついにこの作業を行う方法を見つけました!
私の問題は、すべてが「ブロック」としてスクロールすることでした。テキスト自体はスクロールしていましたが、行ごとではなくチャンクとして表示されていました。これは明らかに私にとってはうまくいきませんでした。以前の解決策はすべて私にとってはうまくいかなかったので、私は自分で作成しました。
これが最も簡単な解決策です:
パッケージ内に「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の属性やコードを追加する必要はありません(移動方法の設定など)。