/ime/latinime/res/layout/tutorial_2_directional_pad.xml
http://eyes-free.googlecode.com/ · XML · 56 lines · 56 code · 0 blank · 0 comment · 0 complexity · 9c4bfd3c3393b01ee518023bc75ebcca MD5 · raw file
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_gravity="bottom"
- android:layout_weight="1.0"
- android:orientation="vertical"
- android:padding="10dp">
- <TextView
- android:id="@+id/tutorial_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/tutorial_2_title"
- android:textAppearance="@android:style/TextAppearance.Medium" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1.0"
- android:layout_margin="10dp"
- android:orientation="horizontal">
- <com.googlecode.eyesfree.inputmethod.latin.tutorial.ContentButton
- android:id="@+id/tutorial_2_first"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/tutorial_2_first" />
- <com.googlecode.eyesfree.inputmethod.latin.tutorial.ContentButton
- android:id="@+id/tutorial_2_second"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/tutorial_2_second" />
- <com.googlecode.eyesfree.inputmethod.latin.tutorial.ContentButton
- android:id="@+id/tutorial_2_third"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/tutorial_2_third" />
- </LinearLayout>
- <ViewAnimator
- android:id="@+id/tutorial_instructions"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:inAnimation="@android:anim/slide_in_left"
- android:outAnimation="@android:anim/slide_out_right"
- android:background="@drawable/dialog"
- android:contentDescription="@string/tutorial_instructions"
- android:onClick="onClick" />
- </LinearLayout>
- <include
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- layout="@layout/tutorial_navigation_elem" />
- </LinearLayout>