mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-11-22 23:33:11 +01:00
148bed769a
This entirely changes the implementation of the bottom row in the emoji pane.
15 lines
345 B
Java
15 lines
345 B
Java
package juloo.keyboard2;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
|
|
public class EmojiBottomRow extends Keyboard2View
|
|
{
|
|
public EmojiBottomRow(Context context, AttributeSet attrs)
|
|
{
|
|
super(context, attrs);
|
|
KeyboardData kw = KeyboardData.load(getResources(), R.xml.emoji_bottom_row);
|
|
setKeyboard(kw);
|
|
}
|
|
}
|