Reduce verbosity of KeyboardAwareLinearLayout logs.
This commit is contained in:
parent
d21782696a
commit
daf93c473b
1 changed files with 2 additions and 4 deletions
|
@ -130,10 +130,8 @@ public class KeyboardAwareLinearLayout extends LinearLayoutCompat {
|
|||
Rect insets = (Rect)stableInsetsField.get(attachInfo);
|
||||
return insets.bottom;
|
||||
}
|
||||
} catch (NoSuchFieldException nsfe) {
|
||||
Log.w(TAG, "field reflection error when measuring view inset", nsfe);
|
||||
} catch (IllegalAccessException iae) {
|
||||
Log.w(TAG, "access reflection error when measuring view inset", iae);
|
||||
} catch (NoSuchFieldException | IllegalAccessException e) {
|
||||
// Do nothing
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue