Android :: Android Photo Sharing Application / Program

Oct 15, 2010

What's everyone's favorite photo sharing program and does it have an Android app? I'm looking to move away from picasa since it strips a lot of EXIF data on upload.

Android :: Android Photo Sharing Application / Program


Android :: Share The Photos Between 2 Phones - Photo Sharing Application

Sep 3, 2010

I plan the weekend trip. My friend ask me to share the photo while trip. I can take the picture with my smartphone, and 3G internet connection is available on my phone. Is there a photo sharing application?

View 4 Replies View Related

Android :: Favorite Photo Sharing App

Dec 10, 2009

What is your favorite photo sharing App?

View 1 Replies View Related

Android :: Create A Photo Sharing Activity?

Aug 31, 2010

How can I create a custom activity that can be chosen by the user via the share option when viewing the photo gallery? I have options like "Share with Facebook, Twitter, FlickR" etc. But I want to add my own option in there.

i.e. Go to "Photos", then click the "Share" button. You will be presented with a bunch of share providers. What do I need to do to get my activity in there?

View 2 Replies View Related

Android :: Which Photo Program Can Put You Next To Celebrities

May 3, 2010

I had an Eris a while back and returned it..glad I did because now I have the Incredible which solved all of the problems I had with the Eris.

There was a photo program which could put you "next" to celebrities. I cannot recall the name of the program and did a search on the marketplace and could not find one..

View 1 Replies View Related

Android :: How To Delete Photo Just Taken In Program

Oct 14, 2010

I have written a program that uses the Intent for the image capture to get a photo using the application in the phone.

Using MediaStore.EXTRA_OUTPUT, I get a URI to the image, wich converted to a path results in something like "/external/images/media/NN" where NN is the number of the photo.

Now, in my program, after I read and manipulated the image, I want to delete that image.

How should I do that ?

(File image = new File(path); image.delete(); // returns false, so doesn't work)

View 2 Replies View Related

Sprint HTC Hero :: Add Folders To My Photo Program?

Jul 7, 2010

How do i add folders to my photo program....cuz I csb inly use the stock 4 or 5

View 4 Replies View Related

Motorola Droid :: Program To Make Panormaic Photo

Dec 6, 2009

Has anyone found a good program to make panoramic photos? I bought photostitch and am extremely disappointed with it. It kind of helps you line them up, but the photo's aren't even scaled together. Here are two examples of pictures I took today.

View 7 Replies View Related

Android :: Wireless File Sharing Application?

Apr 5, 2009

I noticed an app on the market a couple of weeks ago that allowed you to share files with your PC wirelessly but can't find it now. Any idea what it's called? It's a paid app.

View 8 Replies View Related

Android :: Sharing Data Between An Service And An Application

Jun 28, 2009

In order to share data between one of my own Android service and an application i am looking for the best way to do this. I have seen the shared memory drivers inside the GNU Linux kernel, but no Java api. Maybe the specific Google IPC Blinder cad be used for my need ?

View 10 Replies View Related

Android :: Private File Sharing Over Internet / Any Application?

Nov 8, 2010

There are many file sharing apps in market.
Which do you like or recommend for private file sharing over the internet?

View 8 Replies View Related

Android :: Sharing Resources Between Service - Application In Phone?

Feb 24, 2010

The code I am trying to implement includes a service and an application. When the application is first launched, it starts the service using the
startService(svc_name) call. Here svc name is an intent pointing to the class that runs the service.

I want to share a resource(file/socket connection) between the service and the application. For example one writes to a file and another reads from it. I am unable to get proper sync between the service and app. Could you please let me know how this can be achieved?

View 3 Replies View Related

Android :: ShareFile Beta - Application For File Sharing From Android Phone

Apr 30, 2009

This app allows you share file from android phone with any users my sms/email/link.
How it works:
1. Upload file to server.
2. Get link for file and send its by sms or email from application.

This is just beta. I am looking for any proposals and feedbacks. Download Send big files the easy way. Files too large for email attachments?
Current limitations: 50MB per user and 10MB per file. Also, because the server is running in test mode, files and accounts may be lost.

View 1 Replies View Related

Android :: Android - Image Gallery Sharing With Application

Oct 30, 2010

I've got an app that accepts images from the image gallery (via share menu). My app starts, and I do this:

Bundle bundle = getIntent().getExtras();
Object obj = bundle.get("android.intent.extra.STREAM");

While debugging, Eclipse is reporting the object obj is of type 'Uri@StringUri' (???) and inside it somewhere is the string 'content:
//media/external/images/media/992'.

Anybody know what type of object obj is so I can typecast it? And what's the string about? IE, how do I get to the image data?

View 1 Replies View Related

Android :: Get Rid Of Program Name Bar At Top Of Application?

Aug 19, 2010

I would like to get rid of the default Grey bar which appears at the top of my application.
I just can't seem to find the attribute or setting to do so.
how can this be achieved?

View 2 Replies View Related

Android :: Better Application To Implement XML Program?

Jun 17, 2010

what is the better application to implement XML program , XML Schema please I have problem with implement XML >>>>>>>>>>>>>>>>>

View 3 Replies View Related

HTC Desire :: Sharing Of Swype Application Allowed

Nov 17, 2010

I have a Desire and can't live without my swype for typing. My brother also has a Desire but hasn't got swype and the beta is closed. He wants to try and get swype onto his HTC by downloading mine. If he does this, will Swype allow it to be downloaded onto two phones or will they stop it?

View 8 Replies View Related

Android :: Is There Application To Replace The Car Home Program

Dec 21, 2009

Is there an app to replace the "Car Home" program that automatically opens when the Motorola Droid is placed in the car dock? It is bad enough that this screen comes up everytime you dock the phone in the car, but it is even more annoying that the "home" button is hijacked so that anytime you press it from any other program it takes you back to the "Car Home" instead of the main home. I would love to have an App that would allow you to designate a different program to open when in the dock, such as Quick Dial.

View 1 Replies View Related

Android :: How To Launch C Program Application At Start-up?

Mar 25, 2009

We are trying to launch C program application (for example, Helloworld) at start-up on ARM-based target board. We copied the application in /system/bin and modified the init.rc script to add the entry of the application in "on boot". But, still, the application does not launch at the start-up.

View 2 Replies View Related

Android : Program On Application - Not Activity - Exit

Jul 22, 2009

I have requirement that needs to save data to a file. During multiple Activitiy screens, I add different data to a list and finally when user is not using the app (means if user exits app by pressing "home" button or "call" button), just before exiting that app, i want to save that data of the list to a file.

coding before exiting activity screen is simple - by calling onDestory () method, but here I want not one activity but the application exit.

So my question is How do I write a code that will be executed just before application exits ? I tried created one class extends Application, and then I override onTerminate() method, but it's not get called when I exit ( pressing home button on device)

View 2 Replies View Related

Motorola Droid :: Android Photo Gallery Application

May 6, 2010

I want to develop an android photo gallery application. In which user should allow to select multiple images from the gallery and then user have to click submit button. When the user clicks the submit button then the selected images should be copped to a different folder.
If any one knows this please help me how to do it. If possible please share the code. Or give some URL so that i can get some useful information.

View 4 Replies View Related

Android :: Alternative (Fancy) Photo Gallery Application?

Jan 21, 2010

I have the default HTC Hero photo gallery and was wondering if there are any apps that have been made that are a bit more fancy than the standard Hero gallery.

View 1 Replies View Related

Android :: Cropping In Camera Application And Photo Location

Oct 26, 2009

I have not noticed this posted yet so just adding here for those that have not found it. The new camera/video/gallery application supports cropping. After taking a photo or viewing in the gallery, press the Menu button and Crop. You can resize the crop box by touching the edges or move it by touching in the center. Using this feature I was able to create and share panoramic images that were much more interesting. Clicking Menu and then More reveals the "Show on Map" command which displays the location the photo was taken.

View 3 Replies View Related

Samsung Captivate :: Backup Application / Program For Android

Nov 13, 2010

I'm coming from a Blackberry and I love that I was able to backup my entire phone on my computer with the desktop software. Is there any comparable application or software for Android (even if its not free) where I don't have to root my phone?

View 6 Replies View Related

Android :: Photo Gallery Application That Allows You To Move Photos From One Folder To Another

Oct 20, 2010

Is there a photo gallery application that allows you to move photos from one folder to another? I use a File Manager to do this, but I'm trying to help out a novice user on an Evo; the Evo Photos application doesn't seem to allow you to move photos.

View 4 Replies View Related

Android :: Get Photo Saved In Droid Cell Phone In Application?

May 20, 2010

I want display the images saved in the cell phone in my own application. now I am using MediaStore.Images.Media to do this. I can get the name, size and other information of the images. but i don't know how to get the bitmap? can u help me. thx.

There is a method getBitmap(ContentResolver cr, Uri url), but i don't know how to get the Uri of one certain image.

View 1 Replies View Related

HTC Incredible :: Gmail Application On DINC Does Not Support Video And Pic Sharing?

Jun 8, 2010

the gmail app on the DINC does not support video and pic sharing? m I missing something here. When you take a vid and go to share, gmail comes up as one of your options. If you proceed down this route, you don't get an error, but the vid never gets attached and delivered. The only way to do this is through the HTC Mail app. On this same note, another gripe I have is why Android lists the sharing options if you can't actually use them to share. You can't share a video over Handcent/Messaging Apps...so why show them as options for sharing? You can't upload to facebook directly, so why list them as an option. Seems like a glaring issue that will confuse newbies (my wife) and may ultimately affect their adoption of the platform. I'm all for the customization and openness of Android, but they need to work out these little quirks if they want to capture any respectable market share.

View 1 Replies View Related

HTC Droid Eris :: Any Application For Sharing Lists (Shopping / Movies)

Jan 22, 2010

I just switched over from the BB Tours and we used the BBM groups a lot, we used it to share lists (shopping, movies, etc). Is there any app out there that we can use to share lists again?

View 3 Replies View Related

Android :: Application / Program For Lock Pics / Videos With Password

Jun 7, 2010

i would like it if some one would tell me of an app that will lock with a password my pics/videos some phones come with this but i don't believe the DI dose so if some one could help that would be great!!!
basically i don't want others to see my videos / pics unless i unlock it

View 2 Replies View Related

Android :: Retrieve Message ID To Implement In Program For Twitter Application?

Sep 6, 2010

what is Message ID and how to retrieve that ID to implement in program for twitter application

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved