我嘗試使用PercentFrameLayout但我收到此錯誤信息:PercentFrameLayout:必須提供layout_width屬性
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>
這是一個錯誤或這是我的錯誤嗎?
這看起來和http://developer.android.com/reference/android/support/percent/PercentFrameLayout.html中的參數不同,因爲我認爲它是正確的。你確定這些是對問題的看法嗎?如果您刪除這些視圖,您的佈局是否正確加載? –
@CoryCharlton是的,它來自文檔,是的,它是與問題的看法。 Android Studio也強調它也是一個問題。 –