在我的Android应用程序中,我有一个导航抽屉菜单,其中填充了一个字符串数组。当我点击单个字符串时,我想打开一个新活动(两者都是片段活动)。这不符合我的想法。还有其他合适的方法吗
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
SelectItem(position);
}
public void SelectItem(int position) {
listView.setItemChecked(position, true);
Intent testIntent = new Intent(MainActivity.this, AnotherActivity.class);
//for example:
if (position == 2) {
startActivity(testIntent);
}
}
logcat错误:http://pastebin.com/v8pbpC0S
这是“AnotherActivity”类的内容:http://pastebin.com/zEymwJNQ 从logcat判断我认为这里发生了错误。
答案 0 :(得分:0)
你在第33行NullPointerException
com.ex.app.AnotherActivity.onCreate(AnotherActivity.java:33)
ListView
引用似乎是null
。