使用
minSdkVersion 14
targetSdkVersion 23
现在,我想隐藏主题:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ir.pishguy.simpleadvancepagedesign">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity" android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="@style/Theme.AppCompat.Light">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
</style>
</resources>
但是我收到了这个错误:
Caused by: java.lang.IllegalStateException: You need to use a
Theme.AppCompat theme (or descendant) with this activity.
答案 0 :(得分:2)
在活动中使用getSupportActionBar().hide();
。
片段中的getActivity.getSupportActionBar().hide();
。
答案 1 :(得分:1)
OR
使用样式
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tview"
android:text="hello world you know who"
android:visibility="invisible"
/>
<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/sidebar"
class="com.example.shubham.navigation.frag"
></fragment>
</RelativeLayout>
答案 2 :(得分:0)
只需替换它:
<style name="AppTheme" parent="@style/Theme.AppCompat.Light">
用这个:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
如果您想在setSupportActionbar(Toolbar toolBar)
方法后使用getSupportActionbar().hide();
希望它有所帮助!!!