あなたはその後Android Documentation
でそれについての詳細を読むことができ だけフラグメントクラスから延びるフラグメントサブクラスを作成
のレイアウトあなたの内容を変更するための断片を使用することができます。 switch case文の該当するcaseをチェックして、次のようにコードを更新してonNavigationMenuSelectedメソッドを更新します。
// Create new fragment and transaction
Fragment newFragment = new ExampleFragment();
FragmentTransaction transaction = getFragmentManager().beginTransaction();
// Replace whatever is in the fragment_container view with this fragment,
// and add the transaction to the back stack
transaction.replace(R.id.fragment_container, newFragment);
transaction.addToBackStack(null);
// Commit the transaction
transaction.commit();
色とテーマを変更したい場合は、引き出しのスタイルを変更するだけです。あるいは、いくつかのメニューだけを変更したい場合は、ドロワのメニューサブメニューである 'HIDE'または' VISIBLE'を選択します。 –