gpt4 book ai didi

xamarin - 使用 Xamarin.Mobile 访问联系人列表 xamarin.form 的权限被拒绝

转载 作者:行者123 更新时间:2023-12-02 01:23:22 24 4
gpt4 key购买 nike

大家好,大家好我正在使用 Xamarin.Mobile,但我在权限被拒绝时遇到错误我已经在 AndroidManifest 中添加了 READ_CONTACTS 并且还在运行时添加了权限。如何解决这个问题?

方法

    public async Task<IEnumerable<MobileUserContact>> GetAllContacts()
{
if (_contacts != null) return _contacts;

var contacts = new List<MobileUserContact>();
await _book.RequestPermission().ContinueWith(t =>
{
if (!t.Result)
{
Log.Debug("PERM", "Permission Denied!");
return;
}
foreach (var contact in _book.Where(c => c.Emails.Any())) // Filtering the Contact's that has E-Mail addresses
{
var firstOrDefault = contact.Emails.FirstOrDefault();
if (firstOrDefault != null)
{
contacts.Add(new MobileUserContact()
{
ContactFirstName = contact.FirstName,
ContactLastName = contact.LastName,
ContactDisplayName = contact.DisplayName,
ContactEmailId = firstOrDefault.Address,
ContactNumber = contact.Phones.ToString()
});
}
}
});

_contacts = (from c in contacts orderby c.ContactFirstName select c).ToList();
return _contacts;
}

最佳答案

看起来您没有请求用户访问其联系人的权限。

在这里查看:https://github.com/jamesmontemagno/PermissionsPlugin我也建议使用这个:https://github.com/jamesmontemagno/Xamarin.Plugins/tree/master/Contacts

关于xamarin - 使用 Xamarin.Mobile 访问联系人列表 xamarin.form 的权限被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38630426/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com