diff options
| author | Jules Aguillon | 2024-12-15 11:57:01 +0100 |
|---|---|---|
| committer | Jules Aguillon | 2024-12-15 11:57:01 +0100 |
| commit | f9c92007db136eefd407198054500cc10ee3cc4b (patch) | |
| tree | 4ca49c200fee96ea8e3d6fea274997e36989bd35 /res/layout | |
| parent | 908bb93f82611350411b5bb9790562f9f10a4b79 (diff) | |
| download | unexpected-keyboard-f9c92007db136eefd407198054500cc10ee3cc4b.tar.gz unexpected-keyboard-f9c92007db136eefd407198054500cc10ee3cc4b.zip | |
launcher: Show output of animated gesture
Diffstat (limited to 'res/layout')
| -rw-r--r-- | res/layout/launcher_activity.xml | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/res/layout/launcher_activity.xml b/res/layout/launcher_activity.xml index 5ab9384..617c9ee 100644 --- a/res/layout/launcher_activity.xml +++ b/res/layout/launcher_activity.xml @@ -4,9 +4,18 @@ <TextView style="@style/paragraph" android:text="@string/launcher_description"/> <Button style="@style/paragraph" android:text="@string/launcher_button_imesettings" android:onClick="launch_imesettings" android:layout_width="wrap_content"/> <Button style="@style/paragraph" android:text="@string/launcher_button_imepicker" android:onClick="launch_imepicker" android:layout_width="wrap_content"/> - <ImageView style="@style/anim" android:id="@+id/launcher_anim_swipe" android:background="@drawable/doc_key_u" android:src="@drawable/doc_anim_swipe"/> - <ImageView style="@style/anim" android:id="@+id/launcher_anim_circle" android:background="@drawable/doc_key_g" android:src="@drawable/doc_anim_circle"/> - <ImageView style="@style/anim" android:id="@+id/launcher_anim_round_trip" android:background="@drawable/doc_key_g" android:src="@drawable/doc_anim_round_trip"/> + <LinearLayout style="@style/anim_box"> + <ImageView style="@style/anim" android:id="@+id/launcher_anim_swipe" android:background="@drawable/doc_key_u" android:src="@drawable/doc_anim_swipe"/> + <TextView style="@style/anim_text" android:text="7"/> + </LinearLayout> + <LinearLayout style="@style/anim_box"> + <ImageView style="@style/anim" android:id="@+id/launcher_anim_circle" android:background="@drawable/doc_key_g" android:src="@drawable/doc_anim_circle"/> + <TextView style="@style/anim_text" android:text="G"/> + </LinearLayout> + <LinearLayout style="@style/anim_box"> + <ImageView style="@style/anim" android:id="@+id/launcher_anim_round_trip" android:background="@drawable/doc_key_g" android:src="@drawable/doc_anim_round_trip"/> + <TextView style="@style/anim_text" android:text="–"/> + </LinearLayout> <TextView android:id="@+id/launcher_tryhere_text" style="@style/paragraph" android:text="@string/launcher_tryhere"/> <EditText android:id="@+id/launcher_tryhere_area" style="@style/paragraph" android:inputType="text" android:hint="@string/launcher_tryhere_hint" android:importantForAutofill="no"/> <TextView style="@style/paragraph" android:text="@string/launcher_sourcecode"/> |
