Cainsoft Member Licensed User Longtime User Oct 15, 2018 #1 Hi All, I tried this: B4X: Dim i As Intent i.Initialize(i.ACTION_VIEW, "content://call_log/calls") StartActivity(i) this code opens the phone app but not in the call log tab. Last edited: Oct 15, 2018
Hi All, I tried this: B4X: Dim i As Intent i.Initialize(i.ACTION_VIEW, "content://call_log/calls") StartActivity(i) this code opens the phone app but not in the call log tab.
DonManfred Expert Licensed User Longtime User Oct 15, 2018 #2 Based on https://stackoverflow.com/questions...te-an-intent-that-opens-the-call-log-activity B4X: Dim i As Intent i.Initialize(i.ACTION_VIEW,"") i.SetType("vnd.android.cursor.dir/calls") StartActivity(i) Last edited: Oct 15, 2018 Upvote 0
Based on https://stackoverflow.com/questions...te-an-intent-that-opens-the-call-log-activity B4X: Dim i As Intent i.Initialize(i.ACTION_VIEW,"") i.SetType("vnd.android.cursor.dir/calls") StartActivity(i)
Cainsoft Member Licensed User Longtime User Oct 15, 2018 #3 Tested (Android 6.0, 8.0), working correctly Thank you DonManfred! Upvote 0