Debug instead of warning
This commit is contained in:
parent
01ef5838d3
commit
8c1143cb8f
@ -72,7 +72,7 @@ public class EditTextCompat extends EditText {
|
|||||||
setShowSoftInputOnFocusMethod = EditText.class.getMethod("setShowSoftInputOnFocus", boolean.class);
|
setShowSoftInputOnFocusMethod = EditText.class.getMethod("setShowSoftInputOnFocus", boolean.class);
|
||||||
setShowSoftInputOnFocusMethod.setAccessible(true);
|
setShowSoftInputOnFocusMethod.setAccessible(true);
|
||||||
} catch (NoSuchMethodException e) {
|
} catch (NoSuchMethodException e) {
|
||||||
Log.w("EditTextCompat", e.getMessage(), e);
|
Log.d("EditTextCompat", "setShowSoftInputOnFocus was not found...");
|
||||||
}
|
}
|
||||||
return setShowSoftInputOnFocusMethod;
|
return setShowSoftInputOnFocusMethod;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user