您好我正在尝试为我的应用程序制作均衡器,但我无法弄清楚如何制作按钮。我真的不知道如何解释自己,所以这里的图片不仅仅是我的文字:
我需要动画吗?你们能指出我正确的方向吗?
提前致谢。
答案 0 :(得分:2)
有一个很好的教程here用于创建里程表小部件。它根本不是您想要的外观,但许多(大多数)相同的问题都适用,包括自定义渲染,处理触摸事件,以及将一系列子窗口小部件连接到更大的控件中。这是我看到你的图片时我想到的第一件事。
答案 1 :(得分:1)
这是简单的垂直搜索栏....
public class SimpleVerticalSeekBar extends SeekBar {
public SimpleVerticalSeekBar(Context context) {
super(context);
}
public SimpleVerticalSeekBar(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public SimpleVerticalSeekBar(Context context, AttributeSet attrs) {
super(context, attrs);
}
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(h, w, oldh, oldw);
}
@Override
protected synchronized void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(heightMeasureSpec, widthMeasureSpec);
setMeasuredDimension(getMeasuredHeight(), getMeasuredWidth());
}
protected void onDraw(Canvas c) {
c.rotate(-90);
c.translate(-getHeight(), 0);
super.onDraw(c);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
if (!isEnabled()) {
return false;
}
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
case MotionEvent.ACTION_MOVE:
case MotionEvent.ACTION_UP:
setProgress(getMax() - (int) (getMax() * event.getY() / getHeight()));
onSizeChanged(getWidth(), getHeight(), 0, 0);
break;
case MotionEvent.ACTION_CANCEL:
break;
}
return true;
}
}
答案 2 :(得分:0)
我认为你的意思是SeekBar。这是Android的JSlider。