/ime/latinime/res/layout/tutorial_2_directional_pad.xml
XML | 56 lines | 56 code | 0 blank | 0 comment | 0 complexity | 9c4bfd3c3393b01ee518023bc75ebcca MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 android:orientation="vertical"> 7 <LinearLayout 8 android:layout_width="match_parent" 9 android:layout_height="0dp" 10 android:layout_gravity="bottom" 11 android:layout_weight="1.0" 12 android:orientation="vertical" 13 android:padding="10dp"> 14 <TextView 15 android:id="@+id/tutorial_title" 16 android:layout_width="match_parent" 17 android:layout_height="wrap_content" 18 android:text="@string/tutorial_2_title" 19 android:textAppearance="@android:style/TextAppearance.Medium" /> 20 <LinearLayout 21 android:layout_width="match_parent" 22 android:layout_height="0dp" 23 android:layout_weight="1.0" 24 android:layout_margin="10dp" 25 android:orientation="horizontal"> 26 <com.googlecode.eyesfree.inputmethod.latin.tutorial.ContentButton 27 android:id="@+id/tutorial_2_first" 28 android:layout_width="wrap_content" 29 android:layout_height="wrap_content" 30 android:text="@string/tutorial_2_first" /> 31 <com.googlecode.eyesfree.inputmethod.latin.tutorial.ContentButton 32 android:id="@+id/tutorial_2_second" 33 android:layout_width="wrap_content" 34 android:layout_height="wrap_content" 35 android:text="@string/tutorial_2_second" /> 36 <com.googlecode.eyesfree.inputmethod.latin.tutorial.ContentButton 37 android:id="@+id/tutorial_2_third" 38 android:layout_width="wrap_content" 39 android:layout_height="wrap_content" 40 android:text="@string/tutorial_2_third" /> 41 </LinearLayout> 42 <ViewAnimator 43 android:id="@+id/tutorial_instructions" 44 android:layout_width="match_parent" 45 android:layout_height="wrap_content" 46 android:inAnimation="@android:anim/slide_in_left" 47 android:outAnimation="@android:anim/slide_out_right" 48 android:background="@drawable/dialog" 49 android:contentDescription="@string/tutorial_instructions" 50 android:onClick="onClick" /> 51 </LinearLayout> 52 <include 53 android:layout_width="match_parent" 54 android:layout_height="wrap_content" 55 layout="@layout/tutorial_navigation_elem" /> 56</LinearLayout>