Android :: Gps Share App
Oct 18, 2010allows you to share your gps location with another phone, that allows that other phone to get directions to your location?
View 4 Repliesallows you to share your gps location with another phone, that allows that other phone to get directions to your location?
View 4 RepliesI am just wondering if anyone would like to share pics of how you have you 7 screens setup.
View 49 Replies View RelatedI did a few searches but couldn't find anything specific to what I'm talking about. My wife and I both got Droids the other day and love them. We are enjoying finding apps and all that stuff, but one thing I haven't been able to figure out is how we can share applications between us. Granted I dont want to illegally share apps with random people and friends, just between my wife. Not big into paying for 1 app 2 times so that we can share an experience. We both have ipod touch's, and we have always been able to share the apps with that by my 'authorizing' her ipod to match mine. She still has her email and all that, just we share a purchasing account. I imagine there is a backdoor way to copy apps and api's, but i dont want to get into that. I used to have a custom rom winmo and part of the appeal of the droid was it would do everything i want without having to crack it. I heard google was thinking about app sharing, and app2sd is in official development, but is there anything I can do now?
View 1 Replies View RelatedI want many app share one class, for example,I have MessageVo,I want testApp and testTwoApp share MessageVo.but I don't know TestTwoApp use MessageVo.
View 6 Replies View RelatedIs it possible to share resources across APK's? For example, can application A (in APK A) load an icon or layout view from application B (in APK B)?
View 3 Replies View RelatedI have an apk (App1) that has a raw resource (res/raw/mytextfile.txt) and I would like to read that text file from another apk (App2). I define a content provider in App1 and I override the openFile(Uri, String) method as follows:
CODE:.......
App2 does the following to try to get access to mytextfile.txt:
CODE:.........
However, when I read and write out the contents of the BufferedReader, I get way more than just the contents of mytextfile.txt.
I played with this some more and found that the file desriptor returned to App2 is pointing to the App1 apk file. I wrote out the contents of the BufferedReader to a file and did a binary comparison to App1.apk. The two files were identical.
I'm running into some issues when trying to share files between android phones. I tried emailing the .apk, tried uploading to go aruna, but it wont download. let me know if there s iIbetter way.
View 1 Replies View RelatedI am working on couple android applications which share a common component. The component has Activities, Service and own AndroidManifest.xml. After research, it seems there is no concept of run time share library among applications in Android. So I am looking for a way to linked the share component with other applications at compile time. Applications which will use the component can come from external, therefore I will only provided the compiled file. I would like to build the component into own apk or jar file, can external application include my jar/apk file into their package and be able to start my activity? Please share your experience and advice.
View 3 Replies View RelatedAndroid: i want to create service by extending a Service class which i start when application get started and all activities can share its state and when i want stop it from other activity and when i want start it again from any activity ?
View 1 Replies View RelatedThe app has an intent filter to allow it to appear in the share menu in other applications via ACTION_SEND intents. The app itself also has a share menu using ACTION_SEND and create Chooser(), and my app appears in the list. Since they are already in my app it seems strange to have them be able to share back to itself. Is there a way for my app not to appear in the list if it's being called from my app?
View 1 Replies View RelatedI wrote a JAVA application with native methods, and trigger encoding program in native methods. That makes two processes, one is application process, another is encoding process.I would like to know if there is a way to get encoded data from encoding program and pass them to JAVA application.
View 2 Replies View RelatedIn Android, is it possible to share files between 2 different apps running in separate processes?
View 2 Replies View RelatedI have two applications which i want them to share the same arraylist.
How could i achive something like that? is there anything in Android for sharing such a prefrenceses?
I want to be share my favorite apps with friends. Is there an application that makes this easy to do? I want to be able to select an application on my android and click a 'share this app' or 'send link to this app'. I would also like to mark my apps as favorite and have a list of favorite apps be 'shareable'
Any advice? is this possible today?
I have two activities in two different packages: com.foo.a and com.foo.b. Is it possible to create an PreferenceActivity (with the exact same XML file) so that the preference is shared across the two activies?
View 2 Replies View RelatedI am looking for an app that I can save PDF's of menus and recipe's etc... and share them with my wife. Anything like that out there.
I looked into SpringPad but it doesn't necessarily share...you can make items public and have someone follow your account.
Google Docs may work, but I am looking for an app, not a web interface.
I have an EVO and an ipod touch. Is there a way to stream my music I installed on my 64GB sdcard on my evo to my 8gb itouch? I have been tethering my touch with my evo and wanted to listen to my larger collection I have on the Evo. Thanks
View 2 Replies View RelatedI would like to make a nightly job that moves photos from my SD card to a share on my home network. I have tasker and can set it to turn on wifi at a certain time, however tasker can only move a file if it is given a specific file name. It doesn't seem to be able to move all files in a specific directory (unless I am mistaken).
View 4 Replies View RelatedOK, OK, call me an infidel, but I do have a friend who has an iPhone.
The other day I took some video, and wanted to share it, but it was too big to fit in an email message
Would a file sharing app via bluetooth work?
Click for Image 1
AFileShare(was named as "discover") is a mobile file manager application that allows you to manage, store, view and transfer files with other computers or GPhones, within the same Wi-Fi network. It also allows you to access local or public servers on the Internet, both within or without Wi-Fi connections.
Click for Image 2
Can i share one application related data with another. Say I have a music file in resources/raw folder of apk2. Can I use the same file in apk1.
View 3 Replies View RelatedI write Android apps, distributed via the Market. A user has written asking whether they can have the raw .apk of one app (they're in a country where the Market isn't available).
Is it safe to do this, or do I risk getting ripped off in some way - having my app copied and redistributed, for example?
I made a library that I access and use across my app.
My code looks something like this...
I have a need to share preferences between two apps, where one app writes the preferences and the other needs read only access.
I notice that there is this API available in Context :
public abstract SharedPreferences getSharedPreferences (String name, int mode). Where I can set the mode to : MODE_WORLD_READABLE which according to docs means that it will allow all other applications to have read access to the created file.
My question is : What should be my filename so that the file gets created and is shared between the apps.
If I give a relative path (getSahredPrefs("filename", MODE_WORLD_READABLE)) then it gets created in the "data" directory of the writing app and the other non creating application is not able to get to it using the same arguments i.e. - getSahredPrefs("filename", MODE_WORLD_READABLE).
So I assume I need to provide a absolute path - something like ("/data/ data/<pkgname>/<subdir>/filename", MODE_WORLD_READABLE) but I do not know how to construct that generically using provided APIs so that it works on every Android phone/image.
Is there any way to share the same object of the View across various activities? For example myApp has 4 activities, and every activity shows a Logo at the top of the screen. Now each activity will initiate 4 copies of the same Logo. So is there any way to get around this? And if 3 out of 4 share the same logo?
View 1 Replies View RelatedI cooked this up and wanted to share. By following the instructions here I was able to customize my N1 homescreen with the 3rd greatest British rock band; The Who! You will need ADW or LauncherPro and Desktop Visualizer and of course photo editing skills if you want to make a custom screen.
View 5 Replies View RelatedI want to share data between 2 applications. the idea is both applications can write and read the SAME data and there is no dependency which one of the apps is installed or first created the data. I have 2 version of the same app: regular and premium and I don't know which of them will be first installed and both of them can change it.I tried to use ContentProvider but the problem is that only the first app can create the Provider and when it is uninstalled it deletes that custom Provider. I want the Content to be kept for the second app. Also, I tried to use Settings.System which keeps the data regardless if the application is installed or not but I don't want to use the permission for that (it is very problematic from user perspective). BTW, it seems that I can change ANY of the Settings.System which is not secured from Android OS perspective - but this is a subject for other post.
View 14 Replies View RelatedSharing an Options Menu between Activity and Map Activity. Is this possible? I have an Options Menu shared between multiple Activities but now I need that menu in a Map Activity.
View 1 Replies View Relatedi made news applicaion in android using RSS feed and now i want to share some news ie i want to upload links from my app to facebook, twitter etc.Is it possible?
View 2 Replies View RelatedI have two services, both of them lies in separate apk, which run in same process. The two service share same jar file by <uses-library> method. The jar file implement a class, say "test", is a singleton. But I found that two instance of test is created under this case, could anybody give me some tips? I want to ensure it's singleton. Code...
View 8 Replies View Related