diff options
Diffstat (limited to 'tests/TransitionTests/res/layout/fading_test.xml')
-rw-r--r-- | tests/TransitionTests/res/layout/fading_test.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/TransitionTests/res/layout/fading_test.xml b/tests/TransitionTests/res/layout/fading_test.xml new file mode 100644 index 0000000..3728b5e --- /dev/null +++ b/tests/TransitionTests/res/layout/fading_test.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8"?> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:id="@+id/container" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <Button + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/submit" + android:onClick="sendMessage" + android:id="@+id/sceneSwitchButton"/> + <Button + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/removingButton" + android:id="@+id/removingButton"/> + <Button + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/invisibleButton" + android:id="@+id/invisibleButton"/> + <Button + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/goneButton" + android:id="@+id/goneButton"/> + + <Button + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:id="@+id/button" + android:text="@string/button"/> + +</LinearLayout>
\ No newline at end of file |