Android Studio - can the progressbar be customized like windows 10?

0

I would like to customize the Android progressbar like the one in the image, the one that says Indeterminate Progressbar , will it be possible to do it or is it only available in the Visual Studio resources?

Progressbar.xml

<?xml version="1.0" encoding="utf-8"?>
 <android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimaryDark">

<LinearLayout
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintLeft_toLeftOf="parent">

    <ProgressBar
        android:id="@+id/progress_bar_actualizando"
        android:layout_width="200dp"
        android:layout_height="200dp"/>

</LinearLayout>

 </android.support.constraint.ConstraintLayout>
    
asked by Leonidas 23.10.2018 в 21:49
source

0 answers