工具栏未显示

问题描述 投票:0回答:1

我正在尝试使用指南开发人员为我的活动添加导航栏。

但是,它看起来并不想工作。我也有一堆额外的按钮,但我已将其剪下来,因此更容易阅读。

我尝试过一系列不同的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>
android android-layout navigation-drawer android-toolbar android-xml
1个回答
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

© www.soinside.com 2019 - 2024. All rights reserved.