Android自定义View实现可拖拽的进度条

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android自定义View实现可拖拽的进度条相关的知识,希望对你有一定的参考价值。

参考技术A 在onSizeChanged方法中进行计算,这时可以得到一条与控件宽度相同的直线,并把路径设置给PathMeasure

使用PathMeasure得出当前进度的路径并进行绘制,这里我将上一步的绘制放在了一起

这个矩形的宽度需要我们用绘制最长的文字来确定其宽高

另外矩形的显示位置也是以当前进度所在的点为中心点

文字显示的位置计算起来就比较简单了,直接用上一步算出的矩形的中心点即可,不过这里需要调整文字绘制的垂直的偏移,这样才能实现文字垂直居中

实现拖拽需要对onTouchEvent方法进行处理,也就是当手指触摸矩形区域的时候,根据手指横向滑动的偏移来设置当前的进度,具体如下

为了适配高度的wrap_content属性,我们需要计算出控件最小需要显示的高度

这里我们是用显示进度的矩形的高度作为控件最小的高度的,因为矩形的高度是所有图形最高的一个

https://gitee.com/itfitness/seek-progress-bar

移动端可拖拽的进度条

 原生js  移动端可拖拽的进度条

效果图:

代码:

复制代码

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>干货-课程-完成</title>
<style>
ul.lanren{
margin:100px auto;
}
.scale_panel{
color:#999;
position:absolute;
line-height:18px;
left:60px;top:-0px;
}
.scale_panel>span:first-child{
position: absolute;
left: -5rem;
font-size: 2rem;
}
.scale_panel>span:nth-child(2){
position: absolute;
right: -5rem;
font-size: 2rem;
}
.scale>span{
background-color: red;
width:3rem;
height:3rem;
position:absolute;
left:-2px;top:-15px;
cursor:pointer;
border-radius: 50%;
font-size: 2rem;
}
.scale{
background-repeat: repeat-x;
background-position: 0 100%;
background-image: linear-gradient(to right,#08D7F2 0%,#2BF06A 50%,#2BF06A 50%,#FC6076 100%);
border-left: 1px #83BBD9 solid;
width: 43rem;
height: 1rem;
position: relative;
border-radius: 2rem;
}
.scale>div{
background-repeat: repeat-x;
background-color: red; /*进度条颜色*/
width: 0px;
position: absolute;
height: 1rem;
width: 0; left: 0; bottom: 0;
border-radius: 2rem;
}
.lanren>li{
margin-left: 3.5rem;
position:relative;
list-style:none;
font-size: 3rem;
}
#title{
position: absolute;
top: -6rem;
left: 23rem;
}
</style>
</head>
<body>
<!-- 可拖拽进度条 -->
<ul class="lanren">
<li><span id="title">0</span>
<div class="scale_panel">
<span class="f-left">吃力</span>
<span class="f-right">轻松</span>
<div class="scale" id="bar">
<div></div>
<span id="btn"></span>
</div>
</div>
</li>
</ul>
<script src="js/jquery-3.2.1.min.js"></script>
<script>
// 进度条代码
var scale = function (btn,bar,title){
this.btn=document.getElementById(btn);
this.bar=document.getElementById(bar);
this.title=document.getElementById(title);
this.step=this.bar.getElementsByTagName("div")[0];
this.init();
};
scale.prototype={
init:function (){
var f=this,g=document,b=window,m=Math;
f.btn.ontouchstart=function (e){
var x=(e||b.event).touches[0].clientX;
var l=this.offsetLeft;
var max=f.bar.offsetWidth-this.offsetWidth;
g.ontouchmove=function (e){
var thisX=(e||b.event).touches[0].clientX;
var to=m.min(max,m.max(-2,l+(thisX-x)));
f.btn.style.left=to+\'px\';
f.ondrag(m.round(m.max(0,to/max)*100),to);
b.getSelection ? b.getSelection().removeAllRanges() : g.selection.empty();
};
g.ontouchend=new Function(\'this.onmousemove=null\');
};
},
ondrag:function (pos,x){
this.step.style.width=Math.max(0,x)+\'px\';
this.title.innerHTML=pos+\'%\';
}
}
new scale(\'btn\',\'bar\',\'title\');
// });
</script>
</body>
</html>

复制代码

 

以上是关于Android自定义View实现可拖拽的进度条的主要内容,如果未能解决你的问题,请参考以下文章

移动端可拖拽的进度条

使用movable-view制作可拖拽的微信小程序弹出层效果。

Android 自定义可拖拽View,界面渲染刷新后不会自动回到起始位置

android开发游记:ItemTouchHelper 使用RecyclerView打造可拖拽的GridView

Android自定义View之可拖拽悬浮控件 代码赏析

vue+elementUi开发一个可拖拽的和拉伸编辑的画板