Getting call history returns only last 20 logs
问题 PhoneCallHistoryStore store = await PhoneCallHistoryManager.RequestStoreAsync(PhoneCallHistoryStoreAccessType.AllEntriesLimitedReadWrite); PhoneCallHistoryEntryQueryOptions options = new PhoneCallHistoryEntryQueryOptions() { DesiredMedia = PhoneCallHistoryEntryQueryDesiredMedia.All }; PhoneCallHistoryEntryReader reader = store.GetEntryReader(options); var logs = await reader.ReadBatchAsync(); Here logs.Count is always 20. How can I get all the logs? 回答1: Yes, it's the correct behavior. In