Tagged Questions
0
votes
0answers
10 views
How to catch quit notification of an andorid app
i am not familiar with android app. In ios , there's a notification will be raised when the application is about to exit. Developers can catch the notification and save data and do anything they ...
2
votes
1answer
42 views
Android PendingIntent does not launch activity
I'm creating an application that use Google GCM Service.
So I defined this function:
@Override
protected void onMessage(Context context, Intent intent)
onMessage calls a function, this is part of ...
0
votes
1answer
72 views
Notifications and AlarmManager - cancelling the alarm I set
I am making a sample app just for educational purposes, where I create a notification every minute. I also have a button to cancel the alarm.
What I do is that when the notification comes, I click it ...
0
votes
0answers
27 views
Manipulating backstack from a service
I have a service that is started from an activity/fragment, MainActivity. A list is populated from broadcasts from the service. The user can click a list item and see item details in a details ...
1
vote
1answer
80 views
ongoing notification opening existing Activity
I want to show a notification while a timer is running and when the user clicks the notifiaction it opens the timer activity.
mNotificationManager = (NotificationManager) ...
0
votes
0answers
11 views
Delete ActivityEvent or set them as read
i have used Activity Manager and activity event to manage some notifications. I would like to delete or set them as read/seen when i click on notification. But i do not need in anyway.
this the code ...
2
votes
0answers
42 views
How to open dialog styled activity from notification without previous activity closing?
I have an Activity with dialog style so it visually opens on top of previous activity.
I have a notification which opens this activity like this:
Intent intent = new Intent(this, ...
0
votes
0answers
26 views
Android:Listen status bar close event?
I have a full screen activity and one button to open the notification.
Before I do the expand status bar method I need to clear the full screen flag first.
But when I clear the flag and closed the ...
0
votes
0answers
113 views
Android How to detect notification bar collapse?
I typed this code in onCreate method
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
Then I got a full screen activity. I want to ...
0
votes
2answers
126 views
Android raise Notification when app goes to background (not single activity)
I have an Android app made of 3 activities A, B and C:
A is the application itself (a regular Activity)
B is the settings screen (made with PreferenceActivity)
C is the about screen (a regular ...
0
votes
1answer
105 views
forced close when notification goes to activity
I'm making a project in Android and this is my first question in this wonderful web, so hello to everybody!
When I'm in activity (groups.class) i'm calling to this function (declarated inside the ...
0
votes
4answers
178 views
Onclick notification, start an activity in Android
I have a class for creating notifications. The class is like this:
public class TimeAlarm extends BroadcastReceiver {
NotificationManager nm;
@Override
public void onReceive(Context ...
0
votes
2answers
56 views
Android: show a notification due to an external action
I have to show a notification when my MainActivity is onPause() so i write the code below on my MainActivity, so by onPAuse() i mean the Activity is interrupted due to an external action (missed call, ...
0
votes
1answer
117 views
How can i programaticly show activity on the top of task stack?
My application start foreground service witch keep connection to server. It's show notification with pendingIntent witch show MainActivity. When i (user) tap on application icon (on desktop or ...
0
votes
0answers
54 views
Send information from NotificationManager to manager
I am trying to send information (some text )from broadcast receiver to activity by using Notification manager.
Every thing is fine , Notification appears on bar, I click on bar and next ...
0
votes
2answers
294 views
Android go back to activity or recreate
I am developing media player application in which i am showing a notification when song starts playing in a service.
Basically i am showing a list view in my first activity(being any one from Artist ...
0
votes
1answer
50 views
Android: how to send notifications to many activities
Inside my Application class, I have a long-running function (e.g. downloading new data). Once the operation finishes, I want to inform several related activities to refresh their UI. What is the best ...
1
vote
1answer
148 views
Bringing an Activity to Front , using notification in Android
I raised a notification . What i want is , that when the user clicks on the notification , my activity is brought to the front without creating a new instance of it .
For this , I added the flag , ...
1
vote
1answer
99 views
How can I hide an Activity?
I have Activity that download a file in progress dialog. And when user press to the button "hide" activity creates notification and hide progress dialog. And when user click to the notification, ...
0
votes
1answer
139 views
postNotification from BroadcastReceiver only if activity not active
I have a BroadcastReceiver(#1) that runs all the time to catch an event. When the event occurs, it may need to make UI changes on a particular activity (if that activity is active). To do this, I ...
0
votes
1answer
117 views
Bring the Activity to front while in Notification Bar is opened
I have one service which was running in background.
It will open the activity when a time is elapsed.It is working well.
But If the notification bar was opened,it open the activity but it was behind ...
0
votes
0answers
81 views
Android: How to switch to task's top activity when the notification item is clicked
I am getting an irritating issue when playing with APK Expansion downloader library. I believe this is a common issue, yet I have found no satisfying answer so far.
Assume the following situation:
...
2
votes
6answers
409 views
Transparent activity is opening over main activity. How to open it not over main activity?
I am building an application which will show a notification and on clicking the notification, I want to open a transparent dialog like activity which will have option related to that notification.
I ...
0
votes
1answer
761 views
Android: Activity not executing onNewIntent() (called from a Service) from the background
This is my first Android program. I have one activity that reads info outloud, a receiver that listens for incoming SMS messages and a service in order to make the app work in the background.
My main ...
2
votes
3answers
374 views
Android Activity Intent remains after shutdown
SETUP One Activity, SingleTop, receives an intent from a notification. Intent is consumed by activity. User hits back button to end the activity. onDestory gets called and isFinishing() returns true. ...
0
votes
1answer
110 views
Two instance of activity when open from notification bar
1.open from notification bar
2.press home return to desttop
3.open from app icon
problem:2 instance of SampleTabsDefault, need to exit twice.
Intent intent = new Intent(_context, ...
0
votes
1answer
305 views
Notification not starting a activity in android
I am developing a small app in which I want a background service to send a notification and when the user clicks the notification it must launch the appropriate activity. I am posting the code here ...
0
votes
1answer
94 views
Activity launch from Notification
I have an ListActivity with a Listview containing details of Alarm objects. When the app is not open and an Alarm occurs (the app uses AlarmManager to be woken at time chosen by the user) a ...
0
votes
1answer
1k views
android:launchMode=“singleInstance” does not allow activity for results update
When set to single instance, the Activity does not allow another Activity to update it using Activity for results method.
What is the flag I should set so that I do not have to remove the initial ...
0
votes
1answer
299 views
Notification and Home Button
I wrote a Notification function to send notificaiton, and it will switch to a defined activity when user click the notification on the top bar. My code did what I want. But there is a problem.
Let's ...
0
votes
3answers
286 views
android - return to app from service or notification
i'm having some problems with the flow of an app i'm working on.
basically , i have a service that always holds a notification , pressing on the notification should return to the app's most recent ...
3
votes
3answers
199 views
how to avoid clear notifications when activity finishes
I am posting different notifications to the notification bar.
All are having different id's but the intent is targeting same activity.
When I clicked on first notification the activity started and ...
1
vote
1answer
317 views
Android: how to prevent activity from starting in background and comming to foreground
In my app I have a system where I am able to show dialogs from anywhere in the app, even from secondary threads.When I receive some notifications from the server, I just bring the dialog in front of ...
1
vote
1answer
451 views
Stop Android for killing my Activity after 30 minutes from background
I am creating an application where there is an activity which contains a timer running when ever user comes to that screen. If user leaves that screen by pressing home button without stopping the ...
2
votes
1answer
717 views
Android:Notification starts new activity instead of resuming old one if originally activity is not started from launcher
I have spent a week to find a solution but with no success, so I need a help.
When my application goes to background then notification appears and displays status of activity.
It works perfectly if ...
0
votes
4answers
1k views
How to open last activity from notification status bar?
I want to open last started activity by tapping on the notification in status bar. Suppose I start an Activity A (main activity of my app), this activity sends a notification to notification status ...
1
vote
1answer
102 views
Kill activity when already active
For a notification I am using an Intent to start an Activity. However, when that activity is already active, it comes to the front.
I don't want this to happen, but I'd like it to be restarted. I ...
0
votes
2answers
81 views
Android: inter-activity notifications
I guess my GIS foo isn't strong today as this seems pretty basic but I just can't find the answer I'm looking for. At any rate, I have one Android activity that needs to notify another (running) ...
0
votes
3answers
342 views
Android: always launch top activity when clicked on notification
EDIT: please note: i completely re-explained my question.
I have application with two Activites: A and B. Activity A is MAIN. So, application starts, and A appears on the screen. User press the ...
0
votes
2answers
180 views
Status bar notification opens the activity when phone start
I have created a service which displays a status bar notification after certain time interval.
I also have created broadcast receiver which starts the service when phone restarts or power on. The ...
0
votes
1answer
1k views
How to hide notification on click and show an activity in android
i'm developing an app that launches a service to check for notification.
public class ServiceNotification extends Service{
private ThreadNotification notifica;
private NotificationManager mManager;
...
0
votes
1answer
177 views
Activity strange behavior when started from Android Notification
I am experiencing a strange behavior with my android application when dealing with a notification that is created from a BroadcastReceiver when a C2DM message arrives on the mobile device. The flow I ...
2
votes
0answers
212 views
window already focused - ignoring focus gain of xxx.xxx.xxx [duplicate]
Possible Duplicate:
window already focused - ignoring focus gain of com.android.internal.view
I use Notification to notify user if he/she has a site-message, when user click the ...
1
vote
1answer
810 views
Android - Notifications PendingIntent goes to wrong Activity?
I currently have a notification that displays in the notification bar and when the user clicks it it should bring them to the root Activity of my application.
I have used android:finishOnTaskLaunch ...
-1
votes
2answers
100 views
The application instead of MAIN activity launches the activity which was launched by notification [closed]
My application has a service running in background(the service is running all the time, even if the user is using other application) and when there are some changes in remote server the service ...
1
vote
2answers
803 views
launch activity from service when notification is clicked
I know, there are tons of these on here, but I've been trying solutions all day and haven't gotten anywhere.
Neither the example on google's docs, nor any of the 5 other ways I've found on here have ...
0
votes
1answer
396 views
Android - Switching to activity from status bar
First of all, I know this question has been asked and answered many times. I would not be reposting if any of those solutions had worked for me.
I have a 10 activities that I create and switch to ...
1
vote
3answers
950 views
Notification opens activity, press back button, prevent opening back stack activity?
This looks very similar to my previous question because it's some sort of follow up. I was not very happy with the only solution given; also, the solution was for a problem slightly different from ...
1
vote
2answers
272 views
notification opening a new window no matter what in Java Android
I want to launch a notification. When I click on it, it opens a NEW window of the app.
Here's my code:
public class Noficitation extends Activity {
NotificationManager nm;
static final int uniqueID ...
0
votes
2answers
176 views
Android: Control which activity is shown when clicking notification
In an Android app, I have two activities; lets call them A and B. A is the main activity, and it contains a button that calls startActivity() to display B. In short:
A -> B
A has a thread that ticks ...

