將這些行放入您的活動中 - onCreate方法 -
super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
然後加入android:theme="@style/AppTheme.NoActionBar"
清單檔案中的樣子 -
<activity
android:name=".EmailValidation"
android:configChanges="keyboardHidden|screenSize|orientation"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar"
android:windowSoftInputMode="adjustPan|stateHidden" />
我希望這將是幫助你。
它說'不能解析符號在android:theme =「@ style/AppTheme.NoActionBar」' –
這裏你把這個 - 「android:theme =」@ style/AppTheme.NoActionBar「' - 在你的項目? –
裏面的應用水平 –