创建具有导航抽屉的应用程序时,为什么会看到两个工具栏? [英] Why Do see two toolbars when I created an app that has a navigation drawer?

查看:65
本文介绍了创建具有导航抽屉的应用程序时,为什么会看到两个工具栏?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个带有导航抽屉的应用程序,它运行正常,但是唯一的问题是我看到两个工具栏.其中一个是Actionbartoggle按钮,另一个是默认按钮.现在,我看到的教程已经在抽屉布局的主要内容中使用了工具栏,并且导航内容显然来自菜单. 现在的问题是我认为我们必须在Actionbardrawertoggle的构造函数中传递工具栏引用,并且在正确传递它之后,它可以正常工作,但是我看到了两个工具栏/actionbars. 基本上我的问题是如何获取主操作栏上的切换按钮,而不创建第二个工具栏?我尝试使用

I have created an app that has a navigation drawer, it works fine, but the only problem is that I see two toolbars. One in which there is Actionbartoggle button and other which is default. Now the tutorial I have seen has used a toolbar in the main content of drawer layout and obviously navigation contents are coming from menu. Now the problem is I think we have to pass a toolbar reference in the constructor of Actionbardrawertoggle, and after I passed it properly it works fine, but I see two toolbars/actionbars. Basically my question is how do I get the toggle button on the main action bar and not get second tool bar created? I have tried using

<style name="MyTheme" parent="android:Theme.Material.Light.NoActionBar">

它可以帮助我隐藏上方的操作栏,但我认为这不是很好的方法.我正在上传我的输出和代码的屏幕截图:

It helps me to hide the upper actionbar but I don't think it's the good way to do it. I am uploading my screenshot of output and code:

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawerLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <!-- Page Content -->
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:background="@color/colorPrimary"
            android:minHeight="?attr/actionBarSize"
            app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>
    </LinearLayout>

    <!-- Navigation View -->
    <android.support.design.widget.NavigationView
        android:id="@+id/navigationView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="start"

        app:itemTextColor="#5DADE2"

        app:menu="@menu/drawer_items"/>

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

主要活动:

 import android.content.DialogInterface;
    import android.content.Intent;
    import android.os.Bundle;
    import android.support.v7.app.AlertDialog;
    import android.support.v7.app.AppCompatActivity;
    import android.view.Menu;
    import android.view.MenuInflater;
    import android.view.MenuItem;
    import android.view.View;
    import android.widget.Button;
    import android.support.annotation.NonNull;
    import android.support.design.widget.NavigationView;
    import android.support.v4.view.GravityCompat;
    import android.support.v4.widget.DrawerLayout;
    import android.support.v7.app.ActionBarDrawerToggle;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.support.v7.widget.Toolbar;
    import android.view.MenuItem;
    import android.view.View;
    import android.view.Window;
    import android.widget.Toast;    
    import java.util.HashMap;    
    import android.content.DialogInterface;
    import android.content.Intent;
    import android.support.v7.app.AlertDialog;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.view.View;
    import android.widget.Button;    
    import java.util.HashMap;

public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener{
    SessionManager session;

    private Toolbar mToolbar;
    private DrawerLayout mDrawerLayout;
    ActionBarDrawerToggle drawerToggle;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_user_area);   

        setupToolbarMenu();
        setupNavigationDrawerMenu();    

    }


    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle item selection
        switch (item.getItemId()) {
            case R.id.lg:

                session.logoutUser();
                return true;

            default:
                return super.onOptionsItemSelected(item);
        }
    } private void setupToolbarMenu() {

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

        mToolbar.setTitle("Home Page");
    }

    private void setupNavigationDrawerMenu() {

        NavigationView navigationView = (NavigationView) findViewById(R.id.navigationView);
        mDrawerLayout = (DrawerLayout) findViewById(R.id.drawerLayout);
        navigationView.setNavigationItemSelectedListener(this);
        navigationView.setItemIconTintList(null);

        drawerToggle = new ActionBarDrawerToggle(this,
                mDrawerLayout,mToolbar,
                R.string.drawer_open,
                R.string.drawer_close);

        mDrawerLayout.addDrawerListener(drawerToggle);

        drawerToggle.syncState();

    }  @Override // Called when Any Navigation Item is Clicked
    public boolean onNavigationItemSelected(@NonNull MenuItem menuItem) {

        closeDrawer();

        switch (menuItem.getItemId()) {

            case R.id.home:
                // Put your Item specific Code here
                break;

            case R.id.invoice:
                Intent intent = new Intent(this,details.class);
                startActivity(intent);
                // Put your item specific Code here
                break;
        }

        return true;
    }

    // Close the Drawer
    private void closeDrawer() {
        mDrawerLayout.closeDrawer(GravityCompat.START);
    }

    // Open the Drawer
    private void showDrawer() {
        mDrawerLayout.openDrawer(GravityCompat.START);
    }


    @Override
    public void onBackPressed() {
        if (mDrawerLayout.isDrawerOpen(GravityCompat.START))
            closeDrawer();
        else{
        new AlertDialog.Builder(this).setIcon(android.R.drawable.ic_dialog_alert).setTitle("Exit")
                .setMessage("Are you sure?")
                .setPositiveButton("yes", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {

                        Intent intent = new Intent(Intent.ACTION_MAIN);
                        intent.addCategory(Intent.CATEGORY_HOME);
                        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                        startActivity(intent);
                        finish();
                    }
                }).setNegativeButton("no", null).show();}
    }     
}

我的styles.xml文件:

my styles.xml file:

<resources>
        <!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>     
    </resources>

我知道这可能没什么用,但是这也是我的清单文件:

I know this might not be of some use, but here's my manifest file too:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

    <uses-permission android:name="android.permission.INTERNET"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity android:name=".details" />
        <activity android:name=".Login"
            android:label="Login"/>

        <activity android:name=".MainActivity" />
        <activity android:name=".recycler" />
        <activity android:name=".RegisterActivity" />
        <activity android:name=".SplashScreen">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>        
    </application>    
</manifest>

这是我得到的输出:

And here's the output I am getting:

推荐答案

尝试遵循以下示例: https://developer.android.com/training/appbar/setting-up.html

您将在这里找到

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_my);
    Toolbar myToolbar = (Toolbar) findViewById(R.id.my_toolbar);
    setSupportActionBar(myToolbar);
    }

您缺少的是:setSupportActionBar(myToolbar);

这篇关于创建具有导航抽屉的应用程序时,为什么会看到两个工具栏?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆