0

我正在尝试按照本教程编写一个滑动菜单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>

但是当我单击这些项目时没有任何反应。有什么问题吗?

4

0 回答 0