NumberProgressBar: Attributes not work?

Hi!

<com.daimajia.numberprogressbar.NumberProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"

        custom:progress_unreached_bar_height="4dp"
        custom:progress_reached_bar_height="8dp"

        custom:max="100"
        custom:progress="80"
         />

Unfortunately the height of the bar does not change. Is this a bug?

About this issue

  • Original URL
  • State: closed
  • Created 9 years ago
  • Comments: 30 (11 by maintainers)

Most upvoted comments

Нашел в чем причина: Android Studio created description xmlns:custom=“http://schemas.android.com/tools

should be replaced by xmlns:custom=“http://schemas.android.com/apk/res-auto

Thanks for your help and patience!