Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了这个常量 [android.provider.CallLog.Calls.LIMIT_PARAM_KEY][1]。
由于某种原因,它在文档中显示为灰色,当我尝试使用它时,应用程序崩溃(sqlite 错误)
有谁知道如何使用这个?(如果我们应该使用它)
您只需要使用 Uri.Builder 并附加查询参数:
Uri limitedCallLogUri = CallLog.Calls.CONTENT_URI.buildUpon() .appendQueryParameter(CallLog.Calls.LIMIT_PARAM_KEY, "50").build();
将响应限制为 50。