Questions tagged [activitynotfoundexception]

This is a Java exception in the Android API that is thrown when a call to startActivity(Intent) or one of its variants fails because an Activity can not be found to execute the given Intent.

This is a Java exception in the Android API.

This exception is thrown when a call to startActivity(Intent) or one of its variants fails because an Activity can not be found to execute the given Intent.

Link.

97 questions
1
vote
2 answers

Intent.CATEGORY_APP_CALCULATOR: ActivityNotFoundException

I'm trying to open the default calculator app in a android application. Two calculators are installed in device: default android calculator and Google Calculator. Intent calc = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN,…
1
vote
0 answers

ActivityNotFoundException in library, reported by some clients

I have Android library, which contains several activities. The library is compiled as aar. When the library is used in one of my test apps or in the most part of client apps, everything works fine, but some clients complain, that they get…
Denis
  • 147
  • 4
1
vote
0 answers

ActivityNotFoundException: Unable to find explicit activity class Occasionally

I noticed few of the following error in my analytics log: content.android.ActivityNotFoundException: (Unable to find explicit activity class {com.jrea.trustapp/com.jrea.trustapp.activities.b}; have you declared this activity in your…
TheModularMind
  • 2,024
  • 2
  • 22
  • 36
1
vote
1 answer

Android Activity Not Found Exception and BroadcastReceiver

i have some functionality in my program i want to expose but i did't seem to get the receiver working. i tried the Manifest/Receiver:
1
vote
1 answer

ActivityNotFoundException: Unable to find explicit activity class

I went through many similar questions on SO, but none offered a solution that helped me. Worth to mention that it abruptly happened during debugging, right after I managed to launch this activity (in the same debugging session). I didn't change…
Neria Nachum
  • 1,519
  • 1
  • 20
  • 37
1
vote
1 answer

ActivityNotFoundException when trying to start twitter app

I coded an intent to start twitter app but it's throwing ActivityNotFoundException even when I have the layest version of twitter installed. My Code Intent twitShare = new Intent() .setType("text/plain") …
X09
  • 3,827
  • 10
  • 47
  • 92
1
vote
2 answers

ActivityNotFoundException when press on buttons on google map

when press on buttons on google map at fragment this ActivityNotFoundException occurs, enter code here android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW…
1
vote
1 answer

Implicit Intent with user-specified action

I'm experimenting, specifying my own action for use in an implicit intent. In a single package, I define two activities. ActivityTwo is to be called from onClick() in ActivityOne, using an implicit intent with an action…
1
vote
8 answers

"Activity not found" in Android

I am using the navigation-drawer template in eclipse to do a simple Android application. I have some trouble with fragment. I declared a fragment called PresenceLog Fragment in manifest but when I called it in MainActivity, the log still says that…
1
vote
1 answer

Android custom scheme not working

Manifest.xml
Ryan Jeong
  • 27
  • 1
  • 6
1
vote
2 answers

Android: How to link a local HTML file from a TextView

I know there's a lot of questions on here about reading local HTML files, but I haven't found any that satisfy my needs. I would like to have a DialogFragment pop up, show a message with a link in it, click that link and have a local HTML file read…
1
vote
1 answer

open folder programmatically - ActivityNotFoundException Android

I am trying to open the download's folder programmatically. But, I keep getting ActivityNotFoundException. I have seen various questions on this on StackOverflow, tried most of them, but nothing worked till now. Here is my code below Intent intent =…
Vamsi Challa
  • 11,038
  • 31
  • 99
  • 149
1
vote
0 answers

Exception: ActivityNotFoundException - different name works flawless

I'm building an AndroidApp which uses a java-class Question.java which extends android.app.Activity. The Activity is stated in the androidmanifest.xml as
1
vote
3 answers

Correctly addressing Intents to fix ActivityNotFoundException

I get an ActivityNotFoundException when I use this code: public void addListenerOnButton3(){ button3 = (Button) findViewById(R.id.btnSettings); button3.setOnClickListener(new OnClickListener(){ @Override public void onClick(View arg0) {…
1
vote
3 answers

android.content.ActivityNotFoundException, unable to start activity

I have a problem with the Manifest of my Application. Clicking on a button on Main activity I want to start an other Activity, so I used this function: public void startDatacenters() { Intent intent = new Intent(context, Datacenters.class); …