这是我的问题:是否可以在不使用fullscreen
标志的情况下隐藏 android 通知栏?显示软键盘时我需要adjustResize
我的应用程序,但fullscreen
应用程序忽略调整大小(据我所知)。
有没有人知道如何在没有这个标志的情况下让我的应用看起来全屏?
这是全屏标志的问题:它只尝试显示所有重要的内容,但我需要调整我的应用程序的大小:
和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>
摘要:我希望EditTexts
在我的应用调整大小和重新绘制新尺寸后都能看到