1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2010 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 --> 16 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 17 android:orientation="vertical" 18 android:layout_width="match_parent" 19 android:layout_height="match_parent" 20 android:id="@+id/container" 21 > 22 <LinearLayout 23 android:orientation="horizontal" 24 android:layout_width="match_parent" 25 android:layout_height="wrap_content" 26 > 27 <Button 28 android:layout_width="wrap_content" 29 android:layout_height="wrap_content" 30 android:text="Play" 31 android:id="@+id/startButton" 32 /> 33 <Button 34 android:layout_width="wrap_content" 35 android:layout_height="wrap_content" 36 android:text="Cancel" 37 android:id="@+id/cancelButton" 38 /> 39 <Button 40 android:layout_width="wrap_content" 41 android:layout_height="wrap_content" 42 android:text="End" 43 android:id="@+id/endButton" 44 /> 45 <CheckBox 46 android:layout_width="wrap_content" 47 android:layout_height="wrap_content" 48 android:text="End Immediately" 49 android:id="@+id/endCB" 50 /> 51 </LinearLayout> 52 <LinearLayout 53 android:orientation="horizontal" 54 android:layout_width="match_parent" 55 android:layout_height="wrap_content" 56 > 57 <TextView 58 android:layout_width="wrap_content" 59 android:layout_height="wrap_content" 60 android:text="Sequencer Events: " 61 /> 62 <TextView 63 android:layout_width="wrap_content" 64 android:layout_height="wrap_content" 65 android:text="Start " 66 android:id="@+id/startText" 67 /> 68 <TextView 69 android:layout_width="wrap_content" 70 android:layout_height="wrap_content" 71 android:text="Repeat " 72 android:id="@+id/repeatText" 73 /> 74 <TextView 75 android:layout_width="wrap_content" 76 android:layout_height="wrap_content" 77 android:text="Cancel " 78 android:id="@+id/cancelText" 79 /> 80 <TextView 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:text="End" 84 android:id="@+id/endText" 85 /> 86 </LinearLayout> 87 <LinearLayout 88 android:orientation="horizontal" 89 android:layout_width="match_parent" 90 android:layout_height="wrap_content" 91 > 92 <TextView 93 android:layout_width="wrap_content" 94 android:layout_height="wrap_content" 95 android:text="Animator Events: " 96 /> 97 <TextView 98 android:layout_width="wrap_content" 99 android:layout_height="wrap_content" 100 android:text="Start " 101 android:id="@+id/startTextAnimator" 102 /> 103 <TextView 104 android:layout_width="wrap_content" 105 android:layout_height="wrap_content" 106 android:text="Repeat " 107 android:id="@+id/repeatTextAnimator" 108 /> 109 <TextView 110 android:layout_width="wrap_content" 111 android:layout_height="wrap_content" 112 android:text="Cancel " 113 android:id="@+id/cancelTextAnimator" 114 /> 115 <TextView 116 android:layout_width="wrap_content" 117 android:layout_height="wrap_content" 118 android:text="End" 119 android:id="@+id/endTextAnimator" 120 /> 121 </LinearLayout> 122 </LinearLayout> 123