2021-01-16 21:57:51 +01:00
|
|
|
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];
|
2021-04-18 23:28:49 +02:00
|
|
|
add_group(i, first.symbol);
|
2021-01-16 21:57:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void add_group(int id, String symbol)
|
|
|
|
{
|
|
|
|
addView(new EmojiTypeButton(getContext(), id, symbol), new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT, 1.f));
|
|
|
|
}
|
|
|
|
}
|