2

我正在尝试做的事情:

  1. 我想SeekBar在 Android 应用程序中实现 a 并且SeekBar我还想显示最大值和最小值。最小值始终为 0,但最大值取决于剪辑长度。(例:0---180)

  2. 有没有办法显示用户移动时选择的值(在搜索栏本身上)SeekBar

我无法弄清楚如何与 android 一起实现这一点SeekBar,因为似乎没有任何选项可用于显示值。

4

1 回答 1

5

我想在 Android 应用程序中实现搜索栏。但在搜索栏上,我还想显示最大值和最小值。最小值始终为 0,但最大值取决于剪辑长度。(例:0---180)

有没有办法显示用户>移动搜索栏时选择的值(在搜索栏本身上)?

如果您希望将这些值放在顶部SeekBar则扩展SeekBar该类并覆盖该onDraw方法。调用后,您可以绘制自己的东西,例如开始和结束或当前进度super.onDraw(canvas)的最小/最大值。SeekBar制作看起来不错的东西(在所有不同的外观Seekbars上)会有点困难,因为您需要仔细计算绘制文本的位置和方式。

一种更简单的方法是制作一个自定义组件,在其左侧和右侧SeekBar用 a包装(对于当前进度,下面有一个可选的)并使用最小值/最大值设置它们(即使以编程方式设置最大值,最大值可以“遵循”这些变化)。知道进度的宽度和当前进度,可以轻松计算和更新进度。TextViewTextViewTextViewSeekBar

第二种情况的一个小例子:

public static class SeekBarWithValues extends RelativeLayout {

    private int mMax = 100;
    private TextView mMinText;
    private TextView mMaxText;
    private TextView mCurrentText;
    private SeekBar mSeek;

    public SeekBarWithValues(Context context, AttributeSet attrs) {
        super(context, attrs);
        LayoutInflater.from(getContext()).inflate(
                R.layout.content, this);
        // the minimum value is always 0
        mMinText = (TextView) findViewById(R.id.minValue);
        mMinText.setText("0");
        mMaxText = (TextView) findViewById(R.id.maxValue);
        mCurrentText = (TextView) findViewById(R.id.curentValue);
        mSeek = (SeekBar) findViewById(R.id.seekBar);
        mSeek.setMax(100);
        mMaxText.setText(String.valueOf(mSeek.getMax()));
    }

    /**
     * This needs additional work to make the current progress text stay
     * right under the thumb drawable.
     * 
     * @param newProgress
     *            the new progress for which to place the text
     */
    public void updateCurrentText(int newProgress) {
        mCurrentText.setText(String.valueOf(newProgress));
        final int padding = mMinText.getWidth() + mSeek.getPaddingLeft();
        final int totalSeekWidth = mSeek.getWidth();
        final RelativeLayout.LayoutParams lp = (LayoutParams) mCurrentText
                .getLayoutParams();
        final int seekLocation = (mSeek.getProgress() * totalSeekWidth)
                / mMax - mCurrentText.getWidth() / 2;
        lp.leftMargin = seekLocation + padding;
        mCurrentText.setLayoutParams(lp);
    }

    public SeekBar getSeekBar() {
        return mSeek;
    }

    public void updateSeekMaxValue(int newValue) {
        mMax = newValue;
        mMaxText.setText(mMax);
        mSeek.setMax(mMax);
    }

}

内容布局在哪里:

<merge xmlns:android="http://schemas.android.com/apk/res/android" >

<TextView
    android:id="@+id/minValue"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/seekBar"
    android:layout_alignParentLeft="true"
    android:layout_alignTop="@id/seekBar"
    android:gravity="center" />

<TextView
    android:id="@+id/maxValue"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@id/seekBar"
    android:layout_alignParentRight="true"
    android:layout_alignTop="@id/seekBar"
    android:gravity="center" />

<SeekBar
    android:id="@id/seekBar"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toLeftOf="@id/maxValue"
    android:layout_toRightOf="@id/minValue" />

<TextView
    android:id="@+id/curentValue"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/seekBar"
    android:gravity="center" />

当前文本的偏移量往往超出应有的范围,并且需要进行额外的工作才能将其放在搜索句柄的正下方。

于 2013-03-13T11:49:21.920 回答