小弟刚刚接触android 问题可能有点简单,还请见谅。
如题,我先新增了AS default可以选择有negative drawer的activity作为MAIN之后
新增了另一个negative drawer在 新建的activity(一样继承AppCompatActivity)
接着也复制了跟Main相同的code(包含重建两个main,bar两个的layout)
java里头的code也是直接复制过去,可是只要一跑就会crash,不知道是哪里出了问题
希望能寻求版上大大协助orz,非常感谢。
附上我的CODE
public class informationActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_info);
getSupportActionBar().setTitle("Information");
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar2);
setSupportActionBar(toolbar);
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout2);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
informationActivity.this, drawer, toolbar,
R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.addDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView)
findViewById(R.id.nav_view2);
navigationView.setNavigationItemSelectedListener(this);