Reputation: 41
I am a new and developing an android application to solve the following problem.
Sometimes I want to get some information through a call, here is the process.
I wonder if there are library that can be used to simulate a click action during a call, so I can just type in the phone number and then the app will automatically select the language for me.
Upvotes: 4
Views: 169
Reputation: 372
View.performClick()
does exist, but the real problem is that you cant interact with that activity (as far as I know).
Upvotes: 1