I want to Make Horizontal Progress bar Thin i want to change Internal Progress Color Change when Progress is Increase.
<ProgressBar android:id="@+id/progressBar1"
android:layout_width="100dip"
android:layout_marginTop="200dip"
android:layout_height="wrap_content"
style="?android:attr/progressBarStyleHorizontal"
android:indeterminateOnly="false"
android:progressDrawable="@android:drawable/progress_horizontal"
android:indeterminateDrawable="@android:drawable/progress_indeterminate_horizontal"
/>
This link will help you to create progress bar that can be updated by thread.
You can use this style to create small progress bar
And you can use following code to change color.
Hope this can help !!