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.CrossProcessAction style="@style/Effect">
     22         <ImageView
     23             style="@style/EffectIcon"
     24             android:src="@drawable/photoeditor_effect_crossprocess"/>
     25         <TextView
     26             android:id="@+id/effect_label"
     27             android:text="@string/crossprocess"
     28             style="@style/EffectLabel"/>
     29     </com.android.gallery3d.photoeditor.actions.CrossProcessAction>
     30     <com.android.gallery3d.photoeditor.actions.PosterizeAction style="@style/Effect">
     31         <ImageView
     32             style="@style/EffectIcon"
     33             android:src="@drawable/photoeditor_effect_posterize"/>
     34         <TextView
     35             android:id="@+id/effect_label"
     36             android:text="@string/posterize"
     37             style="@style/EffectLabel"/>
     38     </com.android.gallery3d.photoeditor.actions.PosterizeAction>
     39     <com.android.gallery3d.photoeditor.actions.LomoishAction style="@style/Effect">
     40         <ImageView
     41             style="@style/EffectIcon"
     42             android:src="@drawable/photoeditor_effect_lomoish"/>
     43         <TextView
     44             android:id="@+id/effect_label"
     45             android:text="@string/lomoish"
     46             style="@style/EffectLabel"/>
     47     </com.android.gallery3d.photoeditor.actions.LomoishAction>
     48     <com.android.gallery3d.photoeditor.actions.DocumentaryAction style="@style/Effect">
     49         <ImageView
     50             style="@style/EffectIcon"
     51             android:src="@drawable/photoeditor_effect_documentary"/>
     52         <TextView
     53             android:id="@+id/effect_label"
     54             android:text="@string/documentary"
     55             style="@style/EffectLabel"/>
     56     </com.android.gallery3d.photoeditor.actions.DocumentaryAction>
     57     <com.android.gallery3d.photoeditor.actions.VignetteAction style="@style/Effect">
     58         <ImageView
     59             style="@style/EffectIcon"
     60             android:src="@drawable/photoeditor_effect_vignette"/>
     61         <TextView
     62             android:id="@+id/effect_label"
     63             android:text="@string/vignette"
     64             style="@style/EffectLabel"/>
     65     </com.android.gallery3d.photoeditor.actions.VignetteAction>
     66     <com.android.gallery3d.photoeditor.actions.GrainAction style="@style/Effect">
     67         <ImageView
     68             style="@style/EffectIcon"
     69             android:src="@drawable/photoeditor_effect_grain"/>
     70         <TextView
     71             android:id="@+id/effect_label"
     72             android:text="@string/grain"
     73             style="@style/EffectLabel"/>
     74     </com.android.gallery3d.photoeditor.actions.GrainAction>
     75     <com.android.gallery3d.photoeditor.actions.FisheyeAction style="@style/Effect">
     76         <ImageView
     77             style="@style/EffectIcon"
     78             android:src="@drawable/photoeditor_effect_fisheye"/>
     79         <TextView
     80             android:id="@+id/effect_label"
     81             android:text="@string/fisheye"
     82             style="@style/EffectLabel"/>
     83     </com.android.gallery3d.photoeditor.actions.FisheyeAction>
     84 
     85 </LinearLayout>
     86