Home » Java » Archive by category 'Java Development'

  • How to change android progressbar loading color!

    By on Java Development at Sep 10, 2016 1 Comment 1,507 views

    To change progressbar loading color of android just post this 3 line of code in your xml file where progress bar is located   android:indeterminate="true" android:indeterminateTintMode="src_atop" android:indeterminateTint="@color/colorAccent" before adding this progress bar will be look like <ProgressBar android:id="@+id/progressBar" android:layout_width="wrap_content" android:layout_height="wrap_content" Read More