Possible Duplicate:
Custom Progress Bar in Android?
How can we use image with in progress bar like used in that a bucquet image marked by red rectangle. Please provide me some code for customizing progress bar and use image in that
Possible Duplicate:
Custom Progress Bar in Android?
How can we use image with in progress bar like used in that a bucquet image marked by red rectangle. Please provide me some code for customizing progress bar and use image in that
If you want to set the thumb
image of the progressBar
moving with the progress then you can you a seekBar
and define the thumb
image like this
<SeekBar
android:id="@+id/seekBar1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:progress="50"
android:thumb="@drawable/icon"
/>