/ocr/ocrservice/res/layout/language.xml
XML | 66 lines | 52 code | 0 blank | 14 comment | 0 complexity | f481222196b0a10228eb308db10c2139 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2011 Google Inc. 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<RelativeLayout 17 xmlns:android="http://schemas.android.com/apk/res/android" 18 android:layout_width="fill_parent" 19 android:layout_height="wrap_content" 20 android:padding="5sp"> 21 <TextView 22 android:id="@+id/text_iso6392" 23 android:layout_height="wrap_content" 24 android:text="eng" 25 android:textAppearance="?android:attr/textAppearanceLarge" 26 android:textColor="?android:attr/textColorPrimary" 27 android:shadowRadius="2" 28 android:layout_centerInParent="true" 29 android:layout_alignParentLeft="true" 30 android:layout_marginRight="5sp" 31 android:layout_width="50sp" /> 32 <LinearLayout 33 android:id="@+id/box_details" 34 android:orientation="vertical" 35 android:layout_width="wrap_content" 36 android:layout_height="wrap_content" 37 android:layout_toRightOf="@id/text_iso6392" 38 android:layout_centerInParent="true"> 39 <TextView 40 android:id="@+id/text_name" 41 android:layout_width="fill_parent" 42 android:layout_height="wrap_content" 43 android:text="English" 44 android:textAppearance="?android:attr/textAppearanceMedium" 45 android:textColor="?android:attr/textColorPrimary" 46 android:shadowRadius="2" /> 47 <TextView 48 android:id="@+id/text_size" 49 android:layout_width="fill_parent" 50 android:layout_height="wrap_content" 51 android:text="722.2 KB" 52 android:textAppearance="?android:attr/textAppearanceSmall" 53 android:textColor="?android:attr/textColorSecondary" 54 android:shadowRadius="2" /> 55 </LinearLayout> 56 <TextView 57 android:id="@+id/text_installed" 58 android:layout_width="wrap_content" 59 android:layout_height="wrap_content" 60 android:text="Installed" 61 android:textAppearance="?android:attr/textAppearanceSmall" 62 android:textColor="?android:attr/textColorSecondary" 63 android:shadowRadius="2" 64 android:layout_alignParentRight="true" 65 android:layout_centerInParent="true" /> 66</RelativeLayout>