我已经尝试将AppTheme
windowActionBar设置为false ,将应用程序的主题设置为我自定义的主题,并将活动设置为AndroidManifest.xml file
,将主题设置为工具栏.xml,但无济于事
我的实际代码在哪里
工具栏:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.v7.widget.Toolbar>
Styles.xml:
<style name="CustomTheme" parent = "Theme.AppCompat.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
AndroidManifest.xml:
<application>
<activity android:name=".home.Home">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
Java类:
Toolbar toolbar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home_draw);
setTitle("Coffee Hour");
toolbar = (Toolbar) findViewById(R.id.tool_bar);
setSupportActionBar(toolbar);
布局xml:
<include
android:id="@+id/tool_bar"
layout="@layout/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
/>
答案 0 :(得分:1)
在 style.xml
中使用它<style name="MyTheme.NoActionBar">
<!-- Both of these are needed -->
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
答案 1 :(得分:0)
您已经扩展了Theme.AppCompat.NoActionBar
主题。你不需要这条线
<item name="windowActionBar">false</item>
答案 2 :(得分:0)
使用样式 Theme.AppCompat.NoActionBar
<style name="CustomTheme" parent = "Theme.AppCompat.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
并且您正在尝试使用这些行将数据设置到默认操作栏上
setTitle("Coffee Hour");
setSupportActionBar(toolbar);
删除上面的行,然后尝试运行它。可以。