时间:2021-05-21
角标绘制过程:用画笔量出一个字符的宽度作为角标背景的半径(R),然后判断传入字符串的总长度
如果只有一位字符:那么就以 R 为半径,画一个圆,然后在圆中写上数字
如果有两位以上的字符,就不能单纯用一个圆了,用画笔测量字符串的完整长度( len ),然后在右上角画一个圆,在这个圆的圆心左边 len 长度的位置 作为圆心再画一个圆,最后以这个两个圆的上下顶点(一共四个)构成一个矩形,进行填充
源码地址:https://github.com/SiKang123/AndroidToolBox
效果如下:
集成方法
在Project的 build.gradle 下添加
allprojects { repositories { ... maven { url 'https://jitpack.io' } }}在Module的 build.gradle 下添加
dependencies { compile 'com.github.SiKang123:AndroidToolBox:1.0'}使用方法
图片中的效果,Layout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center_horizontal" android:orientation="vertical" android:paddingTop="50dp"> <android.simple.toolbox.widget.CornerImageView android:layout_width="50dp" android:layout_height="50dp" android:layout_margin="20dp" android:src="@mipmap/ic_launcher" app:cornerBackground="@color/red" app:cornerText="9" app:cornerTextColor="@color/white" app:cornerTextSize="11dp" /> <android.simple.toolbox.widget.CornerImageView android:layout_width="50dp" android:layout_height="50dp" android:layout_margin="20dp" android:src="@mipmap/ic_launcher" app:cornerBackground="@color/red" app:cornerText="99" app:cornerTextColor="@color/white" app:cornerTextSize="11dp" /> <android.simple.toolbox.widget.CornerImageView android:layout_width="50dp" android:layout_height="50dp" android:layout_margin="20dp" android:src="@mipmap/ic_launcher" app:cornerBackground="@color/red" app:cornerText="999" app:cornerTextColor="@color/white" app:cornerTextSize="11dp" /> <android.simple.toolbox.widget.CornerImageView android:id="@+id/progress_imageview" android:layout_width="60dp" android:layout_height="60dp" android:layout_margin="20dp" android:src="@mipmap/ic_launcher" app:cornerBackground="@mipmap/shanchu" app:cornerLoadColor="@color/alpha_black_35" app:cornerRadius="7dp" /></LinearLayout>Activtiy:
@Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_cornerimage); //设置最后一个图片的加载进度为20%,并添加点击事件 CornerImageView imageView = (CornerImageView) findViewById(R.id.progress_imageview); imageView.progress(20); imageView.setOnCornerClickListener(new CornerImageView.OnCornerClickListener() { @Override public void onCornerClickListener(View view) { Toast.makeText(SimpleCornerImageActivity.this, "角标被点击", Toast.LENGTH_SHORT).show(); } }); }以上这篇Android 实现带角标的ImageView(微博,QQ消息提示)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Android分享功能的实现Android程序里面的分享功能分为第三方程序分享,就是使用QQ空间,QQ微博,新浪微博,人人等第三方包进行分享;还有就是用本地程序
本文实例讲述了jQuery实现仿新浪微博浮动的消息提示框。分享给大家供大家参考。具体如下:这是一款jQuery实现的仿新浪微博新消息提示框效果,支持智能浮动定位
ImageView设置手指滑动缩放效果,具体实现步骤大家通过本文学习下吧!实现步骤1,imageview设置scaletype为android:scaleTyp
微博发音乐带三角的方法如下: 1、在微博中,点击页面右上角的加号。 2、进入发微博页面,点击输入页面的井号键,之后搜索需要分享的音乐。 3、在搜索结果中点
本文实例为大家分享了Android实现图片加载进度提示的具体代码,供大家参考,具体内容如下先上图:实现原理:第一个控件的实现原理是重写ImageView的onD