最佳答案
我正在使用 Lollipop 和 AppCompat-v7库中引入的新添加的工具栏。我跟随 这本指南设置了工具栏,我注意到当你调用一些东西时,它会弹出上下文操作栏(比如为复制/粘贴而突出显示文本) ,它会将工具栏向下推到页面上。你可以在页面底部的图片中看到我所说的内容:
所以,基本上,我把它设置成这样。我在 xml 文件中定义了工具栏,我使用 include 标记:
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"/>
然后,我举例说明我的观点:
<LinearLayout
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"
android:orientation="vertical"
android:id="@+id/root"
tools:context=".MainActivity">
<include
layout="@layout/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<!-- Rest of view -->
</LinearLayout>
在代码中,我这样设置:
// On Create method of activity:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
有人知道如何使上下文操作栏超过工具栏吗?