これはよくある質問ですが、スタックオーバーフローに関する多くの質問と解決策を読んだ後、私は混乱しています。 Fragments
と、ナビゲーションドロワーのアイテムをクリックしてアクティビティを開始するために必要なものに関して混乱しています。
このナビゲーションドロワーアイテムから基本的なアクティビティを開始するために必要なものを誰か説明してもらえますか?コードで指定されている場所にonClick
メソッドを実装する必要がありますか?また、これはインテントとどのように関連していますか?
ここに私のMainActivity.Javaがあります
import Android.content.res.Configuration;
import Android.os.Bundle;
import Android.support.design.widget.NavigationView;
import Android.support.v4.widget.DrawerLayout;
import Android.support.v7.app.ActionBarDrawerToggle;
import Android.support.v7.app.AppCompatActivity;
import Android.view.Menu;
import Android.view.MenuItem;
public class MainActivity extends AppCompatActivity {
DrawerLayout drawerLayout;
ActionBarDrawerToggle drawerToggle;
NavigationView navigation;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initInstances();
}
private void initInstances() {
getSupportActionBar().setHomeButtonEnabled(true);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
drawerLayout = (DrawerLayout) findViewById(R.id.drawerLayout);
drawerToggle = new ActionBarDrawerToggle(MainActivity.this, drawerLayout, R.string.hello_world, R.string.hello_world);
drawerLayout.setDrawerListener(drawerToggle);
navigation = (NavigationView) findViewById(R.id.navigation_view);
navigation.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(MenuItem menuItem) {
int id = menuItem.getItemId();
switch (id) {
case R.id.navigation_item_1:
//Do some thing here
// add navigation drawer item onclick method here
break;
case R.id.navigation_item_2:
//Do some thing here
// add navigation drawer item onclick method here
break;
case R.id.navigation_item_3:
//Do some thing here
// add navigation drawer item onclick method here
break;
case R.id.navigation_item_4:
//Do some thing here
// add navigation drawer item onclick method here
break;
case R.id.navigation_item_5:
//Do some thing here
// add navigation drawer item onclick method here
break;
}
return false;
}
});
}
@Override
public void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
drawerToggle.syncState();
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
drawerToggle.onConfigurationChanged(newConfig);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.navigation_view_items, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
if (drawerToggle.onOptionsItemSelected(item))
return true;
// 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.string.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
次に、2番目のアクティビティPlayboard.Javaを示します。これは、単に背景画像を読み込むだけです。
import Android.app.Activity;
import Android.support.v7.app.AppCompatActivity;
import Android.os.Bundle;
public class Playboard extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_playboard);
}
}
すべての入力に感謝します!
各caseステートメントに対して、Activity
を介して開始するIntent
を指定する必要があります。
たとえば、Playboard
アクティビティを開始する場合は、navigation_item_1
が選択されています。
この特定のcase
にこのコードを追加します。
case R.id.navigation_item_1:
Intent i = new Intent(MainActivity.this, Playboard.class);
startActivity(i);
break;
警告の言葉:引き出しボックスにアニメーションがある場合、メインスレッドから直接アクティビティを開始すると、アニメーションが途中で終了して奇妙に見えます。この問題を回避するには、次の手順を実行できます(コードは、かわいらしさのためにレトロラムダを使用していますが、必須ではありません)。
Class<? extends Activity> activityClass = null;
switch (menuItem.getItemId()) {
case R.id.navigation_item_1:
activityClass = MainActivity.class;
break;
}
final Class<?> finalActivityClass = activityClass;
Executors.newSingleThreadExecutor().execute(() -> {
Intent intent = new Intent(getApplicationContext(), finalActivityClass);
startActivity(intent);
});
menuItem.setChecked(true);
mDrawerLayout.closeDrawers();