我正在尝试使用ToolBar自定义AppBar,标题和菜单区域被我在工具栏中注入的布局隐藏。
我的活动布局的代码就是这个:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/bluegrey_300"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:id="@+id/toolbar_layout">
<TextView
android:id="@+id/text"
android:layout_width="323dp"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:textColor="@color/black"
android:textSize="30sp"
android:text="SOME TEXT" />
<SeekBar
android:id="@+id/seekbar"
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp" />
</LinearLayout>
</android.support.v7.widget.Toolbar>
....
Other components of my activity.
....
这是我活动的代码。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Toolbar myToolbar = findViewById(R.id.toolbar);
setSupportActionBar(myToolbar);
ActionBar ab = getSupportActionBar();
ab.setDisplayHomeAsUpEnabled(true);
ab.setTitle("Title not shown");
我得到的不良后果是:
为什么标题区域没有显示?我在AndroidStudio的设计视图中看到它,但没有执行。
答案 0 :(得分:0)
使用像这样的工具栏高度而不是wrap_content
android:layout_height="?attr/actionBarSize"