zoukankan      html  css  js  c++  java
  • new Intent(String action,Uri uri)构造器说明

    这是myDiary这个工程下MainActivity中的protected void onListItemClick(ListView l, View v, int position, long id){}方法,

    new Intent(String action,Uri uri)构造器的具体说明如下,

     1 protected void onListItemClick(ListView l, View v, int position, long id) {
     2         // 重要
     3         // Returns: a new URI with the given ID appended to the end of the path
     4         Uri uri = ContentUris.withAppendedId(getIntent().getData(), id);
     5         /*
     6          * new Intent.Intent(String action, Uri uri)这种用法还不太熟悉
     7          * 系统会根据第一个参数(action)在清单文件中找对应的activity,如果对应为多个activity,
     8          * 此时就会弹出一个dailog选择Activity
     9          */
    10         startActivity(new Intent(MyDiaryEdit.EDIT_TEXT_ACTION, uri));
    11 
    12     }
  • 相关阅读:
    velocity .vm
    @Autowired
    springMVC
    索引
    Adivisor
    计算火车运行的时间
    倒三角
    XML简介
    表单提交方式
    js动态生成表格
  • 原文地址:https://www.cnblogs.com/Sunnor/p/4810774.html
Copyright © 2011-2022 走看看