1

我的自定义视图组类存在布局问题。

我在构造函数中调用 init()。在我的 init() 函数中,我从一个 xml 文件中扩充了视图组布局,该文件包含一个 LinearLayout,我在其中添加了几个其他视图。

我正在使用垫片(查看 layout_width="0" 和 layout_weight="1")来平均分配项目。

问题出在这里:当我添加孩子时,布局仍然没有定义任何宽度。所以垫片的大小都是 0,实际上不会平均放置“line_dot”项目。我怎样才能以某种方式更新它们的大小?

public class SliderSwitch extends FrameLayout {

...
    public SliderSwitch(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context);
    }

    private void init(Context context)
    {
        LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        inflater.inflate(R.layout.slider_switch,this);


        sliderLayout = (LinearLayout) findViewById(R.id.sliderLayout);
        labelLayout = (LinearLayout) findViewById(R.id.labelLayout);


        // add one spacer
        View spacer = (View) inflate(context,R.layout.spacer, null);
        sliderLayout.addView(spacer);

        // setup the view depending on how many elements there are
        for (int i=1;i<numberOfElements-1;i++) {

            ImageView lineDot = (ImageView) inflater.inflate(R.layout.slider_switch_line_dot, null);
            sliderLayout.addView(lineDot);

            View spacer = (View) inflate(context,R.layout.spacer, null);
            sliderLayout.addView(spacer);
        }

    }
... 
}

这是垫片的 xml 文件:

<View
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_weight="1" />

这是我的视图组布局

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mainLayout"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:orientation="vertical">

    <RelativeLayout
        android:id="@+id/relLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="3dp"
            android:orientation="horizontal" >

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/left_bg" />

            <LinearLayout
                android:id="@+id/sliderLayout"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="@drawable/middle_bg"
                android:gravity="center"
                android:orientation="horizontal" >

               <!-- <include layout="@layout/spacer"/> -->

            </LinearLayout>

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/right_bg" />
        </LinearLayout>

        <ImageButton
            android:id="@+id/sliderKnob"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginLeft="0dp"
            android:background="@null"
            android:src="@drawable/knob" />
    </RelativeLayout>

</LinearLayout>
4

2 回答 2

2

我现在找到了解决方案。您必须再次在代码中设置 LayoutParams(即使它们已经在 xml 文件中定义),然后一切都整齐地排列,它应该如何。似乎是一个错误。但是这个解决方案有效:

    // add one spacer
    View spacer = (View) inflate(context,R.layout.spacer, null);
    spacer.setLayoutParams(new LinearLayout.LayoutParams(1,LayoutParams.WRAP_CONTENT,1.0F));
    sliderLayout.addView(spacer);

    // setup the view depending on how many elements there are

    for (int i=1;i<numberOfElements-1;i++) {

        ImageView lineDot = (ImageView) inflater.inflate(R.layout.slider_switch_line_dot, null);

        sliderLayout.addView(lineDot);

        spacer = (View) inflate(context,R.layout.spacer, null);
        spacer.setLayoutParams(new LinearLayout.LayoutParams(1,LayoutParams.WRAP_CONTENT,1.0F));
        sliderLayout.addView(spacer);
    }
于 2012-12-09T13:21:07.360 回答
0

您可以在onSizeChanged回调上调用 init() 。请记住设置并保留一个标志以避免调用它两次,因为此回调可能会运行多次。

于 2012-12-06T00:08:38.643 回答