簡體   English   中英

在多個活動中使用導航抽屜?

[英]Working with Navigation Drawer in multiple activities?

  • 我是新手,正在學習使用 Android Studio Navigation Drawer Activity Template 代碼 (mainMenu.java) 來啟動這個項目
  • 我創建了另一個 Empty Activity (viewProfile.java),以便在用戶按下 Navigation Drawer 菜單時可以調用它。 示例:用戶按菜單內的“查看個人資料”。
  • 我需要有關如何在我的所有活動中使用單個 Navi Drawer 菜單的幫助,例如 viewProfile.java Activity。
  • 嘗試從 mainMenu.java 復制與 Navi Drawer 相關的所有代碼並粘貼到 viewProfile.java 中。 根本不起作用,很遺憾。
  • 我已經評論了我嘗試過的一些代碼。

主菜單

public class mainMenu extends AppCompatActivity
        implements NavigationView.OnNavigationItemSelectedListener {

    //Defining views
    private TextView editTextUserName;
    private TextView textView_profile_name;
    private TextView textView_profile_email;
    private TextView textView_profile_amount;

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

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

        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
                this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
        drawer.setDrawerListener(toggle);
        toggle.syncState();

        NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
        navigationView.setNavigationItemSelectedListener(this);
    }


    @Override
    public void onBackPressed() {
        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        if (drawer.isDrawerOpen(GravityCompat.START)) {
            drawer.closeDrawer(GravityCompat.START);
        } else {
            super.onBackPressed();
        }
    }



@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
    // Handle navigation view item clicks here.
    int id = item.getItemId();

    if (id == R.id.nav_profile) {
        Toast.makeText(this, "nav_profile", Toast.LENGTH_SHORT).show();
    } else if (id == R.id.nav_listing) {
        startActivity(new Intent(this, ViewAllStock.class));
    } else if (id == R.id.nav_history) {
        Toast.makeText(this, "nav_history", Toast.LENGTH_SHORT).show();
    } else if (id == R.id.nav_coming) {
        Toast.makeText(this, "nav_coming", Toast.LENGTH_SHORT).show();
    } else if (id == R.id.nav_logout) {
        logout();
    } else if (id == R.id.nav_setting) {
        Toast.makeText(this, "nav_setting", Toast.LENGTH_SHORT).show();
    }

    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
    drawer.closeDrawer(GravityCompat.START);
    return true;
}
}

視圖配置文件

public class viewProfile extends AppCompatActivity implements ListView.OnItemClickListener, NavigationView.OnNavigationItemSelectedListener {
  private ListView listView;

    private String JSON_STRING;

    private SwipyRefreshLayout mSwipyRefreshLayout;

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

//        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
//        setSupportActionBar(toolbar);
//
//        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
//        ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
//                this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
//        drawer.setDrawerListener(toggle);
//        toggle.syncState();
//
//        NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
//        navigationView.setNavigationItemSelectedListener(ViewAllStock.this);

    }


    @SuppressWarnings("StatementWithEmptyBody")
    @Override
    public boolean onNavigationItemSelected(MenuItem item) {
        // Handle navigation view item clicks here.
        int id = item.getItemId();

        if (id == R.id.nav_profile) {
            // Handle the camera action
            Toast.makeText(ViewAllStock.this, "nav_profile", Toast.LENGTH_SHORT).show();
        } else if (id == R.id.nav_listing) {
            Toast.makeText(ViewAllStock.this, "nav_listing", Toast.LENGTH_SHORT).show();
        } else if (id == R.id.nav_history) {
            Toast.makeText(ViewAllStock.this, "nav_history", Toast.LENGTH_SHORT).show();
        } else if (id == R.id.nav_coming) {
            Toast.makeText(ViewAllStock.this, "nav_coming", Toast.LENGTH_SHORT).show();
        } else if (id == R.id.nav_logout) {
            Toast.makeText(ViewAllStock.this, "nav_logout", Toast.LENGTH_SHORT).show();;
        } else if (id == R.id.nav_setting) {
            Toast.makeText(ViewAllStock.this, "nav_setting", Toast.LENGTH_SHORT).show();
        }

        DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
        drawer.closeDrawer(GravityCompat.START);
        return true;
    }
}

在這種情況下,建議使用多個片段而不是活動。 但是,即使您仍然想使用不同的活動,也只需在其他活動中包含導航抽屜,就像您在其中一個活動中實施的方式一樣。 然而,這會導致多次編寫同一段代碼,這是應該避免的。

使用片段和容器,這樣如果你想改變布局,你只能改變布局的一部分而不是整個布局。所以你的導航抽屜在你的應用程序中保持安全。

你應該為此使用片段,你可以獲得很多演示。如果你仍然想使用活動,你必須在每個布局中包含導航

    <?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:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

<RelativeLayout 
    android:layout_width="match_parent"
    android:background="@drawable/bg"
    android:layout_height="match_parent" >

      <LinearLayout
            android:id="@+id/container_toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:orientation="vertical" >

            <include
                android:id="@+id/toolbar_offr"
                layout="@layout/toolbar_offer" />
        </LinearLayout>

    <ListView
        android:id="@+id/OfferFragLV"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/ll1">
    </ListView>



</RelativeLayout>
   <fragment
        android:id="@+id/fragment_navigation_drawer"
        android:name="com.phoenix.spicejunction.frag.FragmentDrawer"
        android:layout_width="@dimen/nav_drawer_width"
        android:layout_height="match_parent"
        android:layout_below="@id/mainRL"
        android:layout_gravity="start"
        android:layout_marginTop="50dp"
        app:layout="@layout/fragment_navigation_drawer"
        tools:layout="@layout/fragment_navigation_drawer" />

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

這是我的 fragment_navigation_drawer 布局文件

 <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:layout_marginTop="40dp"
 >

    <RelativeLayout
        android:id="@+id/nav_header_container"
        android:layout_width="match_parent"
        android:layout_height="145dp"
        android:layout_alignParentTop="true"
        android:background="#fff"
        android:gravity="center" >

        <com.phoenix.spicejunction.CircleImageView
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/profileIV"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="@dimen/_10sdp"
            android:src="@drawable/ic_launcher"
            app:civ_border_color="@color/my_yellow"
            app:civ_border_width="3dp" />

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/profileIV"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="5dp"
            android:text="TextView"
            android:textColor="#000" />

        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_below="@+id/textView1"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="@dimen/_5sdp"
            android:text="AGE: "
            android:textColor="#000" />
    </RelativeLayout>

    <!--
         <android.support.v7.widget.RecyclerView
        android:id="@+id/drawerList"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/nav_header_container"
        android:layout_marginTop="15dp" />
    -->

          <ListView
        android:id="@+id/home_listDrawer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/nav_header_container"
        android:layout_gravity="start"
        android:layout_marginTop="5dp"

        android:entries="@array/slider_array" />

     </RelativeLayout>

我正在使用這個方法

 @Override
       public void onDrawerItemSelected(View view, int position) {
           base.displayView(position);
      }

所以你必須在每個活動中實現這個方法,並通過調用任何活動使它們完成..

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM