利用ClipDrawable显示评分的view

2023-10-23 07:38

本文主要是介绍利用ClipDrawable显示评分的view,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

ScoreView

利用ClipDrawable显示评分的view.同样类似的可以用在动态显示麦克风音量,只需要修改背景前景图,clipOrientation和gravity。

新建Drawable的xml:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"><item
        android:id="@android:id/background"android:drawable="@drawable/score_normal1" /><item android:id="@id/score_clip"><clip
            android:clipOrientation="horizontal"android:drawable="@drawable/score_select"android:gravity="left" /></item>
</layer-list>

新建attrs.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources><declare-styleable name="ScoreView"><attr name="text_color" format="color"></attr><attr name="text_size" format="float"></attr><attr name="max_score" format="float"></attr><attr name="src_drawable" format="reference"></attr></declare-styleable>
</resources>
public class ScoreView extends LinearLayout implements Level {private Context mContext;private ImageView scoreClip;private TextView tvScore;private float maxScore = 5.0f;private float textSize;//單位spprivate int textColor;private int resourceId;public ScoreView(Context context) {this(context, null);}public ScoreView(Context context, AttributeSet attrs) {this(context, attrs, 0);}public ScoreView(Context context, AttributeSet attrs, int defStyleAttr) {super(context, attrs, defStyleAttr);mContext = context;setHorizontalGravity(HORIZONTAL);TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.ScoreView);maxScore = typedArray.getFloat(R.styleable.ScoreView_max_score, 5.0f);textColor = typedArray.getColor(R.styleable.ScoreView_text_color, Color.BLACK);textSize = typedArray.getFloat(R.styleable.ScoreView_text_size, 14);resourceId = typedArray.getResourceId(R.styleable.ScoreView_src_drawable, R.drawable.clip_drawable2);typedArray.recycle();LinearLayout scoreView = (LinearLayout) LayoutInflater.from(mContext).inflate(R.layout.score_view, null);scoreClip = (ImageView) scoreView.findViewById(R.id.score_clip);tvScore = (TextView) scoreView.findViewById(R.id.tv_score);scoreClip.setImageResource(resourceId);tvScore.setTextSize(textSize);tvScore.setTextColor(textColor);addView(scoreView);}@Overridepublic void setPercent(float percent) {percent = percent > 1.0f ? 1.0f : percent;percent = percent < 0.0f ? 0.0f : percent;String result = String.format("%.1f", maxScore * percent);tvScore.setText(result);scoreClip.getDrawable().setLevel((int) (percent * 10000));}
}

使用:

    <comulez.github.scoreview.ScoreView
        android:id="@+id/sv"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_below="@+id/test_clip"app:max_score="5"app:src_drawable="@drawable/clip_drawable3"app:text_color="@color/colorAccent"app:text_size="12" />

源码地址:https://github.com/Ulez/ScoreView

这篇关于利用ClipDrawable显示评分的view的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/266468

相关文章

第10章 中断和动态时钟显示

第10章 中断和动态时钟显示 从本章开始,按照书籍的划分,第10章开始就进入保护模式(Protected Mode)部分了,感觉从这里开始难度突然就增加了。 书中介绍了为什么有中断(Interrupt)的设计,中断的几种方式:外部硬件中断、内部中断和软中断。通过中断做了一个会走的时钟和屏幕上输入字符的程序。 我自己理解中断的一些作用: 为了更好的利用处理器的性能。协同快速和慢速设备一起工作

安卓链接正常显示,ios#符被转义%23导致链接访问404

原因分析: url中含有特殊字符 中文未编码 都有可能导致URL转换失败,所以需要对url编码处理  如下: guard let allowUrl = webUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {return} 后面发现当url中有#号时,会被误伤转义为%23,导致链接无法访问

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

lvgl8.3.6 控件垂直布局 label控件在image控件的下方显示

在使用 LVGL 8.3.6 创建一个垂直布局,其中 label 控件位于 image 控件下方,你可以使用 lv_obj_set_flex_flow 来设置布局为垂直,并确保 label 控件在 image 控件后添加。这里是如何步骤性地实现它的一个基本示例: 创建父容器:首先创建一个容器对象,该对象将作为布局的基础。设置容器为垂直布局:使用 lv_obj_set_flex_flow 设置容器

C# dateTimePicker 显示年月日,时分秒

dateTimePicker默认只显示日期,如果需要显示年月日,时分秒,只需要以下两步: 1.dateTimePicker1.Format = DateTimePickerFormat.Time 2.dateTimePicker1.CustomFormat = yyyy-MM-dd HH:mm:ss Tips:  a. dateTimePicker1.ShowUpDown = t

MVC(Model-View-Controller)和MVVM(Model-View-ViewModel)

1、MVC MVC(Model-View-Controller) 是一种常用的架构模式,用于分离应用程序的逻辑、数据和展示。它通过三个核心组件(模型、视图和控制器)将应用程序的业务逻辑与用户界面隔离,促进代码的可维护性、可扩展性和模块化。在 MVC 模式中,各组件可以与多种设计模式结合使用,以增强灵活性和可维护性。以下是 MVC 各组件与常见设计模式的关系和作用: 1. Model(模型)

小程序button控件上下边框的显示和隐藏

问题 想使用button自带的loading图标功能,但又不需要button显示边框线 button控件有一条淡灰色的边框,在控件上了样式 border:none; 无法让button边框隐藏 代码如下: <button class="btn">.btn{border:none; /*一般使用这个就是可以去掉边框了*/} 解决方案 发现button控件有一个伪元素(::after

MFC中Spin Control控件使用,同时数据在Edit Control中显示

实现mfc spin control 上下滚动,只需捕捉spin control 的 UDN_DELTAPOD 消息,如下:  OnDeltaposSpin1(NMHDR *pNMHDR, LRESULT *pResult) {  LPNMUPDOWN pNMUpDown = reinterpret_cast(pNMHDR);  // TODO: 在此添加控件通知处理程序代码    if

MFC中App,Doc,MainFrame,View各指针的互相获取

纸上得来终觉浅,为了熟悉获取方法,我建了个SDI。 首先说明这四个类的执行顺序是App->Doc->Main->View 另外添加CDialog类获得各个指针的方法。 多文档的获取有点小区别,有时间也总结一下。 //  App void CSDIApp::OnApp() {      //  App      //  Doc     CDocument *pD

Caused by: android.view.WindowManager$BadTokenException: Unable to add window -- token android.os.B

一个bug日志 FATAL EXCEPTION: main03-25 14:24:07.724: E/AndroidRuntime(4135): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.syyx.jingubang.ky/com.anguotech.android.activity.Init