0
votes
1answer
19 views

Is there anyway to change current Activity's intent flag in android? Like making it available in Stack History or Not

Assume that I have 4 Activities (A,B,C,D) AppStart -> A -> B -> C -> D I have a situation that i need to remove C if something invalidates the necessity of C. (something invalidates: "For ...
0
votes
0answers
21 views

navigate to a certain another activity from textview

I am developing a news app, in which the data is fetched as JSON from the server, an adapter takes care of it, and displays a list where the title, the news (a portion of it )and an image is shown. ...
0
votes
1answer
30 views

Intercept Intent before Android delegates it (NFC)

I have an App that reads NFC Tags. This works fine so far - when the NfcAdapter.ACTION_TAG_DISCOVERED Intent is fired my Activity1 gets started. Now I have the situation that I have an Activity2 ...
0
votes
3answers
63 views

Problems with Android intents after activating app from background

I've just started with Android development. I've created an App Engine connected Android Project in Eclipse by following this guide: Creating an App Engine Connected Android Project. The app works, ...
0
votes
2answers
35 views

Android: Activity that close your antecessor

I have two Activities, "A" and "B", which "A" opens "B". When the user hits the back button on the Activity "B", i don“t want to see "A", i just want to close "A". So on the "B" i did this: @Override ...
0
votes
0answers
16 views

Capturing Contact pick callback to other than onActivityResult or to other non-Activity controller

I am writing a controller which takes the activity handle, processes data and just invokes activity back. So this controller will invoke contact picker through applying intent on activity. But I ...
0
votes
0answers
53 views

Android: Navigation bar to jump between activities?

I want each activity in my android app to contain a self made navigation view that looks like this ActivityStartedFirst > 2ndActivity > YouAreHereActivity Where ActivityStartedFirst and ...
0
votes
1answer
43 views

change current tab after calling tabactivity by intent

I am having a Tabactivity with two tabs and I am calling this tab activity from other activities ..but I want to set tab according to activity from where tab activity has been called .For that I have ...
0
votes
0answers
19 views

How do I receive notification on foreground Activity changed

Is there a way to catch a system intent when foreground activity changes. I looking to notify my service when the foreground Activity changes. (I know this can be done by busy-wait/pulling , this is ...
0
votes
2answers
72 views

android Nullpointerexception with intent data=null always

I am creating an app, which contains 3 activities, say, A, B and C. Activity A is the main activity, which launches when the app opens. Activity A is called Activity B using a ...
0
votes
2answers
77 views

IntentService Handling Requests from Multiple Activities

Up to this point my IntentService(s) has been working great because each IntentService has only been receiving requests from a single Activity (SQLite INSERTs) and responding to the same Activity. ...
0
votes
0answers
48 views

StartActivity wont work from onclick event

i'm trying to log in with facebook and pass the user's info to another activity The problem is when i run the startActivity method with the intent the onclick event gets freeze's and doesn't do ...
0
votes
1answer
31 views

Calling main Activity to start when a Share Intent is called

I was not sure how to search for this thing, so ended up posting the question. I have an app, that requires Authentication for using it. I added a Share Intent to it, so that other apps could be able ...
0
votes
2answers
24 views

How to open a Intent with data according to the item clicked on a ListView?

I have a ListView, actually generated by parsing a XML file downloaded from Internet. This XML file contains data about a person: IdNumber, Name, Age, PhotoURL, Birthday, Phone numbers, Email ...
0
votes
0answers
43 views

How to close full screen video capture intent programmatically in Android

If I start a Media Capture activity (For eg: Video capture) is there a way to close this window programmatically? Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE); ...
0
votes
3answers
37 views

“Failure Delivering Result ” - onActivityForResult

I have a LoginActivity (User Logs in). It is basically its own Activity that is themed like a dialog (to appear as if a dialog). It appears over a ShertlockFragmentActivity. What I want is if ...
1
vote
6answers
83 views

android: Cannot switch between activities using intent

I have a hard time switching from one activity to another using intent. My app is almost done, I have there several activities and I am able to switch between them with intent. I have added one more ...
0
votes
0answers
34 views

How to get the ID of the unique pendingIntent that is called by AlarmManager?

I am building an alarm application. One of the features I am adding right now is the volume of the alarm. When the user is setting up the alarm, they can choose the volume of the alarm with a SeekBar. ...
0
votes
2answers
45 views

Start new Activity from spinner

I am trying to start a new activity when I select an option from my spinner but whenever I select the option that starts a new activity the app crashes. I am starting the new activity with an intent ...
0
votes
3answers
43 views

Send not serializable data to new Activity

I have not serializable data which I must sent to other Activity. I try to use Intent, but it's impossible. Intent intent = new Intent(v.getContext(), UserDetailActivity.class); ...
0
votes
2answers
56 views

Keep Showing Previous Intent when click back button

I have an issues when clicking the back button. It keeps going to the previous activity. The user can logged in to use the app. But the problem is when user logs out, and click the back button, it ...
0
votes
0answers
23 views

android - launch an activity of another app to get it's result

I have two applications, A and B. From A, I'm launching B for a result, using the following code: Intent fmIntent = getPackageManager().getLaunchIntentForPackage("com.example.B"); ...
1
vote
0answers
55 views

Error launching onPause()/onResume() android flash air

I'm developing an app for android, using Flash Air with flash builder and flash cs6. After I've loaded and SWF I need to put my app on background, and call again the application to foreground. That ...
0
votes
2answers
24 views

Timer or doWakefulWork crash when attempt to set/use activity

I assume the problem stems from the same thing. Whether i call this sub from a fired timer or a doWakefulWork, i get a crash... TextView Past = (TextView) ((Activity) ctx).findViewById(R.id.past); ...
-1
votes
2answers
31 views

Android app activity navigation

I made an a app that has seven activities which are all accessed from the main.Each has its own button, but when I click one of the buttons it is starting all the activities can someone solve this ...
0
votes
0answers
74 views

start activity from broadcast receiver in android

in my application i'm starting activity from broadcastreceiver. but after running code it shows activity first.i want it after if condition is true- - wwhile ((line = bufferedReader.readLine()) != ...
0
votes
1answer
53 views

Android - how to open an audio-stream url with an external app?

I want to give the user the choice of opening an audio stream url with an audio player that he already have installed. The following code works as so far that the user getting a list of installed ...
0
votes
4answers
52 views

Start another app from my app

I want to start the wondershare player from my current activity and to make it (the wondershare player) use some passed argument (throught the call) as a streaming url. I found some example using VLC ...
0
votes
1answer
76 views

Taken value from edittext and passing it as a string to another activity

Im looking to take the value from a edittext field and pass it to another activity as a string. I have done below as shown. I think its working but I would like be to able to print the text out to see ...
0
votes
2answers
91 views

Post Delay Method - Android

I used postedDelayed method to refresh my Activity, which works fine. But the problem is that even when I press the Back button postdelayed method call back the previous activity.. //handler for ...
0
votes
1answer
56 views

Intent always null onStartCommand

I have following code @Override public int onStartCommand(Intent intent, int flags, int startId) { if(intent != null) { Log.i("INTENT", intent.getAction().toString()); } return ...
0
votes
1answer
194 views

How to call FragmentActivity from Activity inside TabHost?

I have bit idea about Fragment but not in depth.I want to call FragmentActivity from Simple Activity via Intent. My two File are as below, EventMain.java (extend Activity) EventDetail.java ...
1
vote
0answers
61 views

Android Bad Token Exception when closing and opening fast

I am currently working on an application that is being launched as an intent. Here are the flags I am using: intent.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); // don't "zoom", etc. the launch ...
1
vote
2answers
94 views

How Startintent in another class— Android ( SOLVED)

i want do a app with a class for make buttons in dinamic with for bucle. i call the constructor AND the click listener. All code except the click listener goes, that does not change the activity ...
0
votes
0answers
45 views

new Activity instance gets created after redirect from other application or browser

I am having a problem with activity instance getting created when it gets a re direct from browser . The problem is :- Activity A invokes browser to do some stuff with flag - FLAG_ACITIVTY_NEW_TASK ...
0
votes
0answers
67 views

How to pass event data between activities?

I wanna pass an event data from Activity B to Activity A. Activity A looks like this : public class ActivityDemo extends Activity { private Intent mIntent; private Context mContext; private ...
0
votes
0answers
84 views

Intent can't switch between activities-Android 4.0

This is a weird problem, My intent can't switch between activities in case of Android 4.0+ devices, However, on devices with android 2.2/2.3 it works fine. This is how I define the intent for my ...
1
vote
2answers
58 views

Call Android Activity

I have an application that performs a phone call, but when I send dial directly, the application is in the background and displays the screen of the android default phone call, it must not happen, ...
0
votes
1answer
44 views

starting activities without .class

I have searched for how to start and Activity from another Activity and I keep finding Intent intent = new Intent(this, ExampleClass.class); startActivity(intent); But I want to start from an ...
0
votes
2answers
47 views

passing data from service to an activity

If I put my service and activity in the same package, Can I exchange data between them using some global variables? I want optimized performance, so, global variables idea seems good but is it ...
1
vote
1answer
75 views

How do i start activity when screen goes off?

I have an application which is doing its work only when devices screen goes off. I have set up broadcast receiver (Intent.ACTION_SCREEN_OFF) and it works fine. I got record in my LOGCAT always when ...
0
votes
1answer
113 views

Android - Start Intent after download using DownloadManager

What I have is multiple buttons. Using if-else statements, I download a file to that corresponding button. Now, I also define what class to open via intent in the if-else statement. I need to have it ...
1
vote
1answer
68 views

Pop up dialog no matter what the user is doing

I hope this isn't a duplicate of a similar question but haven't been able to find anything that helped me. I'm creating a simple egg timer, and it works very well. Though I am struggling one thing. ...
0
votes
1answer
45 views

Top Activity in my Task

How do i get the Activity which is on top on my task. By My Task i mean the task which my Main Activity started. The reason is because I want to send an intent when the wifi state has changed but i ...
0
votes
1answer
32 views

android intent activity turning back with id

I have 2 different activities connected with their id #'s . When I started my activity 1 Its working however when I try to back I've get Null Pointer Exception cause of I cannot retrieve my id # in ...
0
votes
2answers
68 views

Android: execute method after returning to main activity from intent activity

I have seen many examples with startActivityForResult(Intent, int) and then using onActivityResult(int, int, Intent) but for me I dont need to pass anything, I simply want to ...
-1
votes
2answers
51 views

How to bring an application to front of another one which is currently running?

I Have an android application in which I handled the device Home button click.I made the application relaunched automatically when user clicks on Home button while my application is running using ...
0
votes
3answers
74 views

Not Able to Launch Activity using intent

I have a button initialized button1= (Button)findViewById(R.id.button1); Tn the OnClick() function I have public void onClick(View arg0) { // TODO Auto-generated method stub Intent ...
0
votes
2answers
93 views

get null value for arraylist on next activity

please help me.i want to pass array list of item name,quantity,amount and rate from make order activity to next activity confirm order...but on next activity getting null value for that array list ...
-1
votes
3answers
58 views

No Activity found to handle Intent when the manifest is correct

I have been going over this for an hour and I cannot figure out the issue. I am trying to launch a new activity when a boolean value is true inside the ACTION_UP TouchEvent. public boolean ...

1 2 3 4 5 16