Home | History | Annotate | Download | only in layout
      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 <LinearLayout
     18     xmlns:android="http://schemas.android.com/apk/res/android"
     19     style="@style/EffectsContainer">
     20 
     21     <com.android.gallery3d.photoeditor.actions.FillLightAction style="@style/Effect">
     22         <ImageView
     23             style="@style/EffectIcon"
     24             android:src="@drawable/photoeditor_effect_filllight"/>
     25         <TextView
     26             android:id="@+id/effect_label"
     27             android:text="@string/filllight"
     28             style="@style/EffectLabel"/>
     29     </com.android.gallery3d.photoeditor.actions.FillLightAction>
     30     <com.android.gallery3d.photoeditor.actions.HighlightAction style="@style/Effect">
     31         <ImageView
     32             style="@style/EffectIcon"
     33             android:src="@drawable/photoeditor_effect_highlight"/>
     34         <TextView
     35             android:id="@+id/effect_label"
     36             android:text="@string/highlight"
     37             style="@style/EffectLabel"/>
     38     </com.android.gallery3d.photoeditor.actions.HighlightAction>
     39     <com.android.gallery3d.photoeditor.actions.ShadowAction style="@style/Effect">
     40         <ImageView
     41             style="@style/EffectIcon"
     42             android:src="@drawable/photoeditor_effect_shadow"/>
     43         <TextView
     44             android:id="@+id/effect_label"
     45             android:text="@string/shadow"
     46             style="@style/EffectLabel"/>
     47     </com.android.gallery3d.photoeditor.actions.ShadowAction>
     48     <com.android.gallery3d.photoeditor.actions.AutoFixAction style="@style/Effect">
     49         <ImageView
     50             style="@style/EffectIcon"
     51             android:src="@drawable/photoeditor_effect_autofix"/>
     52         <TextView
     53             android:id="@+id/effect_label"
     54             android:text="@string/autofix"
     55             style="@style/EffectLabel"/>
     56     </com.android.gallery3d.photoeditor.actions.AutoFixAction>
     57 
     58 </LinearLayout>
     59