I am trying to develop an android widget that should show the latest news, but only one at a time. To see the next post the user could press arrow buttons.
I want it to look something like this:
What control should I use for this??
I am trying to develop an android widget that should show the latest news, but only one at a time. To see the next post the user could press arrow buttons.
I want it to look something like this:
What control should I use for this??
The controls that you can use in a widget(at least today, may change in future) are limited to:
A RemoteViews object (and, consequently, an App Widget) can support the following layout classes:
http://developer.android.com/guide/topics/appwidgets/index.html
And the following widget classes:
So I would have made an image(or more if you support different screens as you should) and add them to your project. Then I would use imagebutton, which is a supported control.