Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2013 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 
     17 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     18     android:layout_width="match_parent"
     19     android:layout_height="match_parent"
     20     android:orientation="vertical">
     21     <TextView
     22         android:layout_width="wrap_content"
     23         android:layout_height="wrap_content"
     24         android:textColor="#FFFFFFFF"
     25         android:textSize="16sp"
     26         android:textStyle="bold"
     27         android:text="@string/rotation_animation_description"
     28         />
     29     <CheckBox
     30         android:id="@+id/windowFullscreen"
     31         android:layout_width="wrap_content"
     32         android:layout_height="wrap_content"
     33         android:layout_marginTop="10dp"
     34         android:text="@string/rotation_animation_fullscreen"
     35         />
     36     <LinearLayout
     37         android:layout_width="match_parent"
     38         android:layout_height="wrap_content"
     39         android:layout_marginTop="10dp"
     40         android:orientation="vertical"
     41         >
     42         <TextView
     43             android:layout_width="wrap_content"
     44             android:layout_height="wrap_content"
     45             android:textColor="#FFFFFFFF"
     46             android:textSize="16sp"
     47             android:textStyle="bold"
     48             android:text="@string/rotation_animation_choices"
     49             />
     50         <RadioGroup
     51             android:id="@+id/rotation_radio_group"
     52             android:layout_width="match_parent"
     53             android:layout_height="wrap_content"
     54             android:orientation="horizontal"
     55             android:checkedButton="@+id/rotation_anim_selection"
     56             >
     57             <RadioButton
     58                 android:id="@+id/rotate"
     59                 android:checked="true"
     60                 android:text="@string/rotation_animation_rotate"
     61                 />
     62             <RadioButton
     63                 android:id="@+id/crossfade"
     64                 android:layout_marginStart="6dp"
     65                 android:text="@string/rotation_animation_crossfade"
     66                 />
     67             <RadioButton
     68                 android:id="@+id/jumpcut"
     69                 android:layout_marginStart="6dp"
     70                 android:text="@string/rotation_animation_jumpcut"
     71                 />
     72         </RadioGroup>
     73     </LinearLayout>
     74 </LinearLayout>
     75