4

我正在尝试将 Toolbar 用作操作栏,并遵循 Chris Banes 指南:

https://chris.banes.me/2014/10/17/appcompat-v21/

现在按照该设置我有一个空的工具栏,似乎 getMenuInflater().inflate() 不起作用。

空工具栏

在我的活动中,我有:

@Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menuhome, menu);
        [...]

在 onCreate() 中:

Toolbar toolbar = (Toolbar) findViewById(R.id.my_awesome_toolbar);
setSupportActionBar(toolbar);

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:allmytv="http://schemas.android.com/apk/res-auto"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@+id/linearlayoutmain"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <android.support.v7.widget.Toolbar
        xmlns:allmytv="http://schemas.android.com/apk/res-auto"
        android:id="@+id/my_awesome_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?attr/colorPrimary" />

    <com.astuetz.PagerSlidingTabStrip
        android:id="@+id/tabs"
        android:layout_width="match_parent"
        android:layout_height="48dip"
        allmytv:pstsIndicatorColor="#f57c1d" />

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1" >
    </android.support.v4.view.ViewPager>


</LinearLayout>

我哪里错了?

4

2 回答 2

5

为了将工具栏用作操作栏,您需要将属性 windowActionBar 设置为 false。

在styles.xml 中包含以下内容

<style name="AppCompatTheme" parent="@style/Theme.AppCompat.Light.NoActionBar">
        <item name="windowActionBar">false</item> 
        <item name="colorPrimary">#4285F6</item>
    </style>

在标签下的 manifest.xml 中使用上述主题

android:theme="@style/AppCompatTheme"

我使用工具栏来膨胀菜单:

 toolbar.inflateMenu(R.menu.your_toolbar_menu);
于 2014-11-13T05:09:34.477 回答
2

这绝对是一个非常具体的问题。问题是我设置了一个启动画面:

setContentView(R.layout.splashhome);

工具栏是空的,因为我在启动画面处于活动状态时调用了 setSupportActionBar(toolbar)。

将 setSupportActionBar(toolbar) 移动到正确的位置修复它!

于 2014-11-13T15:05:38.487 回答