2015-03-11 14:23:45 -07:00
|
|
|
package org.thoughtcrime.securesms.components;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.support.annotation.NonNull;
|
2015-05-13 11:35:49 -07:00
|
|
|
import android.support.v7.widget.AppCompatEditText;
|
2015-03-11 14:23:45 -07:00
|
|
|
import android.text.Spannable;
|
|
|
|
import android.text.SpannableString;
|
2015-03-25 10:49:12 -07:00
|
|
|
import android.text.TextUtils;
|
2015-03-11 14:23:45 -07:00
|
|
|
import android.text.style.RelativeSizeSpan;
|
|
|
|
import android.util.AttributeSet;
|
|
|
|
|
2015-05-06 13:53:55 -07:00
|
|
|
public class ComposeText extends EmojiEditText {
|
2015-03-11 14:23:45 -07:00
|
|
|
public ComposeText(Context context) {
|
|
|
|
super(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ComposeText(Context context, AttributeSet attrs) {
|
|
|
|
super(context, attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ComposeText(Context context, AttributeSet attrs, int defStyleAttr) {
|
|
|
|
super(context, attrs, defStyleAttr);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setHint(@NonNull String hint) {
|
|
|
|
SpannableString span = new SpannableString(hint);
|
|
|
|
span.setSpan(new RelativeSizeSpan(0.8f), 0, hint.length(), Spannable.SPAN_INCLUSIVE_INCLUSIVE);
|
|
|
|
super.setHint(span);
|
|
|
|
}
|
2015-03-25 10:49:12 -07:00
|
|
|
|
|
|
|
public void appendInvite(String invite) {
|
|
|
|
if (!TextUtils.isEmpty(getText()) && !getText().toString().equals(" ")) {
|
|
|
|
append(" ");
|
|
|
|
}
|
|
|
|
|
|
|
|
append(invite);
|
|
|
|
}
|
2015-03-11 14:23:45 -07:00
|
|
|
}
|