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 17 <com.android.photoeditor.EffectsGroup 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 xmlns:photoeditor="http://schemas.android.com/apk/res/com.android.photoeditor" 20 style="@style/EffectsBarLinearLayout"> 21 22 <FrameLayout android:id="@+id/group_header" style="@style/GroupHeader"> 23 24 <TextView android:text="@string/exposure_group" style="@style/GroupLabel"/> 25 <ImageView android:id="@+id/group_arrow" style="@style/GroupArrow"/> 26 27 </FrameLayout> 28 29 <LinearLayout android:id="@+id/grouped_effects" style="@style/GroupContent"> 30 31 <LinearLayout style="@style/Effect" android:id="@+id/filllight_effect"> 32 <com.android.photoeditor.IconIndicator 33 android:id="@+id/effect_button" 34 style="@style/EffectIcon" 35 photoeditor:modes="@array/filllight_modes" 36 photoeditor:icons="@array/filllight_icons"/> 37 <TextView 38 android:id="@+id/effect_label" 39 android:text="@string/filllight" 40 style="@style/EffectLabel"/> 41 </LinearLayout> 42 <LinearLayout style="@style/Effect" android:id="@+id/highlight_effect"> 43 <com.android.photoeditor.IconIndicator 44 android:id="@+id/effect_button" 45 style="@style/EffectIcon" 46 photoeditor:modes="@array/highlight_modes" 47 photoeditor:icons="@array/highlight_icons"/> 48 <TextView 49 android:id="@+id/effect_label" 50 android:text="@string/highlight" 51 style="@style/EffectLabel"/> 52 </LinearLayout> 53 <LinearLayout style="@style/Effect" android:id="@+id/shadow_effect"> 54 <com.android.photoeditor.IconIndicator 55 android:id="@+id/effect_button" 56 style="@style/EffectIcon" 57 photoeditor:modes="@array/shadow_modes" 58 photoeditor:icons="@array/shadow_icons"/> 59 <TextView 60 android:id="@+id/effect_label" 61 android:text="@string/shadow" 62 style="@style/EffectLabel"/> 63 </LinearLayout> 64 <LinearLayout style="@style/Effect" android:id="@+id/autofix_effect"> 65 <com.android.photoeditor.IconIndicator 66 android:id="@+id/effect_button" 67 style="@style/EffectIcon" 68 photoeditor:modes="@array/autofix_modes" 69 photoeditor:icons="@array/autofix_icons"/> 70 <TextView 71 android:id="@+id/effect_label" 72 android:text="@string/autofix" 73 style="@style/EffectLabel"/> 74 </LinearLayout> 75 76 </LinearLayout> 77 </com.android.photoeditor.EffectsGroup> 78