• Android 空心和实心按钮


    Android 空心和实心按钮

    做界面时 有时老要用到这种按钮 动画如下

    实心的

    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android" >
    
        <!-- 实心圆 -->
        <solid android:color="@color/btn_1cacff" />
    
        <padding
            android:bottom="@dimen/x8_dp"
            android:top="@dimen/x8_dp" />
        <!-- 圆角半径 -->
        <corners android:radius="@dimen/x16_dp" />
    
        <!-- <stroke -->
        <!-- android:width="1px" -->
        <!-- android:color="#000" /> -->
    
    </shape>

    空心的

    <?xml version="1.0" encoding="utf-8"?>
    <!--空心圆角矩形  -->
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle" >
     
        <corners android:radius="8dp" /><!-- 圆角半径 -->
     
        <stroke
            android:width="2dp"
            android:color="#0000ff" /><!--矩形的边线  -->
     
        <size
            android:height="50dp"
            android:width="400dp" /><!--矩形的宽高  -->
     
        <gradient
            android:endColor="#fff"
            android:startColor="#fff" /><!-- 矩形的内部颜色,这里设置成白色,即空心 -->
     
    </shape>
  • 相关阅读:
    Mac item 远程连接服务器
    搭建私人Git Server
    数据结构第三章小结
    第二章实践小结
    poj3617 Best Cow Line
    最长上升子序列问题
    Uva11450 Wedding shopping
    poj3050 hopscotch
    poj2718 Smallest Difference
    poj3669 Meteor Shower
  • 原文地址:https://www.cnblogs.com/huanyi0723/p/4867602.html
Copyright © 2020-2023  润新知