应该是发送一个intent事件,要设置action,具体是什么我忘了

解决方案 »

  1.   

    我也知道是intent啊 ,可是就是不知道怎么来写,有谁知道的吗? 帮帮我啊!!
      

  2.   

    private void openContactDetails(long id){
    Intent intent = new Intent(Intent.ACTION_VIEW,
                    ContentUris.withAppendedId(People.CONTENT_URI, id));
    startActivity(intent);
    }这个可以打开已有联系人的编辑页面,可是对于数据库里还没有的联系人怎么跳转到编辑页面呢
      

  3.   

    没有的联系人那就设置一个新建的intent呗,id传空