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

来源:互联网 发布:xbox360淘宝店推荐 编辑:程序博客网 时间:2024/04/29 22:38

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


本讲内容: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

0 0
原创粉丝点击