取得已安装应用程序列表与安装日期信息

 

  private void updateInstalledApps(){
    PackageInfoList = getPackageManager().getInstalledPackages(PackageManager.GET_ACTIVITIES);
    ArrayList<HashMap<String, Object>> listItem = new ArrayList<HashMap<String, Object>>();
    if (PackageInfoList.size() != 0){
      for (PackageInfo info : PackageInfoList){
        HashMap<String, Object> map = new HashMap<String, Object>();
        map.put("myListViewTextView1", info.packageName); // 应用包名
        // 有权限 可取得应用的安装目录,没有权限则无法获得
        map.put("myListViewTextView2", info.applicationInfo.publicSourceDir);
        // 第一次安装时间
        map.put("myListViewTextView2", convertDateTime(info.firstInstallTime));
        // 最后一次更行时间
        map.put("myListViewTextView3", convertDateTime(info.lastUpdateTime));
        listItem.add(map);
      }
      SimpleAdapter listItemAdapter = new SimpleAdapter(this, listItem, R.layout.list_item_2, new String[] {"myListViewTextView1", "myListViewTextView2", "myListViewTextView3"}, new int[] {R.id.myListViewTextView1,R.id.myListViewTextView2,R.id.myListViewTextView3});
      mListView01.setItemsCanFocus(true);
      mListView01.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
      mListView01.setAdapter(listItemAdapter);
    }
    else{
      mTextView01.setText("No Package Found.");
    }
  }

 

  public String convertDateTime(long timeStamp){
    Calendar calendar = Calendar.getInstance();
    calendar.setTime(new Date(timeStamp));
    StringBuffer strTmp = new StringBuffer();

    strTmp.append(calendar.get(Calendar.YEAR));
    strTmp.append('.');
    strTmp.append(calendar.get(Calendar.MONTH) + 1);
    strTmp.append('.');
    strTmp.append(calendar.get(Calendar.DAY_OF_MONTH));

    strTmp.append(' '); 
    strTmp.append(calendar.get(Calendar.HOUR_OF_DAY));
    strTmp.append(':');
    strTmp.append(calendar.get(Calendar.MINUTE));
    strTmp.append(':');
    strTmp.append(calendar.get(Calendar.SECOND));
    return strTmp.toString();
  }

 

转载于:https://www.cnblogs.com/huangzx/p/4447670.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值