call the clicked contact at Recents

This commit is contained in:
tibbi 2020-05-09 21:16:09 +02:00
parent 93558cc25a
commit cee011f15c
3 changed files with 3 additions and 2 deletions

View File

@ -36,6 +36,6 @@ android {
}
dependencies {
implementation 'com.simplemobiletools:commons:5.27.17'
implementation 'com.simplemobiletools:commons:5.27.18'
implementation 'com.github.tibbi:IndicatorFastScroll:08f512858a'
}

View File

@ -5,6 +5,7 @@
android:installLocation="auto">
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.READ_CALL_LOG" />
<uses-permission

View File

@ -40,7 +40,7 @@ class RecentsFragment(context: Context, attributeSet: AttributeSet) : MyViewPage
recents_placeholder_2.beGone()
recents_list.beVisible()
RecentCallsAdapter(activity as SimpleActivity, recents, recents_list) {
activity?.launchCallIntent((it as RecentCall).phoneNumber)
}.apply {
recents_list.adapter = this
}