feat: call page UI
This commit is contained in:
parent
3129e51eb4
commit
da0c5d1991
@ -151,11 +151,7 @@ class MainActivity : FlutterActivity() {
|
|||||||
private fun getCallLogs(): List<Map<String, Any?>> {
|
private fun getCallLogs(): List<Map<String, Any?>> {
|
||||||
val logsList = mutableListOf<Map<String, Any?>>()
|
val logsList = mutableListOf<Map<String, Any?>>()
|
||||||
val cursor: Cursor? = contentResolver.query(
|
val cursor: Cursor? = contentResolver.query(
|
||||||
CallLog.Calls.CONTENT_URI,
|
CallLog.Calls.CONTENT_URI, null, null, null, CallLog.Calls.DATE + " DESC"
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
CallLog.Calls.DATE + " DESC"
|
|
||||||
)
|
)
|
||||||
cursor?.use {
|
cursor?.use {
|
||||||
while (it.moveToNext()) {
|
while (it.moveToNext()) {
|
||||||
|
Loading…
Reference in New Issue
Block a user