Android 图标右上角添加数字提醒

方法一:使用开源项目ViewBadger,github上的地址:https://github.com/jgilfelt/android-viewbadger

效果如图所示:
Android 图标右上角添加数字提醒_第1张图片

[java] view plain copy
  1.        android:id="@+id/tv1"  
  2.        android:layout_width="wrap_content"  
  3.        android:layout_height="wrap_content"  
  4.        android:padding="15dp"  
  5.        android:text="文本1" />  
[java] view plain copy
  1. "font-family: Arial, Helvetica, sans-serif;">  
[java] view plain copy
  1. tv = (TextView) findViewById(R.id.tv1);  
  2. BadgeView badgeView = new BadgeView(MainActivity.this, tv);  //实例化BadgeView  
  3.          badgeView.setText("12");  
  4. //       badgeView.setTextSize(8.5f);  //设置文字的大小  
  5.          badgeView.setBadgePosition(BadgeView.POSITION_TOP_RIGHT);//设置在右上角  
  6.          badgeView.setTextColor(Color.DKGRAY);  //字体的设置颜色  
  7.          badgeView.show(); //显示  

[java] view plain copy
  1.   
这样就实现了上面的效果,注意引用 开源项目ViewBadger时,要和新建的工程文件在同一个文件夹内,否则会出错的
 

方法二:用框架架构布局FrameLayout

效果如图所示:
Android 图标右上角添加数字提醒_第2张图片
布局如下:这样就可以了
[java] view plain copy
  1.         android:id="@+id/frameLayout1"  
  2.         android:layout_width="wrap_content"  
  3.         android:layout_height="wrap_content" >  
  4.   
  5.         
  6.             android:id="@+id/textView1"  
  7.             android:layout_width="wrap_content"  
  8.             android:layout_height="wrap_content"  
  9.             android:padding="10dp"  
  10.             android:text="文本2" />  
  11.   
  12.         
  13.             android:layout_width="wrap_content"  
  14.             android:layout_height="wrap_content"  
  15.             android:layout_gravity="top|right"  
  16.             android:background="#FF0000"  
  17.             android:text="23"  
  18.             android:textColor="@android:color/white" />  
  19.   
  20.           

你可能感兴趣的:(Android 图标右上角添加数字提醒)