[android-beginners] Re: How can my app let people pick a picture that I use as background in my app?

2010-07-30 Thread cellurl
I believe in transparency... In 1 month, my app has had 41 total
installs, 21 paid (non canceled).

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: How can my app let people pick a picture that I use as background in my app?

2010-07-29 Thread Nick Richardson
Step 1: Create new activity
Step 2: Create intent to launch that activity
Step 3: startActivityForResult()
Step 4: 
Step 5: Profit!

http://developer.android.com/reference/android/app/Activity.html#StartingActivities


On Wed, Jul 28, 2010 at 7:57 PM, cellurl gpscru...@gmail.com wrote:

 Can you elaborate a bit please? Intent covers so much material.
 Thank you very much!
 Jim


 On Jul 25, 10:36 am, Paul Turchenko paul.turche...@gmail.com wrote:
  Use intent to pick a picture and start activity for result
 
  On Jul 24, 10:47 pm, cellurl gpscru...@gmail.com wrote:
 
   How do I launch some external application to show phone pictures and
   let users pick one?
 
   The picture will serve as a background in my app.
   So all in all, I just need their selection. e.g. the path/name once
   they have chosen it.
 
   Something simple would be nice ;-)
 
   thanks
   jim

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




-- 
//Nick Richardson
//richardson.n...@gmail.com

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: How can my app let people pick a picture that I use as background in my app?

2010-07-29 Thread Justin Anderson
 Step 4: 
That would be onActivityResult()... taken directly from the link you posted

--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Thu, Jul 29, 2010 at 2:53 PM, Nick Richardson
richardson.n...@gmail.comwrote:

 Step 1: Create new activity
 Step 2: Create intent to launch that activity
 Step 3: startActivityForResult()
 Step 4: 
 Step 5: Profit!


 http://developer.android.com/reference/android/app/Activity.html#StartingActivities


 On Wed, Jul 28, 2010 at 7:57 PM, cellurl gpscru...@gmail.com wrote:

 Can you elaborate a bit please? Intent covers so much material.
 Thank you very much!
 Jim


 On Jul 25, 10:36 am, Paul Turchenko paul.turche...@gmail.com wrote:
  Use intent to pick a picture and start activity for result
 
  On Jul 24, 10:47 pm, cellurl gpscru...@gmail.com wrote:
 
   How do I launch some external application to show phone pictures and
   let users pick one?
 
   The picture will serve as a background in my app.
   So all in all, I just need their selection. e.g. the path/name once
   they have chosen it.
 
   Something simple would be nice ;-)
 
   thanks
   jim

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




 --
 //Nick Richardson
 //richardson.n...@gmail.com

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: How can my app let people pick a picture that I use as background in my app?

2010-07-29 Thread Nick Richardson
Indeed it would - I was hoping celluri would pick that part up on his own,
but you had to go and ruin the surprise!! :)

On Thu, Jul 29, 2010 at 1:58 PM, Justin Anderson janderson@gmail.comwrote:

  Step 4: 
 That would be onActivityResult()... taken directly from the link you posted

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --


 On Thu, Jul 29, 2010 at 2:53 PM, Nick Richardson 
 richardson.n...@gmail.com wrote:

 Step 1: Create new activity
 Step 2: Create intent to launch that activity
 Step 3: startActivityForResult()
 Step 4: 
 Step 5: Profit!


 http://developer.android.com/reference/android/app/Activity.html#StartingActivities


 On Wed, Jul 28, 2010 at 7:57 PM, cellurl gpscru...@gmail.com wrote:

 Can you elaborate a bit please? Intent covers so much material.
 Thank you very much!
 Jim


 On Jul 25, 10:36 am, Paul Turchenko paul.turche...@gmail.com wrote:
  Use intent to pick a picture and start activity for result
 
  On Jul 24, 10:47 pm, cellurl gpscru...@gmail.com wrote:
 
   How do I launch some external application to show phone pictures and
   let users pick one?
 
   The picture will serve as a background in my app.
   So all in all, I just need their selection. e.g. the path/name once
   they have chosen it.
 
   Something simple would be nice ;-)
 
   thanks
   jim

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




 --
 //Nick Richardson
 //richardson.n...@gmail.com

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




-- 
//Nick Richardson
//richardson.n...@gmail.com

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: How can my app let people pick a picture that I use as background in my app?

2010-07-29 Thread Justin Anderson
I figured I would let him figure out Step 5 the hard way  ;-)

Unless you have an absolutely freaking amazing app there is no profit.  I
have an app on the market that I think is pretty cool.  There is a free
version and a donate key for $0.99 that unlocks a few extra features.

I've made about $170 or so since last October...  With the amount of time I
put in to it I think I am making less than a penny per hour.  But I do it
for the fun of programming and because it is an app that I wanted on my
phone and couldn't find any that fully suited my needs...



--
There are only 10 types of people in the world...
Those who know binary and those who don't.
--


On Thu, Jul 29, 2010 at 3:34 PM, Nick Richardson
richardson.n...@gmail.comwrote:

 Indeed it would - I was hoping celluri would pick that part up on his own,
 but you had to go and ruin the surprise!! :)

 On Thu, Jul 29, 2010 at 1:58 PM, Justin Anderson 
 janderson@gmail.comwrote:

  Step 4: 
 That would be onActivityResult()... taken directly from the link you
 posted

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --


 On Thu, Jul 29, 2010 at 2:53 PM, Nick Richardson 
 richardson.n...@gmail.com wrote:

 Step 1: Create new activity
 Step 2: Create intent to launch that activity
 Step 3: startActivityForResult()
 Step 4: 
 Step 5: Profit!


 http://developer.android.com/reference/android/app/Activity.html#StartingActivities


 On Wed, Jul 28, 2010 at 7:57 PM, cellurl gpscru...@gmail.com wrote:

 Can you elaborate a bit please? Intent covers so much material.
 Thank you very much!
 Jim


 On Jul 25, 10:36 am, Paul Turchenko paul.turche...@gmail.com wrote:
  Use intent to pick a picture and start activity for result
 
  On Jul 24, 10:47 pm, cellurl gpscru...@gmail.com wrote:
 
   How do I launch some external application to show phone pictures and
   let users pick one?
 
   The picture will serve as a background in my app.
   So all in all, I just need their selection. e.g. the path/name once
   they have chosen it.
 
   Something simple would be nice ;-)
 
   thanks
   jim

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




 --
 //Nick Richardson
 //richardson.n...@gmail.com

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




 --
 //Nick Richardson
 //richardson.n...@gmail.com

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Re: How can my app let people pick a picture that I use as background in my app?

2010-07-29 Thread Nick Richardson
Join the club... I've made $8 in three weeks from mine.  At this rate, i'll
pay for my market account about the time it starts to snow :)

On Thu, Jul 29, 2010 at 2:39 PM, Justin Anderson janderson@gmail.comwrote:

 I figured I would let him figure out Step 5 the hard way  ;-)

 Unless you have an absolutely freaking amazing app there is no profit.  I
 have an app on the market that I think is pretty cool.  There is a free
 version and a donate key for $0.99 that unlocks a few extra features.

 I've made about $170 or so since last October...  With the amount of time I
 put in to it I think I am making less than a penny per hour.  But I do it
 for the fun of programming and because it is an app that I wanted on my
 phone and couldn't find any that fully suited my needs...




 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --


 On Thu, Jul 29, 2010 at 3:34 PM, Nick Richardson 
 richardson.n...@gmail.com wrote:

 Indeed it would - I was hoping celluri would pick that part up on his own,
 but you had to go and ruin the surprise!! :)

 On Thu, Jul 29, 2010 at 1:58 PM, Justin Anderson janderson@gmail.com
  wrote:

  Step 4: 
 That would be onActivityResult()... taken directly from the link you
 posted

 --
 There are only 10 types of people in the world...
 Those who know binary and those who don't.
 --


 On Thu, Jul 29, 2010 at 2:53 PM, Nick Richardson 
 richardson.n...@gmail.com wrote:

 Step 1: Create new activity
 Step 2: Create intent to launch that activity
 Step 3: startActivityForResult()
 Step 4: 
 Step 5: Profit!


 http://developer.android.com/reference/android/app/Activity.html#StartingActivities


 On Wed, Jul 28, 2010 at 7:57 PM, cellurl gpscru...@gmail.com wrote:

 Can you elaborate a bit please? Intent covers so much material.
 Thank you very much!
 Jim


 On Jul 25, 10:36 am, Paul Turchenko paul.turche...@gmail.com wrote:
  Use intent to pick a picture and start activity for result
 
  On Jul 24, 10:47 pm, cellurl gpscru...@gmail.com wrote:
 
   How do I launch some external application to show phone pictures
 and
   let users pick one?
 
   The picture will serve as a background in my app.
   So all in all, I just need their selection. e.g. the path/name once
   they have chosen it.
 
   Something simple would be nice ;-)
 
   thanks
   jim

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




 --
 //Nick Richardson
 //richardson.n...@gmail.com

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en




 --
 //Nick Richardson
 //richardson.n...@gmail.com

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this 

[android-beginners] Re: How can my app let people pick a picture that I use as background in my app?

2010-07-28 Thread cellurl
Can you elaborate a bit please? Intent covers so much material.
Thank you very much!
Jim


On Jul 25, 10:36 am, Paul Turchenko paul.turche...@gmail.com wrote:
 Use intent to pick a picture and start activity for result

 On Jul 24, 10:47 pm, cellurl gpscru...@gmail.com wrote:

  How do I launch some external application to show phone pictures and
  let users pick one?

  The picture will serve as a background in my app.
  So all in all, I just need their selection. e.g. the path/name once
  they have chosen it.

  Something simple would be nice ;-)

  thanks
  jim

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en