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?

Android :: Create a photo sharing activity?


Android :: Favorite Photo Sharing App

Dec 10, 2009

What is your favorite photo sharing App?

View 1 Replies View Related

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 :: 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.

View 5 Replies View Related

Android : Sharing Gps Stuff Between Several Activity

May 11, 2010

I found myself using the same code for accessing to gps / cell location stuff from a couple of activities of my application. What I was wondering now is, which is the best way to avoid code duplication? Should I use a superclass for the activities which implements that kind of stuff? Use an helper class? How do you deal with this kind of problems? You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

View 3 Replies View Related

Android : TabWidget Activity Handling - Does It Create New Activity EveryTime?

Apr 27, 2010

When a TabWidget is using intents to designate the target Activity for each tab, is there any special handling of those Activities on the Activity Stack outside of the default operation? For Instance, if my app has tabs A, B, and C, and I click them in this order--A, B, A, C, A, B--how will the Activity stack change? My understanding of the default operation, if startActivity() is called each time on the intent, would have the Stack keep loading up new instances of the activities: A, AB, ABA, ABAC, ABACA, ABACAB It's hard to believe that's how it works though... Seems like it would be a waste of resources and could be endless. Can anyone tell me how this will actually work?

View 2 Replies View Related

Android :: Way To Create A Photo Gallery On Droid?

Nov 16, 2010

I want to create a photo gallery on Android. I'm using Gallery and BaseAdapter to create a scrollable gallery. Now I want to add action when an image of the gallery is shown(each image's width is the same as screen width), so I need to get its index in the image array. My question is how to get the index of the image which shows on the screen?

View 1 Replies View Related

Android :: How Can I Create Photo - Apply Cool Effects With Camera

Jun 11, 2010

I'd like to make an Android app that lets a user apply cool effects to photos taken with the camera. There are already a few out there, I know, but I'd like to try my own hand at one.

I have been googling and stack-overflowing, but so far I've mostly found some references to published papers or books. I am ordering this one from Amazon presently - Digital Image Processing: An Algorithmic Introduction using Java

After some reading, I think I have a basic understanding of manipulating the RGB values for all the pixels in the image. My main question is how do I come up with a transformation that produces cool effects?

By cool effects I mean some like those in these iPhone apps:

I already have quite a bit of experience with Java, and I've made my first app for android already. Any ideas?

View 1 Replies View Related

How To Create Tables That Associate Each Photo With Numerical Value

Apr 9, 2012

I want to create a calculator that has specific functions. So for example if someone wants picture 1,5,7,9 and each photo has a number associated with it, it will deduct from a predefined total number. Once the predefined number is reached, it cannot exceed it. I downloaded Eclipse, ran emulators and have done the hello world. I don't know where to go from here. How to create tables that associate each photo with a numerical value.

View 1 Replies View Related

Create New Activity Or Update View Of Existing Activity?

Dec 24, 2012

I am working on developing an app and I am not sure when should I use a new activity and when should I update the existing view.

For example, lets say I have a view that shows a multiple choice question.Now, when the user selects his choices and clicks on say "Evaluate", I want to show the same question view but along with the right answers and explanations for each option. So does that mean, I should send an Intent upon a click on Evaluate or I should just update the view (i am not sure how)?

If I send an intent and show a new screen, how can the user go back to the next question without displaying the answers? If I don't create an new activity, how can I update the existing view that is already displayed?

View 4 Replies View Related

Android :: Live Wallpaper - Cropping Photo Activity

Jun 1, 2010

I'm trying to crop a photo to use in a Live Wallpaper but I'm getting a FileNotFoundException when the crop activity tries to save my new cropped image. This is the code I'm using:

File file = new File(getFilesDir(), "wallpaper.jpg");
Intent intent = new Intent("com.android.camera.action.CROP");
intent.setData(uri);
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
intent.putExtra("outputX", metrics.widthPixels * 2);
intent.putExtra("outputY", metrics.heightPixels);
intent.putExtra("aspectX", metrics.widthPixels * 2);
intent.putExtra("aspectY", metrics.heightPixels);
intent.putExtra("scale", true);
intent.putExtra("noFaceDetection", true);
intent.putExtra("output", Uri.parse("file:/" + file.getAbsolutePath()));
startActivityForResult(intent, REQUEST_CROP_IMAGE);

The wallpaper.jpg file seems to exist on DDMS file explorer so I'm not sure what I'm doing wrong.

View 2 Replies View Related

General :: Sharing Google Play Account Without Sharing Everything Else?

Sep 19, 2012

I have my Google account also setup on my wife's phone so we can share purchased apps. However, everything else is shared too. For example, even though I have sync for everything on my account turned off, my calendar still showed up on my wife's phone until I disabled it in the calendar app. Also, I can't remove my Google Talk account from her phone so my messages show up on her phone.

This is on a pair of stock Samsung Galaxy S3 phones.

View 2 Replies View Related

Android :: Can I Create An Activity For A Particular Task?

Mar 17, 2010

Here's my use case: The app starts at a login screen. You enter your credentials and hit the "Login" button. Then a progress dialog appears and you wait for some stuff to download. Once the stuff has downloaded, you are taken to a new activity. Exactly which activity you are taken to depends on the server response.
Here's my problem: If you go HOME during this login/download process, at some point in the near future your download will complete and will invoke startActivity(). So then the new activity will be pushed to the foreground, rudely interrupting the user. I can't start the activity before I start the download, because, as I mentioned earlier, the activity I start depends on the result of the download.

I would obviously not like to interrupt the user like this. One way to solve this is to refrain from calling startActivity() until the user returns to the app. I can do this by keeping track of the LoginActivity's onStop() and onRestart(). But I'm wondering, is there any way to create the activity while it is in the background? That way the user returns to the app and he is ready to go. otherwise he would have to wait for the new activity to be created (which could take some time because the new activity also has to download and display some data). Update: Guess what? I LIED! I could have sworn that starting this activity was causing it to come to the foreground, but I went back to test it again and the problem has magically disappeared. I tested in both 1.6 and 2.0.1 and both OSes were smart enough not to bring a backgrounded task to the front.

View 2 Replies View Related

Android :: Create Project And Activity Name

Nov 9, 2009

Once upon a time (Android 1.5 and earlier), when you would create a new project using the "android create project" command, it worked well -- you had an app that could immediately be compiled and installed.

Now, though, when you run that command, a number of places need fixing up, where ACTIVITY_NAME shows up instead of the activity name specified...depending on the API level you target.

For example:

CODE:............

leaves ACTIVITY_NAME in:

CODE:..........

If I change the target to 1, 3, or 4, it works as expected. If I have the target as 2 or 5, it gives me the ACTIVITY_NAME.

So, I'm curious to know if:

a. This is a bug, or

b. I'm missing something (despite this example coming straight from the docs), or

c. I've lost my marbles

View 2 Replies View Related

Android :: How To Create A New Activity In Eclipse?

Sep 11, 2010

I've gone through a few guides and tutorials, and they're quite clear on how to start an activity (with intent). However, how do I create a new activity in Eclipse? I can probably do this by hand by then I have to modify the R file which is auto-generated. I can create a new XML layout.

View 3 Replies View Related

Android :: Create A ExpandableListView In One Activity?

Nov 2, 2010

I'm trying to create a ExpandableListView in one activity. I've looked in apis demos, and I've created ExpandableListView. The problem is, that I need to have this ExpandableListView in activity that is already created, and not in a new one.

I've used this code:

CODE:..............

View 3 Replies View Related

Android :: Create An Activity With 2 Status Bar?

Sep 16, 2010

Can i create an activity with 2 status bar?

Can i put the status bar at the bottom of Activity?

View 1 Replies View Related

Android : Can I Create Tabs From Activity?

May 18, 2010

Is it necessary to use TabActivity for displaying Tabs. I want to display tabs from Activity.

View 7 Replies View Related

Android :: How To Create A Transparent Activity Programmatically?

Jul 28, 2010

I want to launch an Activity with a webView as its content from current Activity. This new activity needs to be transparent and webview should be in the center. I looked around the web but only solutions I found were using style xmls. I want to do it using pure code i.e. no xml declarations. if anybody has come across this then please shed some light.

View 1 Replies View Related

Android :: Want To Create A ListView Activity With An Image In Every Row

May 5, 2010

I have been trying to create a ListView Activity with an ImageView in every row. I've used this tutorial: http://developer.android.com/resources/samples/ApiDemos/src/com/examp... The issue is that there are always some dividers missing whenever I run the example. The dividers are disappearing/appearing and flickering as i scroll the list (tested in emulator and HTC Tattoo). Strange is that the same example downloaded from the market (API Demos app) behaves correctly. Here is a screenshot of how it looks: http://yfrog.com/4cnokp.

View 5 Replies View Related

Android :: Whether To Start Stopped Activity Or Create New One?

Feb 18, 2010

Long story short, I have a LaunchActivity which is always called by LAUNCHER (i.e. the home screen). It then starts LoginActivity and then closes itself.This is the flow:
User launches app
LaunchActivity starts, starts
LoginActivity and then calls
finish() on itself (At this point
LoginActivity is the only Activity
on the stack)
User press "Home" button, stopping
LoginActivity
User launches the app again When the app is launched for the 2nd time, two things can happen:
LaunchActivity starts, finishes
itself and then STARTS LoginActivity
LaunchActivity starts, finishes
itself and then CREATES
LoginActivity, so there are now two
LoginActivitys on the stack.
(2) seems to happen when I restart Eclipse and the simulator (yeah I know, black magic). Some extra info: I'm not using any start flags and my manifest doesn't have any launchModes defined.

View 2 Replies View Related

Android :: Create Support Application To Activity?

Feb 22, 2009

In case there is anybody out there who would like to create a support- application to an activity that is already used by everybody on the Internet, the moment has come! I'm particularly interested in developers with deep knowledge of Linux services and/or the Android GUI. Note: this is not yet another password vault or similar, this is about *eventually getting rid* of passwords!

View 2 Replies View Related

Android :: How To Create Multiple Instances Of An Activity

Feb 19, 2010

I want to create multiple instances of an activity in the same process. Should I use FLAG_ACTIVITY_NEW_TASK flag like the code below?

CODE:...............

This code is executed in class A to create another instance of activity A.

This question, will this code create another task? As I understand is a process can only have one task. Does it mean the two activities will exist in different tasks? That's what I want. I want the two activities to be in the same process.

View 1 Replies View Related

Android :: Create A Class Which Not Extended Activity?

Sep 23, 2010

How to create a class which not extended Activity & how can i use it class?

View 1 Replies View Related

Android :: Create Transparent Activity In Droid?

Feb 1, 2010

I want to create transparent create on another activity.

How can I achieve this?

View 3 Replies View Related

Android : When To Use Layouts / Create New Activity Classes?

Mar 3, 2010

I'm writing a game for Android. My GUI has the following basic screens (i.e. the information and interactions required on each of these would take up the whole display):

Main menu (let you start a new game, enter settings, see high scores, see about screen)
Game screen i.e. where the actual game is played.
Settings screen.
High scores screen.
About screen (i.e. credits and a back button)
Game over screen (arrived at when the game ends)
Pause screen (pauses game and can access settings)

The following are some example transitions the user might make between these screens:

1->2->7->2->6 (starts new game, pauses game, returns to game, finishes game)
1->5->1->4->1 (views about screen, goes back to main, views score screen, goes back to main)

I'm really confused about when to have just one activity that switches layouts and when to create new activity classes. For example, when my game loads, I have a "main" activity that loads the main menu layout. When you click the settings button, I launch a "settings" activity (which uses android's standard settings GUI). For the moment, when you start a game, I switch the layout of "main" to the game screen layout (which just contains one big surface view). I'm not really sure what the best way to integrate the game over screen, high score screen, about screen etc.

Creating a new activity for each seems really heavy weight to me. There's quite a lot of boiler plate code involved for each activity. Plus, communication between activities seems like a pain as you have to use bundles. Using just one activity means I can just share object fields directly. It seems that using layouts for the above would be more compact. Can anyone give me some recommendations?

View 1 Replies View Related

Android : Can't Create Multiple ListViews In One Activity

Mar 23, 2009

I want to have multiple listviews in my activity. Every listview will have a different adapter and every item in the listview must be clickable (other actions for every listview).

So my problem now is that I can't create multiple clickable listviews. I have one listview like this <ListView android:id="@android:id/ list".. and the other listview looks like this <ListView android:id="@+id/ flightList"

The first listview looks like this in my activity hotelList = (ListView)findViewById(android.R.id.list);

the second: listView = (ListView) findViewById(R.id.flightList);

I can click on the first list and it does what it has to do, but i cant do anything with the second list.. probably because it hasn't the android:id/list declaration. does someone knows how I can solve this problem or other suggestions how I can get multiple lists in 1 activity.

View 25 Replies View Related

Android : How To Create Multiple Instances Of An Activity?

Jul 1, 2010

I was wondering is it possible to create multiple instances of a single Activity in Android?

I currently start my own inCall screen for a Voip Test by using the following code...

This allows me to start the Activity fine. However when I call it for a second it just returns to the Activity already created rather than creating a new Activity and placing it on the stack.

I would like to be able to create the activity multiple times so that I have two or 3 Activities on the stack and the user can switch between them, using Home, Back buttons etc... Is this possible and if so what am I doing wrong?

View 1 Replies View Related

Android :: How To Create Icon On Home Screen Through Activity

Oct 7, 2009

I would like to have icon created on home screen through an activity . All the icons of my activities are on main menu, once i click it my activity will be launched instead i need an icon on home screen which when clicked activity should be launched.

View 4 Replies View Related

Android :: Create Expandablelist View Activity With Checkboxes?

Feb 11, 2010

now i dont know which event to implement to handle checkboxes in list when i click on checkbox it expands the list.... how to distinguish list click with checkbox placed in expandable list? or kindly refer me to tutorial same as expandablelist view with checkboxes.

View 1 Replies View Related







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