0

在我的应用程序中,我需要一个垂直搜索栏,如下所示: 垂直搜索栏

我不知道如何修改android的默认搜索栏看起来像这样!我也不知道任何提供这种搜索栏的外部第三方库..

有什么办法可以得到这个!

提前致谢,

4

2 回答 2

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;
    }
}
于 2012-08-18T21:09:28.250 回答
0

如果您希望在移动搜索栏时突出显示背景,您可以通过覆盖 onTouchEvent 来捕获 MotionEvent,并对布局的背景颜色/图像执行任何您想要的操作。顺便说一句,您能否更好地解释“我想要一个搜索栏,其中在移动搜索栏时也会突出显示部分宽度”的意思?

于 2012-08-19T01:29:46.397 回答