标签:
人生是一条没有回程的单行线,上帝不会给你一张返程的票。
本讲内容: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>标签:
原文地址:http://blog.csdn.net/liguojin1230/article/details/44262431