在我的应用程序中,我需要一个垂直搜索栏,如下所示:
我不知道如何修改android的默认搜索栏看起来像这样!我也不知道提供这种搜索栏的任何外部第三方库..
我有什么方法可以得到这个!
提前致谢,
答案 0 :(得分:0)
你不要修改它......你创建自己的视图:
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;
}
}
答案 1 :(得分:0)
如果您希望移动搜索栏时背景突出显示,您可以通过覆盖onTouchEvent捕获MotionEvent,并使用背景颜色/图像为布局执行任何操作。顺便说一下,你能更好地解释一下你的意思吗?“我想要一个搜索栏,当搜索栏被移动时,宽度的某些部分也会突出显示”?