mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-19 06:27:30 +00:00
37 lines
1.1 KiB
Java
37 lines
1.1 KiB
Java
|
package org.thoughtcrime.securesms.components;
|
||
|
|
||
|
import android.annotation.TargetApi;
|
||
|
import android.content.Context;
|
||
|
import android.os.Build;
|
||
|
import android.support.annotation.NonNull;
|
||
|
import android.text.Spannable;
|
||
|
import android.text.SpannableString;
|
||
|
import android.text.style.RelativeSizeSpan;
|
||
|
import android.util.AttributeSet;
|
||
|
import android.widget.EditText;
|
||
|
|
||
|
public class ComposeText extends EditText {
|
||
|
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);
|
||
|
}
|
||
|
|
||
|
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
|
||
|
public ComposeText(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
|
||
|
super(context, attrs, defStyleAttr, defStyleRes);
|
||
|
}
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
}
|