工具栏未显示

时间:2019-03-03 15:19:28

标签: android android-layout navigation-drawer android-toolbar android-xml

我正在尝试使用向导开发人员将导航栏添加到我的活动中。

但是,它似乎不想工作。我也有很多其他按钮,但我将其缩减了尺寸,以便在此处轻松阅读。

我尝试了很多不同的YouTube教程,它们都使用相同的工具栏基本概念。

澄清

我认为工具栏被推到约束布局的后面,或者当我进入设计视图时,我可以在页面顶部的按钮后面看到它。

.java文件

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

.xml文件

<?xml version="1.0" encoding="utf-8"?>

<android.support.v4.widget.DrawerLayout  
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:id="@+id/drawer_layout"
android:fitsSystemWindows="true"
tools:context="******">

    <LinearLayout
        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="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            android:elevation="4dp"
            android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

        <FrameLayout
            android:id="@+id/fragment_container"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>

    </LinearLayout>

 <android.support.design.widget.NavigationView
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:id="@+id/nav_view"
    app:headerLayout="@layout/nav_header"
    app:menu="@menu/drawer_menu"/>


</android.support.v4.widget.DrawerLayout>

1 个答案:

答案 0 :(得分:0)

在您的Activity.java导入android.support.v7.widget.Toolbar中,而不是
android.widget.Toolbar

    import android.app.ActionBar;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.view.Menu;
    import android.view.MenuItem;
    import android.support.v7.widget.Toolbar;

    public class MainActivity extends AppCompatActivity {

    public static final String TAG = MainActivity.class.getName();

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        toolbar.setTitle("Stack Overflow");
        setSupportActionBar(toolbar);

查看此question