Reputation: 4641
I would like to create one feature in my app like in Twitter app for android. When you use it you have list of tweets. Every item has a text and button. When you click on a button a horizontal menu slides in. I`m wondering how to do something like that ? I know that I need to set OnClickListener for button. That is easy but how to slide in this menu ?
Upvotes: 0
Views: 1520
Reputation: 6892
This control is called QuickAction. Seen it here: http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/
Upvotes: 1
Reputation: 47751
Use an animation: http://developer.android.com/guide/topics/graphics/animation.html
Upvotes: 0