直接使用跳转的方法从选项跳转到事件,具体是在你的选项添加项下面插入代码
Intent in=new Intent(当前活动.this,要跳转到的活动.class);
startActivity(in);就行了.