Android 5.0SIM卡URI

private static final String ICC_SDN_URI_FOR_SINGLE_SLOT = "content://icc/sdn/subId";
private static final String ICC_ADN_URI_FOR_SINGLE_SLOT = "content://icc/adn/subId";
private static final String ICC_PBR_URI_FOR_SINGLE_SLOT = "content://icc/pbr/subId";

  1. private void generateSdnUri() {
  2. String str = ICC_SDN_URI_FOR_SINGLE_SLOT;
  3. if (isGeminiEnabled()) {
  4. // like:"content://icc/sdn2"
  5. str += (mSlotId /*+ 1*/);
  6. }
  7. mSdnUri = Uri.parse(str);
  8. }





posted @ 2015-08-07 11:37  米开朗基罗  阅读(380)  评论(0编辑  收藏  举报