zoukankan      html  css  js  c++  java
  • 提示框的优化之自定义Toast组件之(一)Toast组件的布局实现

    开发步骤: 

    • 在res下layout下创建一个Toast的布局资源文件toast_customer.xml 
    • 在最外层布局组件中为该布局添加android:id属性 
     1 //toast_customer.xml
     2 
     3 <?xml version="1.0" encoding="utf-8"?>
     4 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     5     android:id="@+id/toast_layout_root"  //在最外层布局组件中为该布局添加android:id属性
     6     android:layout_width="match_parent"
     7     android:layout_height="match_parent"
     8     android:orientation="horizontal"
     9 
    10      <TextView
    11         android:id="@+id/toastMessage"
    12         android:layout_width="wrap_content"
    13         android:layout_height="30dp"
    14         android:gravity="center_horizontal|center_vertical"
    15         android:textSize="13dp"
    16         android:textColor="#000000"
    17         />
    18 </LinearLayout>
    • 在res下drawable下创建一个组件样式规则xml资源文件 
    1 //toast_border_bg.xml
    2 
    3 <?xml version="1.0" encoding="utf-8"?>
    4 <shape xmlns:android="http://schemas.android.com/apk/res/android" >
    5     <corners android:radius="8dp"/>
    6     <solid android:color="#55FFFFFF"/>
    7     <stroke android:width="0.5dp" android:color="#FFFFFF"/>
    8 </shape>
    • toast_customer.xml引用创建好的样式规则资源文件
     1 //toast_customer.xml
     2 
     3 <?xml version="1.0" encoding="utf-8"?>
     4 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     5     android:id="@+id/toast_layout_root"
     6     android:layout_width="match_parent"
     7     android:layout_height="match_parent"
     8     android:orientation="horizontal"
     9     android:background="@drawable/toast_border_bg">  //引用创建好的样式规则资源文件toast_border_bg.xml
    10 
    11     <TextView
    12         android:id="@+id/toastMessage"
    13         android:layout_width="wrap_content"
    14         android:layout_height="30dp"
    15         android:gravity="center_horizontal|center_vertical"
    16         android:textSize="22dp"
    17         android:text="测试"
    18         android:textColor="#000000"
    19         />
    20 </LinearLayout>

    运行:

    花朵开放的时候花蕾消逝,人们会说花蕾是花朵否定了的;同样地,当结果的时刻花朵又被解释为植物的一种虚假的存在形式,而果实是作为植物的真实形式而取代花朵的。这些形式不但彼此不同,而且互相排斥,互不相容。但是,他们的流动性却使他们成为有机统一体的环节,他们在有机统一体中不但互相抵触,而且彼此都同样是必要的;而正是这种同样的必要性才构成整体的生命。
  • 相关阅读:
    第十章第二节 阿基米德原理
    python-文件读写操作
    pyqt5-控件的显示与隐藏
    pyqt5-控件是否可用
    使用Visual Studio 2015开发Android 程序
    字节序(byte order)和位序(bit order)
    庖丁解牛-----Live555源码彻底解密(根据MediaServer讲解Rtsp的建立过程)
    H264系列(9):H264中的时间戳(DTS和PTS)
    EMIPLIB简介
    minidump-DMP文件的生成和使用
  • 原文地址:https://www.cnblogs.com/zulo/p/5090633.html
Copyright © 2011-2022 走看看