Hey Leute, ich versteh einfach nicht wo mein Fehler liegt, ich hab nur 3 Elemente auf diesem Layout und definiere ganz genau wo jede zu sein hat. Und jedes mal bekomme ich beim rendern diesen komischen Fehler:
Circular dependencies cannot exist in RelativeLayout
Code
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/headerCarList"
android:layout_marginTop="5dp" >
<ListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/spinChooseCar"
android:layout_alignParentTop="true"
android:divider="@null" >
</ListView>
<Spinner
android:id="@+id/spinChooseCar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/btnAddCar"
android:layout_below="@+id/android:list"
android:layout_centerHorizontal="true" />
<Button
android:id="@+id/btnAddCar"
style="?android:attr/buttonStyleSmall"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_alignParentBottom="true"
android:text="@string/btnAddCar"
android:textSize="12dp" />
</RelativeLayout>
Alles anzeigen