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
0
votes
4 answers

What is wrong in my code? 2 activity app, splash screen, webview

Sorry, I am new to android apps. creation. I have referred pretty much all solutions but this just doesn't work...and I don't see any problem in below simple-code. My app is simple, Load the splash screen, then load the webview. What is the problem…
0
votes
2 answers

Android.Content.ActivityNotFoundException when loading a fragment activity

I am using Xamarin, and am getting an error when trying to load an Activity. Here is the error: Android.Content.ActivityNotFoundException: Unable to find explicit activity class…
0
votes
2 answers

ActivityNotFoundException: but activity has been declared in manifest

hoping for some help. I am receiving an error: 04-13 15:01:45.336: E/AndroidRuntime(11065): android.content.ActivityNotFoundException: Unable to find explicit activity class…
RMcGuigan
  • 1,147
  • 2
  • 7
  • 11
0
votes
1 answer

Android Session mangement not working

I am trying to manage sessions in Android. I am using Shared Preferences to store the user data. The problem arises when any user logs in perfectly and the home page of my app should get open now, but the Logcat displays the error that there is no…
0
votes
2 answers

ImageButton not responding

What I am attempting to do is to open "Items" when the ImageButton "ibItem1" is pressed. But, after setting up this: ibItem1.setOnClickListener(new OnClickListener() { public void onClick(View arg0) { Intent items = new…
Piofmc
  • 365
  • 2
  • 4
  • 19
0
votes
6 answers

ActivityNotFoundException but i've declared in manifest

my error is E/AndroidRuntime(11101): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.hellolinear/java.text.Normalizer$Form}; have you declared this activity in your `AndroidManifest.xml`? but in my…
0
votes
0 answers

After update of Eclipse gives activitynotfoundexception

For some strange reason I get android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=geo:0,0?q=Fitness24Seven, Malmö } This application worked perfectly before I updated Eclipse. I…
0
votes
3 answers

Fragment :opening activity from fragment giving ActivityNotFoundException:

I am trying to open an activity from Listfragment as below @Override public void onListItemClick(ListView l, View v, int position, long id) { super.onListItemClick(l, v, position, id); …
hari86
  • 659
  • 2
  • 16
  • 28
0
votes
2 answers

ActivityNotFoundException, image capturing?

I have released an App which user can take photo in it.I do this to capturing photo: File file = new File( _path ); Uri outputFileUri = Uri.fromFile( file ); Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE…
hasanghaforian
  • 13,858
  • 11
  • 76
  • 167
-1
votes
2 answers

ActivityNotFoundException Error while single click on View Holder

I'm solving codepath prework question a Simple todo app. I created a listener such that when one single click on Adapter Holder it will open another edit activity where one can edit item, but the problem is it is showing ActivityNotFoundException…
aman_49
  • 116
  • 10
-1
votes
1 answer

CMS url not opening in browser via implicit intent

I am trying to open news feed which has url extension .cms Instead when tried simple url e.g. http://www.google.com/, it works as expected but not for .cms page. I don't want to add my own WebView. I am pretty sure that .cms is causing the problem…
-1
votes
1 answer

Android pdf viewer - ActivityNotFoundException : No Activity found to handle Intent

I want to open pdf file from url, so I used this code: Intent browserIntent = new Intent(Intent.ACTION_VIEW); browserIntent.setDataAndType(Uri.parse(string), "application/pdf"); startActivity(browserIntent); It's worked when the protocol is http,…
Enda
  • 9
  • 1
-1
votes
2 answers

unfortunately sqlite has stopped

i just got started with android and i'm trying to make a sign up page and save the input data in a sqlite database but i keep getting this error while compiling on my phone. "unfortunately sqlite has stopped"; signup class package…
-1
votes
1 answer

App closing with clicking on about button

06-04 12:34:07.871 3697-3697/com.example.halls.basicrecipes E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.halls.basicrecipes, PID: 3697 …
james
  • 81
  • 10
-1
votes
3 answers

How to go from an Activity to a Fragment by pressing a button of AlertDialog.Builder which is builder.setNegativeButton

When I press "No"(which is builder.setNegative Button of AlertDialog.Builder) it gives me an error: 02-02 22:05:44.360: E/AndroidRuntime(18022): FATAL EXCEPTION: main 02-02 22:05:44.360: E/AndroidRuntime(18022):…