Is it able to put views to the left, but off-screen?
I want display three views(images) but only the second fit on the screen, something like:
+---------------------+
| Screen |
+-------+ +-------+ +-------+
| | | | | |
| image | | image | | image |
| | | | | |
+-------+ +-------+ +-------+
| |
+---------------------+
I would like to start be visible in this form.
You can use several approaches:
Gallery(http://developer.android.com/resources/tutorials/views/hello-gallery.html)HorizontalScrollView(http://developer.android.com/reference/android/widget/HorizontalScrollView.html)ViewPager(http://android-developers.blogspot.com/2011/08/horizontal-view-swiping-with-viewpager.html)The choice now depends on what exactly you want to perform in your app.
Hope this helps!
In case you need something more specific, please shoot it!