欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android自定义SeekBar滑动显示数字

时间:2022-12-25 15:22:01|栏目:Android代码|点击:

本文实例为大家分享了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);
 }
 }

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

工程地址:链接地址

上一篇:解决Android BitmapFactory的基本使用问题

栏    目:Android代码

下一篇:Flutter实现牛顿摆动画效果的示例代码

本文标题:Android自定义SeekBar滑动显示数字

本文地址:http://www.codeinn.net/misctech/222140.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有