PercentFrameLayout:您必须提供layout_width属性

时间:2016-01-21 18:01:47

标签: android android-layout android-percent-library android-percent-layout

我尝试使用PercentFrameLayout,但收到此错误消息:

Binary XML file line #: You must supply a layout_width attribute.

这是我使用的xml:

<android.support.percent.PercentFrameLayout
    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">

    <ImageView
        app:layout_heightPercent="50%"
        app:layout_marginLeftPercent="25%"
        app:layout_marginTopPercent="25%"
        app:layout_widthPercent="50%"/>
</android.support.percent.PercentFrameLayout>

这是一个错误还是我的错误?

1 个答案:

答案 0 :(得分:4)

由于XML布局规范,仍然需要layout_widthlayout_height属性,但在PercentFrameLayoutPercentRelativeLayout中实际上会忽略这些属性。

您只需将值设置为0dpwrap_content

<ImageView
    android:layout_height="0dp"
    android:layout_width="0dp"
    app:layout_heightPercent="50%"
    app:layout_marginLeftPercent="25%"
    app:layout_marginTopPercent="25%"
    app:layout_widthPercent="50%" />

这与标准LinearLayoutlayout_weight的使用类似,您必须指定layout_width