0

こんにちはAndroid Studioでナビゲーションドロアアクティビティを使用してクリックイベントを作成します。私が左のメニューでギャラリーをクリックすると、それをギャラリーアクティビティにリダイレクトしました。それは動作しますが、Galleryアクティビティには左メニューがありません。すべてのリダイレクトされたアクティビティがメニューを残しておきたい。これどうやってするの?ナビゲーションドロワ - リダイレクトされたアクティビティに左メニューがありません

import android.content.Intent; 
import android.os.Bundle; 
import android.support.design.widget.FloatingActionButton; 
import android.support.design.widget.Snackbar; 
import android.view.View; 
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.support.v7.widget.Toolbar; 
import android.view.Menu; 
import android.view.MenuItem; 

public class MainActivity extends AppCompatActivity 
     implements NavigationView.OnNavigationItemSelectedListener { 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 
     Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); 
     setSupportActionBar(toolbar); 

     FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab); 
     fab.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View view) { 
       Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) 
         .setAction("Action", null).show(); 
      } 
     }); 

     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(); 
     } 
    } 

    @Override 
    public boolean onCreateOptionsMenu(Menu menu) { 
     // Inflate the menu; this adds items to the action bar if it is present. 
     getMenuInflater().inflate(R.menu.main, menu); 
     return true; 
    } 

    @Override 
    public boolean onOptionsItemSelected(MenuItem item) { 
     // Handle action bar item clicks here. The action bar will 
     // automatically handle clicks on the Home/Up button, so long 
     // as you specify a parent activity in AndroidManifest.xml. 
     int id = item.getItemId(); 

     //noinspection SimplifiableIfStatement 
     if (id == R.id.action_settings) { 
      return true; 
     } 

     return super.onOptionsItemSelected(item); 
    } 

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


     if (id == R.id.nav_camera) { 

      // Handle the camera action 
     } else if (id == R.id.nav_gallery) { 
      Intent intent = new Intent(MainActivity.this, GalleryActivity.class); 
      startActivity(intent); 
     } else if (id == R.id.nav_slideshow) { 
Intent intent = new Intent(MainActivity.this, Slideshow.class); 
      startActivity(intent); 
     } else if (id == R.id.nav_manage) { 

     } else if (id == R.id.nav_share) { 

     } else if (id == R.id.nav_send) { 

     } 

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

私は意図ラインを追加するだけでこれを変更しました。それ以外はNavigationDrawerActivityを選択したときのデフォルトのコードです。

public class GalleryActivity extends AppCompatActivity { 

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

ギャラリーレイアウト

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

<LinearLayout 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:orientation="vertical" 
tools:context="com.example.gamze.leftmenu05.GalleryActivity"> 


<EditText 
    android:id="@+id/editText" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:ems="10" 
    android:inputType="textPersonName" 
    android:text="Name" /> 

<Button 
    android:id="@+id/button" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:text="Button" /> 

</LinearLayout> 

答えて

1

のギャラリーのためのフラグメントを使用することをお勧めはいあなたも活動してこれを行うことができます。 ビューとスタウリング画面を読み込んだ場合、アクティビティがやや硬く重いです。そのため、フラグメントは主にナビゲーションドロワで優先されます。

あなたは

  • 引き出しを持っている基本アクティビティを作成し、活動の残りの部分でその活動を拡張を行うことができます。あなたは、ナビゲーション引き出して、メニューからその負荷のコンテンツ部分のすべての断片とメインアクティビティを作成することができ、実装herehere
  • 第二のオプションを確認することができます。そのために私は活動を使用したいhere
+0

この方法では、毎回新しいドロワーメニューを膨らませています。これは非常に非効率です。それが再びロードされず、ビューが再作成取得することはできませんので、メモリに保持されますベースの活動として起こることはないだろう – Fabio

+0

@Fabioの無いです。 – androidnoobdev

+0

ああ、完璧です。私はいつも知っているような場合にはフラグメントを使用していますが、良い:) – Fabio

0

あなたGalleryActivityは異なるレイアウトを持っているので。

あなたは、メインウィンドウの内容以外のすべてを保持したい場合、私はあなたの代わりに活動

+0

を確認することができます。出来ますか?私はこの申請書を申請したいと思いますし、活動もあります。 –

関連する問題