0
我正在開發一個應用程序,我想用dimmer switch來控制燈光。我想使用這個控件調暗和充滿光線並獲取相關值。如何在android中創建自定義的seekbar
所以我的問題是哪個控件適合這個需求?
我做了一些研究,並知道Seekbar可以滿足我的要求。但我如何創建像下面的圖像自定義seekbar。
如果有任何其他的方式來實現這一目標,那麼請給我一些建議ideas.Any和指導,將不勝感激。
我正在開發一個應用程序,我想用dimmer switch來控制燈光。我想使用這個控件調暗和充滿光線並獲取相關值。如何在android中創建自定義的seekbar
所以我的問題是哪個控件適合這個需求?
我做了一些研究,並知道Seekbar可以滿足我的要求。但我如何創建像下面的圖像自定義seekbar。
如果有任何其他的方式來實現這一目標,那麼請給我一些建議ideas.Any和指導,將不勝感激。
這個例子在我的應用程序中運行,但修改爲您的需求。
package android.widget;
import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.view.MotionEvent;
public class VerticalSeekBar extends SeekBar {
public VerticalSeekBar(Context context) {
super(context);
}
public VerticalSeekBar(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public VerticalSeekBar(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;
}
}
謝謝,有沒有其他的方式與您聯繫? – juned
連接在聊天列表中 – ckpatel