Can I call the android contact picker and force it

2019-02-27 16:04发布

I know how to force the orientation on my activities (Using the xml layout or programatically).

But can I force the contact picker to start in Portrait mode?

I call the contactPicker using the following code:

Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI);
startActivityForResult(intent, CONTACT_PICKER_REQ_CODE);

1条回答
别忘想泡老子
2楼-- · 2019-02-27 16:25

But can I force the contact picker to start in Portrait mode?

No. The developer of that app will handle portrait versus landscape how that developer wanted it handled.

查看更多
登录 后发表回答