我的操作栏出现问题,我把它设置在我的xml前端,如下所示:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:label="@string/dadosCadastrais"
android:minHeight="?attr/actionBarSize"
android:theme="?attr/actionBarTheme" />
关于Java活动:
Toolbar toolbar = findViewById(R.id.toolbar4);
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(true);
我已经尝试更改应用使用的主题,布局使用的主题,甚至是允许/禁止工具栏显示的活动主题。即使我的java类扩展了AppCompatActivity,它也没有显示!
PS:现在就开始了!问题是java代码本身的设置,有一个隐藏的方法,它覆盖我的设置,thx的帮助!
答案 0 :(得分:1)
确保您的活动夸大了包含工具栏的正确布局。
protected void setContentView() {
setContentView(R.layout.your_activity_layout);
}
您的活动布局应包含您的工具栏。这是一个代码示例:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:keepScreenOn="true"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar" />
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/frameLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"></FrameLayout>
</LinearLayout>