0

我用下面的代码创建了一个“标准”垂直 SeekBar(在 SO 上多次发布)。

package com.plainfieldworks.nofiseq;

import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.SeekBar;

public class VerticalSeekBar extends SeekBar{

    public VerticalSeekBar(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        // TODO Auto-generated constructor stub
    }

    public VerticalSeekBar(Context context, AttributeSet attrs) {
        super(context, attrs);
        // TODO Auto-generated constructor stub
    }   

    public VerticalSeekBar(Context context) {
        super(context);
        // TODO Auto-generated constructor stub
    }

    @Override
    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;
    }   

}

现在我想在我看来使用其中的 6 个。如果我只是使用 RelativeLayout 将它们彼此相邻放置,一切都很好(不能发布图像,缺乏声誉......)。

但是我希望它们水平地均匀分布在视图中,如果我在布局 XML 中将它们添加为 LinearLayout 的子级并为每个设置权重为 1,progressDrawable(我认为它是 - “条形图”)将填充整个视图宽度只有一点填充,拇指将放在左侧。

现在我明白为什么会发生这种情况,但我不知道如何解决它。即我怎样才能保持默认比例并仍然在视图中均匀分布 SeekBars,以每个视图中的 progressDrawable 和 thumb 为中心?

一般来说,我是 android 和 Java 开发的新手,所以请耐心等待。我希望我设法解释了这个问题。

给我胖乎乎的 SeekBars 的 XML 布局如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:background="@color/cream"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    tools:context=".EditInst"
    android:padding="2dp">

    <LinearLayout android:id="@+id/header"
        android:background="#ffffbc40"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="2dp">

        <TextView android:id="@+id/instTxt"
            android:textIsSelectable="false"
            android:textColor="#ff000000"
            android:textSize="18sp"
            android:textStyle="bold"
            android:layout_height="wrap_content"
            android:layout_width="fill_parent"/>         

    </LinearLayout>
    <LinearLayout android:id="@+id/SeekBars"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/header">  

        <com.plainfieldworks.nofiseq.VerticalSeekBar android:id="@+id/f0SeekBar" android:padding="10dp" android:layout_width="0dp" android:layout_weight="1" android:layout_height="fill_parent"/>
        <com.plainfieldworks.nofiseq.VerticalSeekBar android:id="@+id/f1SeekBar" android:padding="10dp" android:layout_width="0dp" android:layout_weight="1" android:layout_height="fill_parent"/>
        <com.plainfieldworks.nofiseq.VerticalSeekBar android:id="@+id/f2SeekBar" android:padding="10dp" android:layout_width="0dp" android:layout_weight="1" android:layout_height="fill_parent"/>
        <com.plainfieldworks.nofiseq.VerticalSeekBar android:id="@+id/cSeekBar" android:padding="10dp" android:layout_width="0dp" android:layout_weight="1" android:layout_height="fill_parent"/>
        <com.plainfieldworks.nofiseq.VerticalSeekBar android:id="@+id/sSeekBar" android:padding="10dp" android:layout_width="0dp" android:layout_weight="1" android:layout_height="fill_parent"/>
        <com.plainfieldworks.nofiseq.VerticalSeekBar android:id="@+id/dSeekBar" android:padding="10dp" android:layout_width="0dp" android:layout_weight="1" android:layout_height="fill_parent"/>

    </LinearLayout>

</RelativeLayout>
4

1 回答 1

0

最直接的方法可能是在两者之间简单地添加另一层。您可以FrameLayout在当前 SeekBar 所在的位置使用类似 a 的东西,这样您就有了“chubby FrameLayouts”,然后在每个这些FrameLayouts 中放置一个 SeekBar。

于 2013-03-13T20:59:05.637 回答