如何在安卓应用程序中启用快速滚动到"EditText Field"



我使用的是EditText,它有大量的内容可以滚动和阅读。现在我的问题是,它滚动很慢。所以,我想增加它的滚动速度。如果有人理解我的问题,并有解决方案,请回复,谢谢提前

用scrollview包围edittext。

我想你在找这个:

<ListView
 ...
 android:fastScrollEnabled="true"/>

和这个到listView中的"jump":

http://developer.android.com/reference/android/widget/SectionIndexer.html

来源:Android: Scrollbar Accelerator?

将文本框放在滚动视图中,这样您可以移动文本框而不是光标

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1">
    <TextView
        android:id="@+id/YourText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
</ScrollView>

相关内容

  • 没有找到相关文章

最新更新