如何使用搜索栏滚动文本?

How to scroll text with seekbar?

我正在学习 Android Studio 并且我正在制作程序,其中有很多文本,所以我试图使用 seekbar 使其可滚动(我也希望它可以垂直滚动)seekbars 0 amount is top and 100 是机器人。我这样做是为了在移动搜索栏时滚动,但我不知道如何制作它以便它与我的文本长度相关。 这是我的 MainActivity.Java:

中的代码
    seek_bar = (SeekBar)findViewById(R.id.seekBar);
    text_view =(TextView)findViewById(R.id.textView);
    seek_bar.setOnSeekBarChangeListener(
            new SeekBar.OnSeekBarChangeListener() {
                int progress_value;
                @Override
                public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
                    progress_value = progress;
                    TextView newtext = (TextView) findViewById(R.id.textView2);
                    ScrollView hscrollViewMain = (ScrollView)findViewById(R.id.scrollViev);
                    newtext.setText(hscrollViewMain.getMaxScrollAmount().toString()); // I made this because I thought that it would tell me the maximum amount of pixels in my text but toString() doesnt work somehow. It is redlined :(
                    hscrollViewMain.scrollTo(0, (hscrollViewMain.getMaxScrollAmount()/100)*progress_value); //this scrolls only little when seekbar is moved
                }

这是我的 activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity"
android:weightSum="1">

<SeekBar
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/seekBar" />

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/scrollViev"
    android:layout_gravity="center_horizontal"
    android:fillViewport="false"
    android:clickable="false"
    android:nestedScrollingEnabled="false"
    android:isScrollContainer="false">
    <LinearLayout
        android:id="@+id/linearLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/testtext"
            android:id="@+id/textView2" />

        <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/textView"
        android:text="@string/maintext" />
</LinearLayout>


</ScrollView>
</LinearLayout>

我也想过使用 computeVerticalScrollRange() 方法代替 getMaxScrollAmount 但因为它是受保护的方法,我不知道如何使用它。我很困在这里,所以任何帮助将不胜感激。

在我看来你可以这样做:

1) 在您的 left/right 上创建一个相对布局

2) 在这个 RelativeLayout 中创建一个 TextView

3) 现在你必须得到 RelativeLayout 的高度。为此,您可以使用 onMeasure/onLayout(但通过这种方式,您必须实现自定义 RelativeLayout)或简单地使用 ViewTreeObserver

4) 现在你有了两个组件的高度,所以让你计算一下

5) 每次将 SeekBar 移动到 "update" TextView 位置时。在 RelativeLayout 中,您可以使用 children.layout(left, top, right, bottom) 设置位置,然后在 TextView 上调用 invalidate() 来更新它。

希望对您有所帮助