Unexpected-Keyboard/srcs/juloo.keyboard2/EmojiBottomRow.java
Jules Aguillon 148bed769a Add left/right slider to the emoji pane
This entirely changes the implementation of the bottom row in the emoji
pane.
2023-10-28 20:14:32 +02:00

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);
}
}