微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Android自定义SeekBar滑动显示数字

先来上个效果图:

当滑动时:数值显示,滑动停止时显示数字,使用FrameLayout结合SeekBar。

首先我们看看。

Layout:

<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools">

 <RelativeLayout
  android:id="@+id/wrapper_seekbar_indicator"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">

  <ImageView
   android:id="@+id/img_seekbar_indicator"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_alignParentTop="true" />

  <TextView
   android:id="@+id/txt_seekbar_indicated_progress"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:gravity="center"
   android:textColor="#333333"
   android:textSize="@dimen/space_12"
   tools:text="100" />
 </RelativeLayout>

 <RelativeLayout
  android:id="@+id/wrapper_seekbar"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content">

  <SeekBar
   android:id="@+id/seekbar"
   style="@style/Widget.SeekBar.normal"
   android:layout_width="match_parent"
   android:layout_height="wrap_content" />
 </RelativeLayout>

</merge>

需要自定义可再上面修改图片问题颜色等,或者自己封装起来。

初始化函数

private void init(Context context,AttributeSet attrs,int defStyle) {
  View view = LayoutInflater.from(context).inflate(
    R.layout.view_seekbar_indicated,this);
  bindViews(view);

  if (attrs != null)
   setAttributes(context,attrs,defStyle);
  mSeekBar.setonSeekBarchangelistener(this);
  mTextViewProgress.setText(String.valueOf(mSeekBar.getProgress()));

  getViewTreeObserver().addOnGlobalLayoutListener(
    new ViewTreeObserver.OnGlobalLayoutListener() {
     @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
     @Override
     public void onGlobalLayout() {
      mMeasuredWidth = mSeekBar.getWidth()
        - mSeekBar.getPaddingLeft()
        - mSeekBar.getPaddingRight();
      mSeekBar.setPadding(
        mSeekBar.getPaddingLeft(),mSeekBar.getPaddingTop()
          + mWrapperIndicator.getHeight(),mSeekBar.getPaddingRight(),mSeekBar.getPaddingBottom());
      setIndicator();
      getViewTreeObserver()
        .removeOnGlobalLayoutListener(this);
     }
    });
  // mWrapperIndicator.setVisibility(View.GONE);
 }

主要是根据是否有改变,和触摸进行判断字和图片显示

 @Override
 public void onProgressChanged(SeekBar seekBar,int progress,boolean fromUser) {
  setIndicator();
  if (mOnSeekBarchangelistener != null)
   mOnSeekBarchangelistener.onProgressChanged(seekBar,progress,fromUser);
 }

 @Override
 public void onStartTrackingTouch(SeekBar seekBar) {
  if (mOnSeekBarchangelistener != null) {
   mOnSeekBarchangelistener.onStartTrackingTouch(seekBar);
   mWrapperIndicator.setVisibility(View.VISIBLE);
  }
 }

 @Override
 public void onStopTrackingTouch(SeekBar seekBar) {
  if (mOnSeekBarchangelistener != null) {
   mOnSeekBarchangelistener.onStopTrackingTouch(seekBar);
   mWrapperIndicator.setVisibility(View.GONE);
  }
 }

废话也不多说,原理很简单。

工程地址:
https://github.com/xiaoli1993/SeekBarIndicated/tree/47ffcc890fb9c7000bb20d9b248620564c2c8122

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐