我要做的是:
我想在android应用程序中实现一个SeekBar,在这个SeekBar上我还想显示max和min值。最小值始终为0,但最大值取决于剪辑长度。(例如:0---180)
是否有方法显示用户移动SeekBar时选择的值(在搜索栏上)?
我不知道如何在androidSeekBar中实现这一点,因为似乎没有任何显示值的选项。

最佳答案

我想在android应用程序中实现seekbar。但在
seekbar我还想显示最大值和最小值。最小值
将始终为0,但最大值取决于剪辑长度。(举例:
0—180)
是否有方法显示当用户>移动seekBar时选择的值(在搜索栏上)?
如果您希望这些值位于SeekBar之上,那么扩展SeekBar类并重写onDraw方法。调用super.onDraw(canvas)之后,您可以绘制自己的内容,例如SeekBar开始和结束处的最小/最大值或当前进度。做一些看起来不错的东西(在所有不同的外观上)会有点困难,因为你需要仔细计算你在哪里以及如何绘制文本。
一个更简单的方法是让一个自定义组件在其左侧和右侧用一个Seekbars包装SeekBar(对于当前进度,下面有一个可选的TextView),并用最小/最大值设置那些值(即使最大值是通过编程设置的,maxTextView可用于“跟踪”这些更改)。通过了解TextView的宽度和当前进度,可以方便地计算和更新进度。
第二种情况的一个小例子:

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" />

当前文本的偏移量往往超过它应该偏移的范围,需要额外的工作才能将其放在seek句柄下。

关于android - 如何在SeekBar上显示最大值和最小值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15383623/

10-12 04:13