forked from extern/Unexpected-Keyboard
a165a0ab2e
Take the list from https://unicode.org/Public/emoji/13.1/emoji-test.txt Also change the list of groups, from the same source.
27 lines
782 B
Java
27 lines
782 B
Java
package juloo.keyboard2;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.LinearLayout.LayoutParams;
|
|
|
|
public class EmojiGroupButtonsBar extends LinearLayout
|
|
{
|
|
public EmojiGroupButtonsBar(Context context, AttributeSet attrs)
|
|
{
|
|
super(context, attrs);
|
|
Emoji.init(context.getResources());
|
|
add_group(EmojiGridView.GROUP_LAST_USE, "\uD83D\uDD59");
|
|
for (int i = 0; i < Emoji.num_groups; i++)
|
|
{
|
|
Emoji first = Emoji.getEmojisByGroup(i)[0];
|
|
add_group(i, first.getSymbol(0));
|
|
}
|
|
}
|
|
|
|
private void add_group(int id, String symbol)
|
|
{
|
|
addView(new EmojiTypeButton(getContext(), id, symbol), new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT, 1.f));
|
|
}
|
|
}
|