我刚刚在android studio中发现了seekbar离散小部件,我发现它非常有用,但是我不知道如何删除步长指示器,或者使用更合适的drawable对其进行更改.
有人设法做到了吗?
这是我当前搜索栏的屏幕:
我想更改所有当前的步数指示器,谢谢.
编辑:
这是我当前可绘制的进度:
<item androID:ID="@androID:ID/background" > <shape > <corners androID:radius="20dp" /> <gradIEnt androID:startcolor="@color/Trasparente" androID:centercolor="@color/Trasparente" androID:centerX="1" androID:endcolor="@color/Trasparente" androID:angle="0" /> </shape></item><item androID:ID="@androID:ID/progress" > <clip androID:clipOrIEntation="horizontal" androID:gravity="left" > <shape> <corners androID:radius="20dp" /> <gradIEnt androID:startcolor="@color/colorBluclima" androID:centercolor="@color/colorGreenServizi" androID:centerX="0.35" androID:endcolor="@color/colorRossoErrore" androID:angle="0" /> </shape> </clip></item>
这是布局中的我的搜索栏:
<Seekbar androID:maxHeight="12dp" androID:layout_wIDth="812dp" androID:layout_height="100dp" androID:max="19" androID:ID="@+ID/SeekbarStufa220" app:layout_constraintBottom_toBottomOf="parent" app:layout_constrainttop_totopOf="parent" androID:layout_marginStart="90dp" app:layout_constraintleft_toleftOf="parent" androID:layout_marginEnd="90dp" app:layout_constraintRight_toRightOf="parent" androID:paddingEnd="85dp" androID:paddingStart="85dp" androID:progressDrawable="@drawable/progress_seek_clima" androID:thumb="@drawable/ic_temprature" app:layout_constraintVertical_bias="0.79" androID:progress="10" />
拇指是一个简单的可绘制对象
解决方法:
我解决了使用Seekbar.discrete作为父代创建新样式的问题.
<style name="SeekbarWithoutSteps" parent="Base.Widget.AppCompat.Seekbar.discrete"> <item name="tickMark">@null</item></style>
总结 以上是内存溢出为你收集整理的Android seekbar离散,如何删除步骤指示器全部内容,希望文章能够帮你解决Android seekbar离散,如何删除步骤指示器所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)