当前位置:   article > 正文

android TextView文字跟随seekBar滑动条滑块的位置移动

android 文字跟随的seekbar

android有一个很有意思的控件:seekBar,它可以实现手动滑动进度条的进度,也可以自动调整滑块的位置,并能实现各种效果,适用于进度条,选择额度等情况,在这里我们就暂时不多说了,今天我们重点来实现一下与seekBar相关联的一种效果:文字跟随滑块的位置移动。
之前做过这种效果,用的原理是文字的中间位置与滑块中间位置相同,实现了文字随滑块滑动,但也有一些瑕疵:当滑动条宽度为占满屏幕且文字长度大于滑块的宽度时,如果滑块滑到最左边或最右边,文字显示不完全,思来想去,终于让我找到一种精确计算位置而且不会因为滑动条宽度造成文字显示不完全的问题,它的实现原理是:当滑块位于最左端时,文字与滑块左对齐,当滑动到右端时,文字与滑块右对齐,并随着滑块的移动,文字按照滑块的位置和文字长度按比例调整位置,实现平滑滚动。
1、布局文件。

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/screen_bg" android:orientation="vertical">
  2. <TextView android:id="@+id/tv_quota" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#FF233845" android:textSize="15sp"/>
  3. <SeekBar android:id="@+id/sb_quota" style="@style/mprogress_horizontal" android:layout_width="match_parent" android:layout_height="match_parent" android:thumb="@mipmap/bulegress_button" />
  4. </LinearLayout>
  • 1
  • 2
  • 3
  • 4

2、java代码

  1. private SeekBar sb_quota;
  2. private TextView tv_quota;
  3. tv_quota = (TextView) rootView.findViewById(R.id.tv_quota);
  4. sb_quota = (SeekBar) rootView.findViewById(R.id.sb_quota);
  5. sb_quota.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
  6. @Override
  7. public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
  8. tv_quota.setText("¥" + progress);
  9. quota = progress;
  10. int spec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
  11. tv_quota.measure(spec, spec);
  12. int quotaWidth = tv_quota.getMeasuredWidth();
  13. int spec2 = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
  14. tv_quota.measure(spec2, spec2);
  15. int sbWidth = sb_quota.getMeasuredWidth();
  16. LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) tv_quota.getLayoutParams();
  17. params.leftMargin = (int) (((double) progress / sb_quota.getMax()) * sbWidth - (double) quotaWidth * progress / sb_quota.getMax());
  18. tv_quota.setLayoutParams(params);
  19. }
  20. @Override
  21. public void onStartTrackingTouch(SeekBar seekBar) {
  22. }
  23. @Override
  24. public void onStopTrackingTouch(SeekBar seekBar) {
  25. }
  26. });
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

转载于:https://my.oschina.net/nandecanghai123/blog/1529327

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/384755
推荐阅读
相关标签
  

闽ICP备14008679号