uiscrollview - Is there any possibilty to do the scorll view same as date picker scroll view in android? -
i have tried scroll view same date picker,but failed.
i have done through code:
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/linearlayout01" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_gravity="center_horizontal" android:orientation="horizontal"> <scrollview android:id="@+id/scrollview01" android:layout_width="wrap_content" android:layout_height="50dp" android:scrollbars="none" android:elevation="5dp" android:fillviewport="true" android:layout_gravity="center"> <linearlayout android:id="@+id/linearlayout02" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_gravity="clip_horizontal" android:orientation="vertical"> <textview android:text="movies" android:id="@+id/text01" android:layout_width="wrap_content" android:layout_height="wrap_content"/> - - - - </linearlayout> </scrollview> </linearlayout>
my output:-
i want pick 1 of scroll view select list in example,how can same date picker.
expected output:-
Comments
Post a Comment