码迷,mamicode.com
首页 > 其他好文 > 详细

第八十三讲:UI介面右上角带个泡泡效果

时间:2015-03-15 09:36:40      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

人生是一条没有回程的单行线,上帝不会给你一张返程的票。


本讲内容:UI介面右上角带个泡泡效果


如QQ消息右上边浮着一个泡泡形状提示有几条新消息!

     技术分享


下面是res/layout/activity_main.xml 布局文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@android:color/white"
    tools:context="com.example.test1.MainActivity$PlaceholderFragment" >
    
    <RelativeLayout 
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:background="@drawable/usb_android">
        
        <TextView 
            android:id="@+id/tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:gravity="center"
            android:text="3"
            android:textColor="@android:color/white"
            android:background="@drawable/bg2"/>
        
    </RelativeLayout>
    
</LinearLayout>

Take your time and enjoy it

第八十三讲:UI介面右上角带个泡泡效果

标签:

原文地址:http://blog.csdn.net/liguojin1230/article/details/44262431

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!