0

我已经用唯一的onMeasure()覆盖定义了我的自定义视图:

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    setMeasuredDimension((int)(iwidth * cellWidth), (int)(iheight * cellHeight));
}

使用的变量是类成员,由一个名为setStep().

我用按钮改变它:

button.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            float step = hidingPanel.getStep();

            step += stepstep;

            hidingPanel.setStep(step);
            hidingPanel.invalidate();

            setTextButton();
        }

    });

布局如下

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<com.inthemoon.incubation.HidingPanel
    android:id="@+id/hidingPanel"
    android:background="@android:color/darker_gray"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_marginTop="0dp"
    android:layout_marginLeft="0dp"
    />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentBottom="true"
    android:background="@android:color/black" 
    >
    <Button
        android:id="@+id/button"
        android:layout_width="200dp"
        android:layout_height="100dp" 
        />    
</LinearLayout>



</RelativeLayout>

HidingPanel我的自定义视图在哪里。

我原以为我的观点会在按下按钮时增长,但事实并非如此。我发现 onMeasure() 在开始时只调用了几次,当维度为零时。如何在按钮点击后促进测量?

4

1 回答 1

1

您需要调用 requestLayout(); 在视图的父级上。

于 2012-05-17T19:21:26.653 回答