Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 187a8da2 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android (Google) Code Review
Browse files

Merge "Move CandidateView into input view"

parents 99c908a5 c150acc7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/candidates_container"
    android:orientation="horizontal"
    android:gravity="bottom"
    android:layout_width="match_parent"
+1 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/candidates_container"
    android:orientation="horizontal"
    android:gravity="bottom"
    android:layout_width="match_parent"
+12 −6
Original line number Diff line number Diff line
@@ -18,15 +18,21 @@
*/
-->

<com.android.inputmethod.keyboard.LatinKeyboardView
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
>
    <include
        layout="@layout/candidates" />
    <com.android.inputmethod.keyboard.LatinKeyboardView
        android:id="@+id/latin_keyboard_view"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="0dip"
        android:background="@drawable/keyboard_background"

        latin:keyBackground="@drawable/btn_keyboard_key"
        />
        latin:keyBackground="@drawable/btn_keyboard_key" />
</LinearLayout>
+12 −6
Original line number Diff line number Diff line
@@ -18,15 +18,21 @@
*/
-->

<com.android.inputmethod.keyboard.LatinKeyboardView
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
>
    <include
        layout="@layout/candidates" />
    <com.android.inputmethod.keyboard.LatinKeyboardView
        android:id="@+id/latin_keyboard_view"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="0dip"
        android:background="@android:color/black"

        latin:keyBackground="@drawable/btn_keyboard_key3"
        />
        latin:keyBackground="@drawable/btn_keyboard_key3" />
</LinearLayout>
+12 −6
Original line number Diff line number Diff line
@@ -18,16 +18,22 @@
*/
-->

<com.android.inputmethod.keyboard.LatinKeyboardView
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:latin="http://schemas.android.com/apk/res/com.android.inputmethod.latin"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
>
    <include
        layout="@layout/candidates" />
    <com.android.inputmethod.keyboard.LatinKeyboardView
        android:id="@+id/latin_keyboard_view"
        android:layout_alignParentBottom="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="0dip"
        android:background="@drawable/keyboard_dark_background"

        latin:keyBackground="@drawable/btn_keyboard_key_gingerbread"
        latin:keyLetterStyle="bold"
        />
        latin:keyLetterStyle="bold" />
</LinearLayout>
Loading