我正在尝试按照本教程编写一个滑动菜单http://androidsolution4u.blogspot.it/2013/05/android-sliding-menu-like.html 没关系,我有我的项目列表,但我想点击项目,我可以打开一个活动。所以我试着写下这个片段:
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
switch (arg2) {
case 0:
Intent i = new Intent(getActivity().getBaseContext(), HomeActivity.class);
i.putExtra("CPU Statistics", "0"); MenuFragment.this.startActivity(i);
break;
case 5:
Intent intent1 = new Intent(getActivity().getBaseContext(), settings.class);
startActivity(intent1);
}
}
它在strings.xml中的菜单
<string-array name="marray">
<item>Chart</item>
<item>settings</item>
</string-array>
但点击这些项目时没有任何反应。出了什么问题?