I want to add Pattern 6: QuickActions from android's blog to my app.

Any code snippet?

Anyone try to do it already?

Should this work on android 1.5?

link|improve this question

I would also be very interested into a snippet. – Toni Menzel Jun 2 '10 at 13:04
+1 A snippet will help me greatly – ZelluX Jun 2 '10 at 13:06
feedback

5 Answers

up vote 2 down vote accepted

That app is going to be open sourced at some point so you may want to wait until then. But it could be done with a Dialog with a custom background drawable, and using Window.LayoutParams to position the dialog.

link|improve this answer
4  
Here we are almost a year later... – schwiz Oct 30 '10 at 22:48
1  
Almost two years now. – Vladimir Volodin Feb 8 at 8:44
feedback

I just found this question right after I posted my own question/answer. Here's the code I developed for this. http://code.google.com/p/simple-quickactions/

link|improve this answer
feedback

Look at line 1310 of ContactsListActivity.java from the Contacts application. It's the code that creates the intent for the contact shortcuts on the home screen that launch the quick actions intent for a contact.

This won't work before eclair.

link|improve this answer
feedback

Until the official Twitter app is open sourced by Google, you may want to take a look at this implementation:

It's really easy to use and works great.

link|improve this answer
feedback

I also have been searching for this and found someone through the wave of the Google IO session who has implemented such thing.

He posted the code on GitHub. I just tested it, and it works just great!

You'll also need some ressources from the project (drawables, styles..).

link|improve this answer
I am trying to utilize some of the code from the link that you posted above within my application and am finding it difficult to understand how to do this. Any ideas how to implement the QuickActionWindow and QuickActionItem with other code? – taraloca Aug 9 '10 at 17:03
Take a look at github.com/ruqqq/WorldHeritageSite/blob/master/src/sg/ruqqq/… Lines 123-204. It is really easy to use... – Hameno Aug 10 '10 at 14:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.