Starting something again after stopping/pausing it. (NOT TO BE USED AS : any topic related to jobs and CV)
0
votes
1answer
222 views
Starting intent without a new bundle
I have a which is a list click method that starts a new activity and gives it a bundle
protected void onListItemClick(ListView l , View v, int position, long id){
super.onListItemClick(l, v, ...
1
vote
2answers
262 views
c# Timer: HTTP connection error after system wake-up
I have a Timer in a C# app (Win7 64). Every 20 min the timer callback gets some data via HTTP. It works well. But if my PC goes to sleep for a few hours, then wakes up, I get an HTTP error saying ...
0
votes
1answer
286 views
Resume app after call
I am allowing user to call from my app. Is there any way to resume my app back after the call ends?
In know "telprompt" url and "UIWebView" but I don't want to use those because they both pop up to ...
-2
votes
1answer
240 views
How to know the system has woken up from sleep in C++? [closed]
I need a way to find out whether the system has woken up from sleep?
How to do that? Is there any APIs available for this or any APIs to check if the system is going into sleep mode?
1
vote
2answers
346 views
resumeable file download issue -> when file size is more than Int32.MaxValue(2GB) (big files)
i found the code below in stackoverflow for resumeable file downloads :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Text;
using System.IO;
...
-1
votes
3answers
2k views
how resume able file downlaod in asp.net with c# -> best way (for large files too)
hi / plz see the below handler :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace FileExplorer
{
/// <summary>
/// Summary description ...
5
votes
2answers
973 views
How to resume background music after out-going phone call (iOS)?
I'm using AVAudioPlayer to play music (background supported). My question is if I want to call somebody while I'm listening to the music, how to resume it after the call? I've implement the ...
0
votes
1answer
1k views
How to pause and resume android game?
I am making an android game called Connect4. I am facing a problem relating to pausing and resuming the game. When i run the game on a real device(on a Galaxy S2), while running the game, when i press ...
0
votes
0answers
393 views
How can I Pause AnimationDrawable frame animation?
I have created a simple frame animation using AnimationDrawable, and it works as its supposed to.. and As of now, the animation just consists of a set of 6 images.
But now I need to add some way to ...
2
votes
1answer
380 views
SSL session resume on FTP transfer connection with OpenSSL
I'm open source developer implementing FTP client (WinSCP).
I'm trying to resume SSL session from the FTP control socket on the transfer socket.
Some FTP servers started to require this.
E.g. vsftpd:
...
1
vote
2answers
368 views
Resuming git push
I am trying to do a git push to a remote server, for a big project.
Is there any way once the upload is started, that if the connection is lost, I can resume the git push command and not have to start ...
15
votes
4answers
766 views
How to resume a broken upload in HTML5
I am trying to add resume functionality to html5 file uploader.
I need to be able to resume after browser was closed (and reopened) and I lost the file object, I do not want the user to drag/open the ...
0
votes
1answer
832 views
Making an Android App (Java) 'Wait' Until Something Finishes
I have this app that originally has you take a picture, shows you a progress bar, and uploads it to a website.
What I want to add is something so that before the progress bar shows, an Intent starts ...
6
votes
1answer
581 views
Prevent “Resume” for my Cocoa application?
I love the new "Resume" feature in Lion. After a restart window size and position is exactly how you left it. But during development this is a bit annoying.
If I resize a window in the Interface ...
0
votes
1answer
227 views
is it possible for a php script to stop at a certain point and resume executing from before that?
i don't know if this can be done using php but it would be awesome for me if it did and php is pretty powerful so i think it is possible and i just can't figure out how.
i know that a php file is ...
0
votes
2answers
286 views
C# - Program execution flow yield/pause/resume
Could you tell me please if there is a way in C# to pause and resume the program execution flow as I would like to do below?
Or do you have an idea how to save/load the current thread call stack?
I ...
2
votes
0answers
390 views
How to pause animation along with the activity?
need all your suggestions for this.
I am implementing some basic animations in my activity . Now i am in a situation where i want to pause the activity along with the animations when i started the ...
4
votes
2answers
313 views
iPhone Game pause and resume, is it worth implementing?
Allow me to describe my situation:
I want to develop a game, that is round-base, and pay-to-play. That means you pay one coin, for one round of game, like Pinball etc.
The problem is, when there is ...
0
votes
3answers
94 views
Deleting file if it crashes my app
Does anyone know how to delete a file if it crashes my app on the NEXT run? Eg. My app browses through an array of pictures. One of them crashes my system and on my next run i want it to delete that ...
0
votes
1answer
290 views
how to resume to correct layer after app terminates (cocos2d)
Hi i need help with this code. In my game i have main layer which has menu button for options and game level.
And I have a game layer to play the game.
When I terminated the app by clicking the home ...
1
vote
1answer
316 views
Resume large file uploads in Rails
Rails v. 2.3.8
The sites I manage handle a lot of large (video) file uploads. On occasion during the upload process, the connection gets lost and the user has to restart the video upload. What I am ...
5
votes
2answers
1k views
Resume FTP download after timeout
I'm downloading files from a flaky FTP server that often times out during file transfer and I was wondering if there was a way to reconnect and resume the download. I'm using python's ftplib. Here is ...
2
votes
1answer
208 views
Locking screen in Android speeds up game
I'm updating my game using a Handler posting a delayed Runnable.
public class Example implements Runnable
{
Handler handler;
public Example()
{
handler = new Handler();
...
1
vote
2answers
2k views
Do not resume MPMoviePlayerController when application enters foreground
I am developing an iPhone application which plays the video using MPMoviePlayerController. When I switch to background(device with multi-tasking support), the video play is paused and when I bring my ...
0
votes
0answers
161 views
Previous frame is shown when I set the paused time and call play on MPMoviePlayerController
I am using MPMoviePlayerController to play the movie in iPhone. When I switch to some other UIViewController I pause the movie. When I come back to MPMoviePlayerController, user should be able to ...
0
votes
3answers
313 views
How to catch event of coming back to an activity after hitting back
I have a main screen for my application which then leads to different screens, from each of those hitting back takes you back to the main screen. I want to do some stuff every time a user is "coming ...
2
votes
1answer
550 views
How can I resume a running activity?
I made myself an app: a music player with automatic bookmarking :)
Problem:
If I go "back" to the home page and then try to run the app again, it creates a new instance whereas I want to continue. I ...
7
votes
1answer
631 views
pausing and resuming child activities in ActivityGroup
I am making a first try att creating a custom ActivityGroup. I am getting everything working except the activity lifecycle methods of the groups child activities. How can i call the onResume/onPause ...
1
vote
2answers
285 views
How to Resume Previous running application from An Application in Android?
Give me a little guidance:
as My Application is running with Broadcast Receiver and when ever my application in Background and any incoming event comes it triggers the my Application.
Now we want as ...
1
vote
3answers
385 views
Resuming an App after going to background
I have an iphone app targeted for Iphone 3G, 3GS & 4G.
the issue that I have is that the behaviour is different from Iphone 3G & 4 (I didn't have the chance to test my app on 3GS iphone).
the ...
1
vote
3answers
248 views
Silly question about android activty lifecycle
I have activity+service classes.
When program runs activity will be shown and service will be started in onCreate method of activity.
When I clicked on HOME button of virtual machine, HOME SCREEN ...
0
votes
1answer
898 views
Android pause/resume a service
I want to pause the media scanner service and then do some work and resume the service. Is it possible? How can I do that?
4
votes
1answer
1k views
android saving game state
I'm developing a game and i've ran into some questions about saving and resuming the game.
Let's say i have 10 animated sprites drawn every frame (which move side to side) and everytime i press the ...
0
votes
1answer
795 views
Resume partial download using Linux command line tool
I realize that this question is not unlike asking someone for the name of a song one cannot remember anything about except that one liked it. Sorry, but it bugs me just like such a song.
A while back ...
0
votes
1answer
493 views
Is there a way to pause a Python subprocess, specifically in Ubuntu?
I have a GUI based program where I need the user to be able to pause or resume a subprocess. For example, if I have:
programID = subprocess.Popen("program_name"), shell=True)
Is there a way that I ...
1
vote
1answer
1k views
How to resolve quickly the pause and resume functions in Libgdx
What code I need to write in the pause() and resume() functions in libgdx for Android?
@Override
public void create() {
// TODO Auto-generated method stub
}
@Override
...
0
votes
2answers
1k views
Adding pause/resume support in an Android Game
I am trying to add Pause/Resume support to my Android game. How do I pause the current thread when user presses pause option and resume the thread when the use chooses resume option? Any ...
10
votes
2answers
7k views
How to pause and resume CSS3 animation using JavaScript?
I've tried to google and look from this forum a solution for my problem but no luck so far. I would like to pause my CSS3 animation (image slide show) by clicking a picture and also resume to the same ...
2
votes
2answers
750 views
C# - Copying files and resume support
Hi
Does anyone have workable sample code that copy files and support resuming them if there are the source has been disconnected?
In this example I am copying videos files. If the source is ...
0
votes
1answer
981 views
Suspending and resuming threads in c++
My application has to suspend and resume a different process every few *microsec*s.
It works fine only sometimes it feels like it suspends the process for non-uniforms times.
I use the win API: ...
1
vote
2answers
149 views
how to restart video if phone goes to sleep
So far i am making progress with a video app i am working on using the media player and a looping function. After a few tests, I am concerned the app will be a battery hog if i cannot stop the video ...
1
vote
2answers
733 views
Best way to implement something like TimerTask in Android
I know this question is somewhat beaten but i haven't been able to get an answer to my specific problem.
I have several components that use TimerTask that i need to pause and resume afterwards.
What ...
0
votes
1answer
807 views
onWindowFocusChanged() gets invoked more than once when i resume the app from the homescreen or appDrawer
the following is my console output of what happens when i move to the homescreen from the app and then move back to the app from the homescreen
HOME BUTTON PRESSED TO MINIMIZE THE APPLICATION
: ...
4
votes
1answer
327 views
How to resume playing from background
Hi
I am making an online radio station app.The app works good .
My radio doesn't resume after the call is ended.and i have to restart it.again
Here is my code
void ...
2
votes
2answers
228 views
Detecting code blocks when executing a Lua script line by line
This may sound like a silly question but I could see no mention anywhere of this particular problem. Basically:
I want to execute a Lua script line by line, primarily to have the ability to ...
0
votes
1answer
3k views
Android App crashing on Back Button (performResumeActivity)
My App consists of 2 Activities at the moment.
. the MAIN activity with a Gallery View
. a FriendsListActivity with a ListView
When the user moves away from the FriendsListActivity with the back ...
0
votes
1answer
495 views
pause ipod when playing voice from our apps, and resume after that
I would like to make an application that prompt a voice. the scenario is like this:
1. ipod playing music
2. user start my apps
3. my apps is deciding to prompt a voice
4. ipod music become MUTE or ...
5
votes
3answers
279 views
How to suspend and resume an application on windows?
Is there any way to suspend an application execution, store its process image to a file, and restore it later (keeping the application as it was at the moment of suspension)?
What I want to do is ...
3
votes
1answer
737 views
WCF Streaming and resume options
I have a scenario that I need to implement. Namely, my server needs to implement WCF that would accept large files (500MB - 1GB) and support resuming in case the connection drops for any reason. I was ...
0
votes
1answer
860 views
RESUME Download? Direct Link?
I wrote this code for uploading files to my host.For example I upload a file from Server A to Server B and after that I want to download it by my PC, But when I want to download it, for example via ...
