读书人

判断联系人Contacts的版本有关问题

发布时间: 2012-09-29 10:30:01 作者: rapoo

判断联系人Contacts的版本问题

Intent intent = null;
? ? ? ? ? ? ? ? ? ? ? ? ClassLoader classLoader = DialerContactList.class.getClassLoader();
? ? ? ? ? ? ? ? ? ? ? ? try
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? classLoader.loadClass("android.provider.ContactsContract");
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? intent = new Intent(Intent.ACTION_PICK,Uri.parse("content://
com.android.contacts/data/phones"));
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? catch (ClassNotFoundException e)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? if (intent == null)
? ? ? ? ? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? intent = new Intent(Intent.ACTION_PICK,Phones.CONTENT_URI);
? ? ? ? ? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? ? ? ? ? startActivityForResult(intent, ADD_CONTACT);

读书人网 >移动开发

热点推荐