2013-06-28 03:57:27 +00:00
|
|
|
package org.thoughtcrime.securesms.components;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import android.support.v4.view.PagerAdapter;
|
|
|
|
import android.support.v4.view.PagerTabStrip;
|
|
|
|
import android.support.v4.view.ViewPager;
|
|
|
|
import android.text.SpannableString;
|
|
|
|
import android.text.Spanned;
|
|
|
|
import android.text.style.ImageSpan;
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2014-02-25 11:42:38 +00:00
|
|
|
import android.widget.AbsListView;
|
2013-06-28 03:57:27 +00:00
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.BaseAdapter;
|
|
|
|
import android.widget.EditText;
|
|
|
|
import android.widget.FrameLayout;
|
|
|
|
import android.widget.GridView;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.R;
|
|
|
|
import org.thoughtcrime.securesms.util.Emoji;
|
|
|
|
|
|
|
|
public class EmojiDrawer extends FrameLayout {
|
|
|
|
|
2013-06-29 16:51:08 +00:00
|
|
|
private static final int RECENT_TYPE = 0;
|
|
|
|
private static final int ALL_TYPE = 1;
|
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
private FrameLayout emojiGridLayout;
|
|
|
|
private FrameLayout recentEmojiGridLayout;
|
|
|
|
private EditText composeText;
|
2013-06-28 23:56:30 +00:00
|
|
|
private Emoji emoji;
|
2013-06-29 16:51:08 +00:00
|
|
|
private GridView emojiGrid;
|
|
|
|
private GridView recentEmojiGrid;
|
|
|
|
private ViewPager pager;
|
2013-06-28 03:57:27 +00:00
|
|
|
|
|
|
|
public EmojiDrawer(Context context) {
|
|
|
|
super(context);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
public EmojiDrawer(Context context, AttributeSet attrs) {
|
|
|
|
super(context, attrs);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
public EmojiDrawer(Context context, AttributeSet attrs, int defStyle) {
|
|
|
|
super(context, attrs, defStyle);
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setComposeEditText(EditText composeText) {
|
|
|
|
this.composeText = composeText;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isOpen() {
|
|
|
|
return getVisibility() == View.VISIBLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initialize() {
|
|
|
|
LayoutInflater inflater = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
inflater.inflate(R.layout.emoji_drawer, this, true);
|
|
|
|
|
2013-06-29 16:51:08 +00:00
|
|
|
initializeResources();
|
|
|
|
initializeEmojiGrid();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeResources() {
|
|
|
|
LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
2014-02-25 11:42:38 +00:00
|
|
|
this.pager = (ViewPager ) findViewById(R.id.emoji_pager);
|
2013-06-29 16:51:08 +00:00
|
|
|
this.emojiGridLayout = (FrameLayout ) inflater.inflate(R.layout.emoji_grid_layout, null);
|
|
|
|
this.recentEmojiGridLayout = (FrameLayout ) inflater.inflate(R.layout.emoji_grid_layout, null);
|
|
|
|
this.emojiGrid = (GridView ) emojiGridLayout.findViewById(R.id.emoji);
|
|
|
|
this.recentEmojiGrid = (GridView ) recentEmojiGridLayout.findViewById(R.id.emoji);
|
|
|
|
this.emoji = Emoji.getInstance(getContext());
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeEmojiGrid() {
|
|
|
|
emojiGrid.setAdapter(new EmojiGridAdapter(ALL_TYPE));
|
|
|
|
emojiGrid.setOnItemClickListener(new EmojiClickListener(ALL_TYPE));
|
|
|
|
recentEmojiGrid.setAdapter(new EmojiGridAdapter(RECENT_TYPE));
|
|
|
|
recentEmojiGrid.setOnItemClickListener(new EmojiClickListener(RECENT_TYPE));
|
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
pager.setAdapter(new EmojiPagerAdapter());
|
2013-06-29 16:51:08 +00:00
|
|
|
|
|
|
|
if (emoji.getRecentlyUsedAssetCount() <= 0) {
|
|
|
|
pager.setCurrentItem(1);
|
|
|
|
}
|
2013-06-28 03:57:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private class EmojiClickListener implements AdapterView.OnItemClickListener {
|
2013-06-29 16:51:08 +00:00
|
|
|
|
|
|
|
private final int type;
|
|
|
|
|
|
|
|
public EmojiClickListener(int type) {
|
|
|
|
this.type = type;
|
|
|
|
}
|
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
|
2013-06-29 16:51:08 +00:00
|
|
|
String characters;
|
|
|
|
|
|
|
|
if (type == ALL_TYPE ) characters = emoji.getEmojiUnicode(position);
|
|
|
|
else characters = emoji.getRecentEmojiUnicode(position);
|
|
|
|
|
|
|
|
int start = composeText.getSelectionStart();
|
|
|
|
int end = composeText.getSelectionEnd ();
|
2013-06-28 03:57:27 +00:00
|
|
|
|
|
|
|
composeText.getText().replace(Math.min(start, end), Math.max(start, end),
|
2013-06-28 23:56:30 +00:00
|
|
|
characters, 0, characters.length());
|
2013-06-28 03:57:27 +00:00
|
|
|
|
2013-06-28 23:56:30 +00:00
|
|
|
composeText.setText(emoji.emojify(composeText.getText().toString()),
|
2013-06-28 03:57:27 +00:00
|
|
|
TextView.BufferType.SPANNABLE);
|
|
|
|
|
|
|
|
composeText.setSelection(end+2);
|
2013-06-29 16:51:08 +00:00
|
|
|
|
|
|
|
if (type != RECENT_TYPE) {
|
|
|
|
emoji.setRecentlyUsed(position);
|
|
|
|
((BaseAdapter)recentEmojiGrid.getAdapter()).notifyDataSetChanged();
|
|
|
|
}
|
2013-06-28 03:57:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-29 16:51:08 +00:00
|
|
|
private class EmojiGridAdapter extends BaseAdapter {
|
|
|
|
|
|
|
|
private final int type;
|
2014-02-25 11:42:38 +00:00
|
|
|
private final int emojiSize;
|
2013-06-29 16:51:08 +00:00
|
|
|
|
|
|
|
public EmojiGridAdapter(int type) {
|
|
|
|
this.type = type;
|
2014-02-25 11:42:38 +00:00
|
|
|
emojiSize = (int) getResources().getDimension(R.dimen.emoji_drawer_size);
|
2013-06-29 16:51:08 +00:00
|
|
|
}
|
2013-06-28 03:57:27 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCount() {
|
2013-06-29 16:51:08 +00:00
|
|
|
if (type == RECENT_TYPE) return emoji.getRecentlyUsedAssetCount();
|
|
|
|
else return emoji.getEmojiAssetCount();
|
|
|
|
|
2013-06-28 03:57:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getItem(int position) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getItemId(int position) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getView(int position, View convertView, ViewGroup parent) {
|
2013-06-29 16:51:08 +00:00
|
|
|
Drawable drawable;
|
|
|
|
|
|
|
|
if (type == RECENT_TYPE) drawable = emoji.getRecentlyUsed(position);
|
|
|
|
else drawable = emoji.getEmojiDrawable(position);
|
2013-06-28 23:56:30 +00:00
|
|
|
|
|
|
|
if (convertView != null && convertView instanceof ImageView) {
|
|
|
|
((ImageView)convertView).setImageDrawable(drawable);
|
|
|
|
return convertView;
|
|
|
|
} else {
|
|
|
|
ImageView imageView = new ImageView(getContext());
|
2014-02-25 11:42:38 +00:00
|
|
|
imageView.setLayoutParams(new AbsListView.LayoutParams(emojiSize, emojiSize));
|
2013-06-28 23:56:30 +00:00
|
|
|
imageView.setImageDrawable(drawable);
|
|
|
|
return imageView;
|
2013-06-28 03:57:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class EmojiPagerAdapter extends PagerAdapter {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCount() {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public CharSequence getPageTitle(int position) {
|
|
|
|
switch (position) {
|
|
|
|
case 0:
|
|
|
|
SpannableString recent = new SpannableString(" Recent ");
|
|
|
|
ImageSpan recentImage = new ImageSpan(getContext(), R.drawable.ic_emoji_recent_light,
|
|
|
|
ImageSpan.ALIGN_BASELINE);
|
|
|
|
|
|
|
|
recent.setSpan(recentImage, 1, recent.length()-1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
|
|
|
|
|
|
|
return recent;
|
|
|
|
case 1:
|
|
|
|
SpannableString emoji = new SpannableString(" Emoji ");
|
|
|
|
ImageSpan emojiImage = new ImageSpan(getContext(), R.drawable.ic_emoji_light,
|
|
|
|
ImageSpan.ALIGN_BASELINE);
|
|
|
|
|
|
|
|
emoji.setSpan(emojiImage, 1, emoji.length()-1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
|
|
|
|
|
|
|
return emoji;
|
|
|
|
default:
|
|
|
|
throw new AssertionError("Bad position!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isViewFromObject(View view, Object o) {
|
|
|
|
return view == o;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object instantiateItem(ViewGroup container, int position) {
|
|
|
|
View view;
|
|
|
|
|
|
|
|
switch (position) {
|
|
|
|
case 0: view = recentEmojiGridLayout; break;
|
|
|
|
case 1: view = emojiGridLayout; break;
|
|
|
|
default: throw new AssertionError("Too many positions!");
|
|
|
|
}
|
|
|
|
|
|
|
|
container.addView(view, 0);
|
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|