Android仿短信条目右上角的红色小圆球提示气泡

2015-05-26 0 998

Android仿短信条目右上角的红色小圆球提示气泡

可以重写View的onDraw完成该功能,也可以写布局文件完成该功能。现在使用布局文件完成。暂时先简单写一个TextView右上角的提示小红球,也可以根据需要写一个ImageView右上角的小红球提示。

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"  
        android:layout_width="match_parent"  
        android:layout_height="match_parent" >  
      
        <TextView  
            android:padding="2dip"  
            android:layout_width="match_parent"  
            android:layout_height="50dip"  
              
            android:gravity="center"  
            android:text="01234567890abcdefghijklmnopqrstuvwxyz!" />  
      
        <FrameLayout   
            android:padding="1dip"  
            android:layout_width="match_parent"  
            android:layout_height="wrap_content" >  
      
            <TextView  
                android:layout_width="20dip"  
                android:layout_height="20dip"  
                android:layout_gravity="right"  
                android:background="@drawable/tips_textview_bg"  
                android:gravity="center"  
                android:text="9"  
                android:textSize="15dip"  
                android:textStyle="bold"  
                android:textColor="@android:color/white" />  
        </FrameLayout>  
      
    </FrameLayout>  

依赖的tips_textview_bg.xml文件

    <?xml version="1.0" encoding="utf-8"?>  
    <shape  
        xmlns:android= "http://schemas.android.com/apk/res/android"  
        android:shape= "oval"  
        android:useLevel= "false" >  
          
        <solid android:color= "#FF0000" />  
          
    </shape>  

遇见资源网 java Android仿短信条目右上角的红色小圆球提示气泡 http://www.ox520.com/9358.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务