Re: [android-developers] Android shows an error No Activity found to handle Intent

2017-01-19 Thread Marina Cuello
I believe ACTION_CALL_BUTTON is used on intent-filters to detect if the call button on the standard dial has been pressed. I.E. an app for a company that wants to detect if the user is calling the company or a shady app that gets some analytics from the user. It's not that usual.So perhaps there

[android-developers] Android shows an error No Activity found to handle Intent

2017-01-19 Thread Fazil T.M
I am developing an android app for calling a number. I am using FrameLayout instead of activity. When i using this code Uri number = Uri.parse("tel:123456789"); Intent callIntent = new Intent(Intent.ACTION_CALL_BUTTON); callIntent.setData(number);