5

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>

これはバグですか、それとも私のミスですか?

4

1 に答える 1

4

XML レイアウト仕様により、 および 属性は引き続き必要ですが、 または では事実上無視さlayout_widthれます。layout_heightPercentFrameLayoutPercentRelativeLayout

値を0dpまたはに設定するだけですwrap_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%" />

これは、 a も指定する必要がある標準LinearLayoutの使用法に似ています。layout_weightlayout_width

于 2016-01-21T18:17:38.770 に答える