Hi All, I am making a simple layout which contain SeekBar like this <?xml version="1.0" encoding="utf-8"?> <RelativeLayout android:layout_width="250px" android:layout_height="100px" xmlns:android=" http://schemas.android.com/apk/res/android"> <TextView android:text="@+id/seekValue" android:id="@+id/seekValue" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView> <SeekBar android:layout_width="fill_parent" android:layout_below="@+id/seekValue" android:layout_height="wrap_content" android:id="@+id/SeekBar" android:max="3000" android:soundEffectsEnabled="true"></SeekBar> <Button android:layout_width="125px" android:layout_below="@+id/SeekBar" android:text="OK" android:layout_height="wrap_content" android:id="@+id/seekOK"></Button> <Button android:layout_width="125px" android:layout_toRightOf="@+id/seekOK" android:layout_below="@+id/SeekBar" android:text="Cancel" android:layout_height="wrap_content" android:id="@+id/seekCancel"></Button> </RelativeLayout>
I would like to change my progress with minimum 50 value. What I want to say is when if scroll my seekbar the value changed value should be like 50,100, 150, 200, ....3000. thanks in advace regards NBS -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to android-beginners+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en