Aparece una advertencia que dice: "Nested weights are bad for performance"
. Literalmente copié este código de otro diseño, pero en este da un error y en el otro no.peso anidado en diseño lineal
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/listWeighings_weighing"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="5dp"
android:layout_weight="1"
android:background="#000000" >
</ListView>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/btnInsertMutation_weighing"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="50"
android:text="Mutatie invoeren" />
<Button
android:id="@+id/btnExecuteWeighing_weighing"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="50"
android:text="weging uitvoeren" />
</LinearLayout>
</LinearLayout>
Apuesto a que es un error estúpido, pero ¿alguien puede señalar lo que estoy haciendo mal?
¿cuál es el problema? – njzk2
¿En qué fila obtiene este error? –
El diseño que publicó es correcto. No creo que haya un error en eso. Si Eclipse aún dice que hay uno, intente limpiar el proyecto. –