This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE); | |
if (imm.isAcceptingText()) { | |
writeToLog("Software Keyboard was shown"); | |
} else { | |
writeToLog("Software Keyboard was not shown"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- For holo theme --> | |
<drawable name="screen_background_holo_light">#fff3f3f3</drawable> | |
<drawable name="screen_background_holo_dark">#ff000000</drawable> | |
<color name="background_holo_dark">#ff000000</color> | |
<color name="background_holo_light">#fff3f3f3</color> | |
<color name="bright_foreground_holo_dark">@android:color/background_holo_light</color> | |
<color name="bright_foreground_holo_light">@android:color/background_holo_dark</color> | |
<color name="bright_foreground_disabled_holo_dark">#ff4c4c4c</color> | |
<color name="bright_foreground_disabled_holo_light">#ffb2b2b2</color> | |
<color name="bright_foreground_inverse_holo_dark">@android:color/bright_foreground_holo_light</color> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE); |
NewerOlder