Android BadgeView使用
Posted 梦想还是要有的,万一实现了呢!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android BadgeView使用相关的知识,希望对你有一定的参考价值。
BadgeView是第三方的插件,用来显示组件上面的标记,起到提醒的作用,下载地址如下:http://files.cnblogs.com/files/hyyweb/android-viewbadger.zip 如示意图:
首先导入BadgeView的jar包到libs文件夹下,然后就可以使用它提供的类库了。核心代码如下:
package com.example.badgeview; import com.readystatesoftware.viewbadger.BadgeView; import android.os.Bundle; import android.app.Activity; import android.graphics.Color; import android.view.Menu; import android.widget.Button; import android.widget.ImageView; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button btn=(Button) findViewById(R.id.button1); ImageView target= (ImageView )findViewById(R.id.imageView1); BadgeView bv = new BadgeView(this, btn); bv.setText("1"); bv.setTextColor(Color.YELLOW); bv.setTextSize(12); bv.setBadgePosition(BadgeView.POSITION_TOP_RIGHT); //默认值 //bv.hide(); bv.show(); } }
以上是关于Android BadgeView使用的主要内容,如果未能解决你的问题,请参考以下文章
xamarin.android 给View控件 添加数字提醒效果-BadgeView