I have developed an iPhone app with a launch image. When starting the app in the simulator, the image zooms in as expected. However, when the app is deployed to my physical device, the zoom animation is very short and sometimes completes instantaneously.
I'm sure it's nothing to do with my app start up as I put a sleep call in applicati...
Hi all,
I'm using Wikitude API 1.1 as an AR viewer in my application. The problem with Wikitude, if I haven't launched the actual Wikitude application since the phone's bootup, I will get a NullPointerException everytime I start my own application.
So I figure if I can start my app first and them check if Wikitude is installed and or r...
In Eclipse it is possible to create launch configurations in a project, specifying the runtime dependencies from another project. A problem I found was that if you have a multiple project workspace, being possible that each project has its own libraries, it is easy to add explicit dependencies in a secondary project to libraries that are...
I'm trying to deploy and run an application (C# console app) at the beginning of the MSI install with WIX but having some difficulty.
The application needs to run before any of the webserver actions happen but after the files have been copied from the MSI to the target location.
I can get the app to run but only if I have actually copi...
After reading many posts, I still haven't got a clue how to solve this problem...
The first view of my app is a tableViewController. I override
(BOOL) shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation
and it always returns YES.
If I hold my iPad upright under landscape orientation, it rotates ri...
Hi,
I want to copy an existing .exe-file from one directory to another and launch it afterwards with Java. Like this:
FileIO.copy( new File( sourceFile ), new File( targetFile ) );
System.out.println( "Existing: " + new File( targetFile ).exists() );
System.out.println( "Launching " + targetFile );
String cmd[] = { targetFile };
Proces...
I hope I formatted the code correctly this time. Let me say first that the code works as is; it's in understanding some parts and modifying others that I run into trouble.
I'm going to delete my numerous comments and limit myself to a few questions on it.
1. Is FILE a keyword in Obj-C? What is its function? Why all caps?
2....
Applications can have any number of launchable activities. I know how to get the list of these activities via PackageManager.
Is there a way to determine which activities can be launched via startActivity?
For example, the Documents To Go app has different activities that will start Word, Excel, Powerpoint, PDF, etc... I am able to l...
My app is all done and working great. So now I ran it on a old iPhone and the app takes 17.3 seconds to start!?!? i spent a lot of time looking into it and i found that the reason it is taking so long to load is i have a lot of views and each view has a png background image. All my views and made in IB and in my code:
#import "MyTest...
Is it possible to launch two kernels that do independent tasks, simultaneously. For example if I have this Cuda code
// host and device initialization
.......
.......
// launch kernel1
myMethod1 <<<.... >>> (params);
// launch kernel2
myMethod2 <<<.....>>> (params);
Assuming that these kernels are independent, is there a facility to...
App freezes, and the device freezes sometime during launching or closing. This happens especially to the app developed and installed using Xcode. Can anyone explain what's going on, if it's iOS 4 Gold Beta specific issue, or a generic task must be handled by a developer?
...
i think there may be option like launch url in ib
can anybody answer it if u know,,,,,
...
Hi
I have a simple viewcontroller based application. Can someone tell me why shouldAutorotateToInterfaceOrientation seems to get called twice (value equals 1 both times) on launch?
...
I want to disable the recent apps intent that is fired from the icon when you hold the home button. I am currently detecting, in the onCreate(), if the intent is fired from the quick launch dialog, and then I call finish().
This entails that when the application goes to the background finish() is called so that when the app is launched ...
Hi,
I am writing a plugin for Jira which involves parsing of XML documents. I am using JAXB to do so (XML to pojos and vice versa)
So have a class which generates XML from pojos using JAXB. it looks like...
import javax.xml.bind.*;
Class Parser {
public void m1() {
...
// code which uses classes in javax.xml.bind.*
}
pu...
I would like to execute another app from my app like "Angry Birds"/"Seance"/"Guitar Hero".
(I know its against the rules of apple :)
Is there a way I can do it?
Thanks
...
Hi,
I Create a web application that when I click on button this open another application installed on iphone.
I call another application with this code:
window.launchAPP = function()
{
setTimeout(function()
{
window.location = 'http://www.app.com/'
}, 500);
window.location = 'app://';
};
T...
I'm developing an app that will feature a splash screen fading to the first app page. This splash screen is supposed to seamlessly flow from the Default-X.png image from the app launch. I've got this working great, except for one very special situation.
If the user taps the app icon, then IMMEDIATELY changes orientation, the automatic D...
In most Android apps, when you press the Home button to "minimize" the application and then open the application again, you will be taken to the screen you were last on in that Application.
I've read the following:
When launched via icon on the home
screen, Android will always start the
activity with the
android.intent.action....
Hello,
I would want to know how to launch an activity when long pressing media button.
In this case, I don't want to launch the default activity : the media reader, this one must keep lauching when media button has been short pressed.
Hope, I've been explicite.
A.L.
Subsidiary question : Why some hard key, like the search button, can...