I just wanna know if anybody knows a good reference to something similiar to :
But for Android.
or I need to implement by myself ?
you may want to check http://developer.android.com/reference/android/widget/Gallery.html, customize it and implement a custom view for the items
Here is one example like it.. but more beautiful
http://www.inter-fuser.com/2010/01/android-coverflow-widget.html
Related
I know that this question was asked before but i'm using it in widget so i can't make a custom class (such as VerticalTextView).
Any idea how can i make it using xml?
Really in widget, I think there is only one way - try to use rotate. Similar example. Hope it's help.
I would to know if it possible to create this kind of list for Android: http://jquerymobile.com/test/docs/lists/lists-formatting.html
I didn't find any example.
Thanks
Yes, you'd have to implement a custom ListView.
I have seen this in several apps, and I was wondering if this is in the API. It basically looks like a speech bubble but it allows for internal layouts within it.
Thanks in advance!
It's a custom view... you can implement something like that easily or use this code:
http://code.google.com/p/simple-quickactions
By the way, in order to create a correct bubble you must use a 9patch image.
Looks like a PopupWindow
does anybody know what android widget/view this is:
i want to be able to implement a similar widget for my own needs but i dont know what kind of view/widget it is. All i see is that it is embeded on the ContactContract class as a quickContact object.
Anyone used one of these and customized it? if so, how? Thanks in advance
edit: is it also possible to include more than 5 items as shown below and have it scrollable horizontaly
This is QuickAction. Here you can find implementation of it. And there is repository on Github with source code.
I'm not quite sure, but it seems a custom toast
http://developer.android.com/guide/topics/ui/notifiers/toasts.html
How to implement a layer above a layout? like this pic:
http://ss12.sinaimg.cn/orignal/5d8cb30ag8f47eca43a5b&690
I guess this link will help you a lot. It shows examples on how to implement the Quick Actions pattern and also the kind of menus you requested which btw are also used in the Google Gallery app.
Here's the link: http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/
To create that kind of floating menu I think PopupWindow would be what you are looking for.