This is a custom thermometer view, you can set the progress, the maximum temperature.
dependencies {
compile 'com.zurich.thermometer:ThermometerView:1.0.1'
}
<com.zurich.thermometer.ThermometerView
android:id="@+id/thermometer_view"
android:layout_width="150dp"
android:layout_height="20dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:maxLength="50dp"
app:radius="10dp"
app:showNumber="true"
app:textBold="true"
app:textSize="14sp"
tools:layout_width="150dp" />