cerco di usare un PercentFrameLayout ma ricevo questo messaggio di errore:PercentFrameLayout: È necessario fornire un attributo layout_width
Binary XML file line #: You must supply a layout_width attribute.
Questo è il xml che uso:
<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>
Si tratta di un bug o è un mio errore?
Questo è esattamente l'esempio di http://developer.android.com/reference/android/support/percent/PercentFrameLayout.html diverso dall'ordine dei parametri, quindi presumo che sia corretto. Sei sicuro che quelle sono le opinioni con il problema? Se rimuovi queste viste il tuo layout viene caricato correttamente? –
@CoryCharlton si è dal doc e sì è la vista con il problema. Android Studio lo mette in evidenza anche come problema. –