我正在学习Android Studio,我正在编写非常多文本的程序,因此我尝试使用seekbar使其可滚动(我也希望它可以垂直滚动)seekbars 0 amount是top,100是bot。我做了它,以便在移动搜索栏时滚动但我无法弄清楚如何制作它以便它与我的文本的长度相关。 这是我的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但是因为它是受保护的方法,我不知道如何使用它。我非常喜欢这里,所以任何帮助都会非常感激。
答案 0 :(得分:1)
在我的意见中你可以这样做:
1)在Seekbar的左/右创建一个Relativelayout
2)在这个RelativeLayout
中创建一个TextView3)现在你必须得到RelativeLayout的高度。要做到这一点,你可以使用onMeasure / onLayout(但这样你必须实现自定义RelativeLayout)或只是一个ViewTreeObserver
4)现在您拥有两个组件的高度,以便进行计算
5)每次移动SeekBar时,您都必须更新&#34; TextView的位置。在RelativeLayout中,您可以使用children.layout(left, top, right, bottom)
设置位置,然后在TextView上调用invalidate()
进行更新。
希望有所帮助