Closed. This question needs to be more focused。它当前不接受答案。
想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题。
去年关闭。
当我在edittext中输入数字并单击按钮时,如何更改圆形搜索栏中的进度?
以下是我正在尝试做的快照
想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题。
去年关闭。
当我在edittext中输入数字并单击按钮时,如何更改圆形搜索栏中的进度?
以下是我正在尝试做的快照
最佳答案
http://devadvance.com/circularseekbar/
我为另一个应用程序开发了一个全新的CircularSeekBar,并决定将其开源。 RaghavSood的功能不错,但不可自定义,并且没有setProgress / getProgress方法正常工作。
让我知道这是否有帮助。
编辑:在布局上使用TextView时回调:
public class CircleSeekBarListener implements OnCircularSeekBarChangeListener {
@Override
public void onProgressChanged(CircularSeekBar seekBar, int progress, boolean fromUser) {
// Put your code here
TextView text = (TextView)findViewById(R.id.TextView1);
text.setText("" + progress);
}
}
08-18 12:41