如何更改Android Progressbar微调器颜色

时间:2017-04-12 14:43:25

标签: android styles

以下是我需要更改进度条微调器或加载器

的颜色的代码
    <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"
    tools:context="com.conceptchest.conceptchest.mainConcept">

     <WebView
      android:id="@+id/mainWebView"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintBottom_toTopOf="@+id/progress1"
      app:layout_constraintTop_toTopOf="parent" />

     <ProgressBar
      android:id="@+id/progress1"
      aenter code herendroid:layout_centerHorizontal="true"
      android:layout_centerVertical="true"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintTop_toTopOf="parent"
      />


     />
    </android.support.constraint.ConstraintLayout>

请帮忙,因为我无法改变颜色 我试过添加样式而不能正常工作

2 个答案:

答案 0 :(得分:1)

以编程方式更改进度条颜色,如下所示:

scope: {
      code : "="
},
link: function (scope, element, attrs) {

            console.log('ldcCode', attrs.code);
           LITERALLY this prints to chrome dev console as below in bold

答案 1 :(得分:0)

这解决了我的问题 How to change color in circular progress bar?

我目前的代码是

       <ProgressBar
          android:id="@+id/progress1"
          android:layout_centerHorizontal="true"
          android:layout_centerVertical="true"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          app:layout_constraintRight_toRightOf="parent"
          app:layout_constraintLeft_toLeftOf="parent"
          app:layout_constraintBottom_toBottomOf="parent"
          app:layout_constraintTop_toTopOf="parent"
          android:background ="@xml/progress"
          />