[问题] Negative Drawer Crash 问题

楼主: Fordevoted (最佳化)   2018-07-26 18:04:21
小弟刚刚接触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);
楼主: Fordevoted (最佳化)   2018-07-26 18:08:00
(如果没有用negative drawer 的话是可以正常执行的
作者: SmoothieNoIc (冰沙不加冰)   2018-07-26 18:47:00
你要不要看一下logcat
作者: zcbxvsdf (东北一头羊)   2018-07-26 18:53:00
通灵一下:你有在androidmanifest宣告你新建的activity吗?你要先setSupportActionBar再getsetContentView里的layout忘记改新copy的?

Links booklink

Contact Us: admin [ a t ] ucptt.com