我希望我的活动开始时,textView自动开始(垂直)滚动 我在一个小的textView中显示一个段落。 textView可以手动手动垂直滚动,但是我希望它自己完成。
我添加了此属性,但没有帮助。
android:gravity = "bottom"
谢谢
<TextView
android:id="@+id/announcementNewsText"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:autoSizeTextType="uniform"
android:scrollbars="vertical"
android:textColor="#FFFFFF"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/guideline"
app:layout_constraintVertical_bias="1.0"
/>
答案 0 :(得分:0)
像这样在您的XML中添加滚动视图
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/scroll_view">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/announcementNewsText"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:autoSizeTextType="uniform"
android:scrollbars="vertical"
android:textColor="#FFFFFF"/>
</RelativeLayout>
</ScrollView>
然后在java onCreate()中找到滚动视图
ScrollView s = findViewById(R.id.scroll_view);
s.setSmoothScrollingEnabled(true);
s.post(new Runnable() {
@Override
public void run() {
s.fullScroll(View.FOCUS_DOWN);
}
});
答案 1 :(得分:0)
添加
android:scrollbars = "vertical"
转到您的textView
并使用
yourTextView.setMovementMethod(new ScrollingMovementMethod());
在您的代码中。