当前位置:   article > 正文

自定义宽度的seekbar,上方进度显示随着向右滑动_android seekbar上方文字跟随滑动

android seekbar上方文字跟随滑动

需求:

在弹框中显示进度条,要求是显示进度,切进度也要随着滑动而滑动,样式需要自定义。

开发:

根据需求首先想到的是自定义seekbar,自定义样式如进度条的样式,原点的样式这些比较简单,网上也有很多,主要就是重新设置setProgressDrawable:

  1. <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  2. <item android:id="@android:id/background">
  3. <shape>
  4. <solid android:color="#ff51495e" />
  5. </shape>
  6. </item>
  7. <item android:id="@android:id/secondaryProgress">
  8. <clip>
  9. <shape>
  10. <solid android:color="#ff51495e" />
  11. </shape>
  12. </clip>
  13. </item>
  14. <item android:id="@android:id/progress">
  15. <clip>
  16. <shape>
  17. <solid android:color="#ff996dfe" />
  18. </shape>
  19. </clip>
  20. </item>
  21. </layer-list>

重新设置圆圈:setThumb

<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">     <!-- 按下状态 -->     <item android:drawable="@drawable/shape_seekbar" android:state_pressed="true" />     <!-- 焦点状态 -->     <item android:drawable="@drawable/shape_seekbar" android:state_focused="true" />     <!-- 选择状态 -->     <item android:drawable="@drawable/shape_seekbar" android:state_selected="true" />     <!-- 默认状态 -->     <item android:drawable="@drawable/shape_seekbar" />

</selector>

这块比较容易些,主要是上方显示进度随着进度向右移动会难些,在网上也看到过有些自定义实现了,但很多是基于怎个屏幕宽度自定义的,通过屏幕宽度找出进度所在的x的数值,但现在是在dialog弹框上显示,所以就不能通过屏幕的宽度来定义,因为左右2边的空隙不好计算距离,也比较麻烦。

所以我的想法是:

  1. private TextView mTvCurrent;
  2. private TextView mTvMax;
  3. private TextView mTvMin;
  4. private SeekBar mSbProgress;
  5. private int shapecircle;
  6. private int back;
  7. private int max;
  8. private Context mcontext;
  1. @Override
  2. public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser){
  3. int w = mSbProgress.getMeasuredWidth()-WonderfulDpPxUtils.dip2px(mcontext, 10);
  4. int twidth = mTvCurrent.getMeasuredWidth() / 2;
  5. int left = (progress * w) / seekBar.getMax() - twidth;
  6. int leftmargin = left < 0 ? 0 : left;
  7. LayoutParams params = (LayoutParams) mTvCurrent.getLayoutParams();
  8. params.leftMargin = leftmargin + WonderfulDpPxUtils.dip2px(mcontext, 10);
  9. mTvCurrent.setLayoutParams(params);
  10. mTvCurrent.setText(progress + "");
  11. }

通过获取seekbar的宽度,然后计算出控件进度的长度,减去文字的一半就是文字距离seekbar左边的距离,然后设置文字距离左边框的距离从而定位文字的位置,需要注意的是,seekbar默认是有内边距的,所以在处理的时候需要减去左边距,我们最好自己设置内边距:

  1. <SeekBar
  2. android:id="@+id/sb_progress"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:layout_marginLeft="10dp"
  6. android:layout_marginRight="10dp"
  7. android:paddingStart="10dp"
  8. android:paddingEnd="10dp"
  9. android:max="100"
  10. />

这样的话就方便我们计算。

 

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

闽ICP备14008679号