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>
これはバグですか、それとも私のミスですか?