Android :: Want To Launch An Installed Package From Phone App
Oct 6, 2010
I want to launch an installed package from my Android application. I assume that it is possible using intents, but I didn't find a way of doing it. Does anyone have a link, where to find the information?
View 2 Replies
Feb 12, 2009
i work on custom Application Manager and try to get the disk usage of installed package. So PackageManager.getpackageSizeInfo was removed from SDK on 0.9->1.0 update android.content.pm. PackageStats(String pkgName)(cacheSize, codeSize, dataSize) returns always "0" Size of phys. file (java.io.File) in "/data/app" seems wrong/not completely. Has anybody any solution to get the total disc space used by an installed package?
View 4 Replies
View Related
Jun 14, 2010
I would like to launch some applications, like the Calculator, the alarm clock, the notepad, the calendar, the camcorder, the camera, the dialer, etc, from my application. Is there an easy way to do that? Is there any place with a list of what are the intent names to launch them?
View 6 Replies
View Related
May 7, 2010
I'm creating a mobile website that will include a page from which people can download relevant apps that we recommend. I've found instructions for creating the links to launch the Market but this assumes that you are the developer of the app in question and know the exact package name.
Is there any way to get the package name, other than just contacting the developers and asking?
Also, it turns out that those instructions don't really work for creating web hyperlinks. They only give you a URI to reference in a string of Java code in another Android app. Our site is in Drupal, so Java is not going to work.
For the iPhone, I found easy instructions for getting the URL/link style I need from the iTunes store, so I'm looking for info like that.
View 2 Replies
View Related
Nov 1, 2010
does anyone know how you can find the package name for a particular app already installed on your handset? They usually go like: com.example.prototype(Where the folder prototype cotains the runnable files)Trying to use the intent function to launch an app within an app.Was told putting this code in the onclicklistener method for the button would allow this, yet to test it successfully. I reckon it works, just need to figure out package name of the app I wanna launch.Intent i = new Intent(Intent.ACTION_MAIN);i.addCategory( Intent.CATEGORY_LAUNCHER); i.setPackage("com.otherapp.package"); startActivity(i);Want to press a button, to launch the "com.otherapp.package"
View 8 Replies
View Related
Jun 28, 2010
Not all the packages have license information and I am not sure if those that do have that on the manifest but it doesn't seem like it. therefore, is there a way to extract the license of all the packages installed on a Android system?
View 2 Replies
View Related
Aug 15, 2010
Is this even possible without calling a specific package? I have found countless examples of sending email via intent, but I can find nothing about simply opening the default email client on the device via button press (preferably with a chooser dialog in case the user has multiple clients).
View 1 Replies
View Related
Jul 20, 2010
My first application will just be a kind of launcher that I would like to improve. This launcher will launch a custom Home that the user has installed. That's like the application "Home Switcher, but I would like to do that myself.
So my first goal is to get all "Home" applications list: that's really easy and the code is there:
CODE:.......
Now I would like to do that in a listview. My first problem is to get the Icon: I failed, but that's not my main problem ( if you can help me I would be happy)
I succeed to make a listview with all the names of the installed Home:
CODE:........
And now when I click on a home, I would like to lauch the Home, so what I did is:
CODE:...............................
So, there is a box that that appear and ask me:
Complete action using:
LauncherPro - or Sense - or ADW
Wallaper Gallery
I think I am close to what I would like to do. what I miss or give me an example of a Launcher that would be a few linecode.
View 1 Replies
View Related
Oct 31, 2010
I'm looking for a way to calculate the size of an installed Android application/package. I can't find this information in neither ApplicationInfo nor PackageInfo objects. From the ApplicationInfo I can get the path for the data and the app itself. Data is a directory structure, but when attempting to read it recursivly I get a nullpointer. Is there any better way of doing it? Any sample code?
View 1 Replies
View Related
Oct 14, 2009
I trying to understand how a new process is being created based on AndroidManifest.xml, also looking for the possibility of creating/ forking a new Java process/new DVM instance at runtime.
I could find that using Runtime.exec one can issue system commands or launch native applications, but this is not what I am looking for, I am looking for creating an equivalent java process just as the parent java process.
Can I launch an installed android application at runtime from another android application? Whats the way for doing this?
View 2 Replies
View Related
Nov 15, 2010
My question is how to launch the third-party android applications I installed through Intent directly?
View 2 Replies
View Related
Jun 15, 2010
I installed a non-market .apk app on my new Evo using Astro File Manager, by clicking the install button in the file manager interface. But how do I actually launch the app to use it now that it is installed? I can't find an icon or a place to make a shortcut to.
View 5 Replies
View Related
Oct 7, 2010
I'm attempting to override an Android View class to tweak the functionality just slightly. But I need to modify a field that does not have a setter method. I've placed the subclass in a package called android.widget. Why can't I access any of the package-private member fields? I notice that the compiler says they "cannot be resolved," rather than not being accessible. Does this have something to do with how Android.jar is built?
View 2 Replies
View Related
Feb 24, 2010
What is the best way to launch an app and calculate its launch time in android(if it can be done with some code,then its better)
View 2 Replies
View Related
Dec 4, 2009
The instructions for setting up the ADP1 direct me to the HTC Developer Center to download system images. That page, at http://developer.htc.com/adp.html, does not have any links to system images - it says it does, but it does not.
View 11 Replies
View Related
Jan 21, 2009
Is there any way to get the name of all the packages(e.g., com.android.calendar)on the phone via ADB shell?
View 3 Replies
View Related
Jan 14, 2010
Is it possible to control the package installation process in Android?The problem is that I'm asked to install and uninstall packages without using the default android installer. I need to control the entire process within my application. I already have my application in the /system/app/ folder, I also have been looking to the source code of the installer, but can't find a way to start installing or uninstalling a package on my own
View 1 Replies
View Related
Oct 25, 2010
Say, an android app is installed on a device. And it should automatically launch immediately after receiving a particular SMS. Is it possible?
View 5 Replies
View Related
Jun 2, 2010
Can anybody please guide me regarding how to launch my android application from the android browser?
View 8 Replies
View Related
Mar 8, 2010
I have developed 2 android applications and what i want is a way to launch my android application no2 from say my android application no 1 can anyone plz guide me with this. And tell me the extact intent i need to fire.
View 2 Replies
View Related
May 5, 2009
How can I launch an android activity, defined with.* public class MyActivity extends Activity {...}.from a Java method ?
View 6 Replies
View Related
May 7, 2010
Am I the only one who lurks on the Incredible boards whenever I visit AF? I figured the Incredible is in a way a cousin of the EVO (smaller, no 4G) so I'm trying to get at least a little bit of a heads up of what to expect when the EVO launches. I'm also new to Android so I'm picking up little tidbits in there as well. Call me crazy but it helps me cope with our wait.
View 32 Replies
View Related
Jun 19, 2010
I have searched and searched for help and am not finding anything. Well i take that back I have found countless guides on how to do it. tried many of them, didn't work, deleted everything, tried another , didn't work so now I am asking for help.I am trying to do screen captures using the SDK and eclipse and whatever else the guides say to download. Whenever i double click the ddms file a command box flashes up on the screen for a split second and thats it . Can't go any further if the commab box won't stay up. I think a windows window is supposed to pop up after that so I can choose my phone.
View 3 Replies
View Related
Nov 16, 2010
How can I launch a facebook app from my app in android?
View 2 Replies
View Related
Apr 23, 2009
How can I programatically launch Browser in my android application? And how can I do that with it opens an URL instead of home page?
View 2 Replies
View Related
Sep 27, 2009
1. i have a service that will launch an activity. How to make the activity launched like a phone call? i mean when the phone screen is locked, it will awaken.
2. how to start a service right after downloaded and installed from android market?
View 8 Replies
View Related
Nov 21, 2009
I would like to launch an activity at the end of a phone call. Could not find any reference to that. How can I do it?
View 1 Replies
View Related
Nov 24, 2010
I want to know to launch a satellite application using Intent, i knew how to launch the map application using Intent, but i want to display satellite view rather than map view, my code is uri = Uri.parse("geo:0,0?q=" + VALUE_baraddress1[0] + ", "
+ VALUE_baraddress2[0] + ", "
+ VALUE_baraddress3[0]);
Log.v(TAG, VALUE_baraddress1[0] + ", "
+ VALUE_baraddress2[0] + ", "
+ VALUE_baraddress3[0]);
startActivity(new Intent(Intent.ACTION_VIEW, uri));
View 1 Replies
View Related
Aug 3, 2010
I want to launch an android application from a remote server, i can see that in J2ME there is a class called PushRegistry, this class resolve this problem in ME but in android I cant do it.
View 2 Replies
View Related
Feb 17, 2010
Is there any way (e.g. with the command-line) I can upload an APK to an android phone wirelessly (wifi or Bluetooth) and launch it on the phone from a desktop machine?
I can do this things with abd from the command line when a USB cable is attached but I'd like to know if I can do this without having to mess around with cables.
View 2 Replies
View Related