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

Commit 9eb2acc7 authored by Satoshi Kataoka's avatar Satoshi Kataoka Committed by Android Git Automerger
Browse files

am 6a83a875: am 47462172: Enter -> Alpha keyboard switcher in Emoji palette view

* commit '6a83a875':
  Enter -> Alpha keyboard switcher in Emoji palette view
parents dd53038e 6a83a875
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -101,10 +101,10 @@
            android:layout_weight="0.70"
            android:layout_height="match_parent" />
        <ImageButton
            android:id="@+id/emoji_keyboard_send"
            android:id="@+id/emoji_keyboard_alphabet2"
            android:layout_width="0dip"
            android:layout_weight="0.15"
            android:layout_height="match_parent"
            android:src="@drawable/sym_keyboard_return_holo_dark" />
            android:src="@drawable/ic_ime_switcher_dark" />
    </LinearLayout>
</com.android.inputmethod.keyboard.EmojiPalettesView>
+4 −4
Original line number Diff line number Diff line
@@ -484,10 +484,10 @@ public final class EmojiPalettesView extends LinearLayout implements OnTabChange
        spaceKey.setTag(Constants.CODE_SPACE);
        spaceKey.setOnClickListener(this);
        emojiLp.setKeyProperties(spaceKey);
        final ImageView sendKey = (ImageView)findViewById(R.id.emoji_keyboard_send);
        sendKey.setBackgroundResource(mEmojiFunctionalKeyBackgroundId);
        sendKey.setTag(Constants.CODE_ENTER);
        sendKey.setOnClickListener(this);
        final ImageView alphabetKey2 = (ImageView)findViewById(R.id.emoji_keyboard_alphabet2);
        alphabetKey2.setBackgroundResource(mEmojiFunctionalKeyBackgroundId);
        alphabetKey2.setTag(Constants.CODE_SWITCH_ALPHA_SYMBOL);
        alphabetKey2.setOnClickListener(this);
    }

    @Override