android - Hide notification bar without using fullscreen -
android - Hide notification bar without using fullscreen -
here problem: possible hide android notification bar without using fullscreen flag? need adjustresize app when soft keyboard shown, fullscreen apps ignore resizing (as far know).
has thought on how create app fullscreen without flag?
here problem fullscreen flag: tries show important, need resize app:
and xml:
<relativelayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <edittext android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparenttop="true" android:layout_alignparentleft="true" android:text="edittext1"/> <edittext android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparentbottom="true" android:layout_alignparentleft="true" android:text="edittext2" /> </relativelayout> summary: expected see both edittexts after app resized , new dimensions redrawn
this known , not fixed android bug, seek out workaround here
all credit leo
android fullscreen android-notification-bar
Comments
Post a Comment