3

我制作了一个可以正常工作的自定义视图,但是当我将视图放在方法PercentRelativeLayout中时,getHeight()方法返回 0,我没有初始化视图的layout_heightorlayout_width参数,只有app:layout_hieghtPercentand app:layout_widthPercent

即使我设置了layout_height视图高度仍然没有初始化。

当它在 a 中时,我如何获得视图高度PercentRelativeLayout

您可以在下面找到我的 xml 代码:

<android.support.percent.PercentRelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background">

<com.cgt.allridepassengerapp.customviews.DigitEditText
        android:id="@+id/et_verify_code"
        android:layout_marginLeft="@dimen/size_30"
        android:layout_marginRight="@dimen/size_30"
        android:background="@android:color/transparent"
        android:imeOptions="actionDone"
        android:maxLength="5"
        app:layout_heightPercent="10%"
        app:layout_marginTopPercent="43.2%"
        app:layout_widthPercent="84.2%">
        <requestFocus/>
    </com.cgt.allridepassengerapp.customviews.DigitEditText>

    </android.support.percent.PercentRelativeLayout>

onDraw(Context) 方法:

@Override
    protected void onDraw(Canvas canvas)
    {
        getHeight(); // is 0
    }
4

0 回答 0