activitynotfoundexception Questions
11
Solved
Looking at intent.resolveActivity != null but launching the intent throws an ActivityNotFound exception I wrote opening a browser or an application with Deep linking:
private fun openUrl(url: Strin...
Reverie asked 23/6, 2020 at 13:25
3
I've added a reference to a new module and try to open an Activity from it.
It throws an Exception that says:
android.content.ActivityNotFoundException: Unable to find explicit
activity class...
Countermeasure asked 30/7, 2014 at 17:31
2
Solved
I have this small method:
private fun showWebsiteWithUrl(url: String) {
val i = Intent(Intent.ACTION_VIEW)
i.data = Uri.parse(url)
startActivity(i)
}
And I see in google play that sometimes t...
Streamy asked 20/11, 2019 at 12:40
1
Solved
My 3rd party app has a way for the end-user to download an updated APK from our server and then the app will invoke the install package manager on that APK after it's done downloading. This same me...
Unwatched asked 24/9, 2019 at 18:2
1
Solved
I am trying to launch maps using the following code.
public static void navigate(Context context, double lat, double lon) {
String locationQuery = lat + "," + lon;
Uri gmmIntentUri = Uri.parse(...
Fluellen asked 18/4, 2018 at 11:25
1
I'm trying to open certain apps using there package names and for that I'm using this code:
public void openAppHavingPackageName(String packageName, String appName) {
try {
Intent intent =...
Softboiled asked 6/9, 2017 at 12:56
4
Solved
I get ActivityNotFoundException when perform Intent.ACTION_CALL operation. I found many links but all of it couldn't solve my problem.
It sometimes gives me exception like
android.content.Activit...
Wheal asked 26/1, 2015 at 8:1
3
I am trying to get the permission to access app usage data using this permission. THis is only being done for Lollipop and when I start activity with this intent (android.settings.USAGE_ACCESS_SETT...
Continuation asked 6/2, 2015 at 8:35
2
Solved
I have currently a TextView with some HTML phone numbers and url.
I have noticed that we can use the setMovementMethod to make these links clickable:
tv.setText("Phone number is: +32485123456 and...
Violet asked 10/2, 2013 at 9:48
1
© 2022 - 2024 — McMap. All rights reserved.