blob: 51ad578dfad463facbc2d72446fb572da4c39024 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
package de.pixart.messenger.ui.widget;
import android.content.Context;
import android.os.Build;
import android.util.AttributeSet;
import android.widget.TextView;
import java.lang.reflect.Field;
/**
* A wrapper class to fix some weird fuck ups on Meizu devices
* credit goes to the people in this thread https://github.com/android-in-china/Compatibility/issues/11
*/
public class TextInputEditText extends android.support.design.widget.TextInputEditText {
public TextInputEditText(Context context) {
super(context);
}
public TextInputEditText(Context context, AttributeSet attrs) {
super(context, attrs);
}
public TextInputEditText(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public CharSequence getHint() {
String manufacturer = Build.MANUFACTURER.toUpperCase();
if (!manufacturer.contains("MEIZU") || Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
return super.getHint();
} else {
try {
return getSuperHintHack();
} catch (Exception e) {
return super.getHint();
}
}
}
private CharSequence getSuperHintHack() throws NoSuchFieldException, IllegalAccessException {
Field hintField = TextView.class.getDeclaredField("mHint");
hintField.setAccessible(true);
return (CharSequence) hintField.get(this);
}
}
|