I am planning on making an in-app emoji keyboard, that popups up when the user presses a "+" button.
My inspiration is the emoji keyboard in Chomp SMS.

I have found an open source emoji keyboard at https://github.com/zeuxisoo/android-emoji-keyboard
How do i present this keyboard on top of the system keyboard, without actually selecting it as an input type i.e. when i close the keyboard and click on an EditText, the system keyboard should appear.
Also, do i use a KeyboardView?
When clicking on an emoji, it should appear in the EditText. This can be achieved through an ImageSpan or HTML src i suppose.
The most important question is, when i get the text of the EditText, does it return the actual Unicode value of the emoji, or some other value because of the ImageSpan?
Can someone link me to a list of Unicode values for a complete emoji list?