ฉันดิ้นรนกับสิ่งนี้มานานกว่าหนึ่งสัปดาห์และในที่สุดก็หาวิธีที่จะทำให้งานนี้!
ปัญหาของฉันคือทุกอย่างจะเลื่อนเป็น 'บล็อก' ข้อความตัวเองกำลังเลื่อน แต่ในฐานะที่เป็นชิ้นมากกว่าทีละบรรทัด เห็นได้ชัดว่ามันไม่ได้ผลสำหรับฉันเพราะมันจะตัดเส้นที่ด้านล่าง โซลูชันก่อนหน้าทั้งหมดไม่ได้ผลสำหรับฉันดังนั้นฉันจึงสร้างขึ้นมาเอง
นี่คือทางออกที่ง่ายที่สุดโดยไกล:
สร้างไฟล์คลาสที่ชื่อว่า: '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;
}
}
สุดท้ายเปลี่ยน 'TextView' ใน XML:
จาก: <TextView
ถึง: <com.your_app_goes_here.PerfectScrollableTextView
maxLines
คุณต้องป้อนหมายเลขโดยพลการ; นี่ไม่ใช่สิ่งที่จะใช้ได้กับทุกขนาดหน้าจอและขนาดแบบอักษรใช่ไหม ฉันคิดว่ามันง่ายกว่าที่จะห่อด้วย aScrollView
ซึ่งหมายความว่าฉันไม่จำเป็นต้องเพิ่มแอตทริบิวต์ XML หรือรหัสเพิ่มเติมอีก (เช่นการตั้งค่าวิธีการเคลื่อนไหว)