The logic that canceled underlying animations caused a problem when there were more than one animation in the list (due to removing items from a list that was currently being processed elsewhere). Change-Id: Ie207f340b5d7de4ffcf56a26c05ec394abb80224
20 lines
828 B
XML
20 lines
828 B
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/buttonContainer">
|
|
<Button
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:id="@+id/button"
|
|
android:layout_alignParentRight="true"
|
|
android:text="@string/state2"/>
|
|
<Button
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/button1"
|
|
android:layout_alignLeft="@+id/button"
|
|
android:layout_below="@+id/button"
|
|
android:text="@string/state2"/>
|
|
|
|
</RelativeLayout> |