android widgets imageview,Android 实现带角标的ImageView(微博,QQ消息提示)

角标绘制过程:用画笔量出一个字符的宽度作为角标背景的半径(R),然后判断传入字符串的总长度

如果只有一位字符:那么就以 R 为半径,画一个圆,然后在圆中写上数字

如果有两位以上的字符,就不能单纯用一个圆了,用画笔测量字符串的完整长度( len ),然后在右上角画一个圆,在这个圆的圆心左边 len 长度的位置 作为圆心再画一个圆,最后以这个两个圆的上下顶点(一共四个)构成一个矩形,进行填充

效果如下:

2179cb1f6774339ebb051242886758f3.png

集成方法

在Project的 build.gradle 下添加

allprojects {

repositories {

...

maven { url 'https://jitpack.io' }

}

}

在Module的 build.gradle 下添加

dependencies {

compile 'com.github.SiKang123:AndroidToolBox:1.0'

}

使用方法

图片中的效果,Layout:

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: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: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: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: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" />

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消息提示)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值