XUI框架圆角带图片 ButtonView

 

<<<<<<小图标 白色的看不见 点击可以下载 

 

 

//androidx项目    XUi框架
    implementation 'com.github.xuexiangjys:XUI:1.1.5'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.recyclerview:recyclerview:1.1.0'
    implementation 'com.google.android.material:material:1.1.0'
    implementation 'com.github.bumptech.glide:glide:4.11.0'
 <RelativeLayout
                android:id="@+id/rl_list"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@+id/pull_layout"
                android:background="@color/white">

                <com.xuexiang.xui.widget.button.ButtonView
                    android:id="@+id/bt_set_zs"
                    style="@style/ButtonView.Green"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="@dimen/dp_52"
                    android:layout_marginTop="@dimen/dp_20"
                    android:layout_marginRight="@dimen/dp_52"
                    android:paddingTop="@dimen/dp_12"
                    android:paddingBottom="@dimen/dp_12"
                    android:text="@string/tv_set_zs"
                    app:textDrawable="@mipmap/ic_tachometer_bai"
                    app:textRadius="@dimen/dp_24" />

                <com.xuexiang.xui.widget.button.ButtonView
                    android:id="@+id/bt_set_ryz"
                    style="@style/ButtonView.Green"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/bt_set_zs"
                    android:layout_marginLeft="@dimen/dp_52"
                    android:layout_marginTop="@dimen/dp_34"
                    android:layout_marginRight="@dimen/dp_52"
                    android:paddingTop="@dimen/dp_12"
                    android:paddingBottom="@dimen/dp_12"
                    android:text="@string/set_ryz"
                    app:textDrawable="@mipmap/ic_oxygen_bai"
                    app:textRadius="@dimen/dp_24" />

                <com.xuexiang.xui.widget.button.ButtonView
                    android:id="@+id/bt_set_bysj"
                    style="@style/ButtonView.Green"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/bt_set_ryz"
                    android:layout_marginLeft="@dimen/dp_52"
                    android:layout_marginTop="@dimen/dp_34"
                    android:layout_marginRight="@dimen/dp_52"
                    android:paddingTop="@dimen/dp_12"
                    android:paddingBottom="@dimen/dp_12"
                    android:text="@string/set_bysj"
                    app:textDrawable="@mipmap/ic_oxygen_bai"
                    app:textRadius="@dimen/dp_24" />

                <com.xuexiang.xui.widget.button.ButtonView
                    android:id="@+id/bt_set_off"
                    style="@style/ButtonView.Orange"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/bt_set_bysj"
                    android:layout_marginTop="@dimen/dp_40"
                    android:paddingTop="@dimen/dp_15"
                    android:paddingBottom="@dimen/dp_15"
                    android:text="@string/gbsb"
                    app:textDrawable="@mipmap/ic_off_bai"/>
            </RelativeLayout>
        </RelativeLayout>

styles.xml

  <!--button加图标自定义样式-->
    <style name="ButtonView.Green">
        <item name="textSolidColor">#19C45F</item>
        <item name="textSelectedSolidColor">#82DFA8</item>
        <item name="textNormalTextColor">#FFFFFF</item>
        <item name="textSelectedTextColor">#FFFFFF</item>

    </style>
    <style name="ButtonView.Orange">
        <item name="textSolidColor">#FF7373</item>
        <item name="textSelectedSolidColor">#FF2323</item>
        <item name="textNormalTextColor">#FFFFFF</item>
        <item name="textSelectedTextColor">#FFFFFF</item>
    </style>

 

简介欢迎使用SuperTextView,这篇文档将会向你展示如何使用这个控件来提高你构建项目的效率。CoverSuperTextView继承自TextView,它能够大量的减少布局的复杂程度,并且使得一些常见的效果变得十分容易实现且高效。同时,它内置了动画驱动,你只需要合理编写Adjuster,然后startAnim()就可以看到预期的动画效果。它仅仅是一个控件,所以你可以不费吹灰之力的在你的项目中集成使用。特点你从此不必再为背景图编写和管理大量文件了。重新优化的状态图功能使得你能够精确的控制状态图的大小,以及在SuperTextView中的位置。支持设置圆角,并且能够精确的控制圆角位置。能够轻松的实现控件边框效果。支持文字描边,这使得空心文字效果成为了可能。内置动画驱动,你只需配合Adjuster合理的使用即可。Adjuster的出现,使得你对控件的绘制过程具有了掌控权,良好的设计使得它能够完美的实现绝大部分你脑海中的效果。使用指南支持的属性SuperTextView十分方便的支持在xml中直接设置属性,并且你能够立即看到效果。就像你平时使用TextView一样方便。<SuperTextView     android:layout_width="50dp"     android:layout_height="50dp"     //设置圆角。会同时作用于填充和边框(如果边框存在的话)。     //如果要设置为圆形,只需要把该值设置为宽或长的1/2即可。      app:corner="25dp"       //设置左上角圆角     app:left_top_corner="true"     //设置右上角圆角     app:right_top_corner="true"     //设置左下角圆角     app:left_bottom_corner="true"     //设置右下角圆角     app:right_bottom_corner="true"     //设置填充颜色     app:solid="@color/red"       //设置边框颜色     app:stroke_color="@color/black"       //设置边框的宽度。     app:stroke_width="2dp"      //放置一个drawable在背景层上。默认居中显示。     //并且默认大小为SuperTextView的一半。     app:state_drawable="@drawable/emoji"       //设置drawable的显示模式。可选值如下:     // left、top、right、bottom、center(默认值)、     //leftTop、rightTop、leftBottom、rightBottom、     //fill(充满整个SuperTextView,此时会使设置drawable的大小失效)     app:state_drawable_mode="center"      //设置drawable的height     app:state_drawable_height="30dp"     //设置drawable的width     app:state_drawable_width="30dp"     //设置drawble相对于基础位置左边的距离     app:state_drawable_padding_left="10dp"     //设置drawble相对于基础位置上边的距离     app:state_drawable_padding_top="10dp"     // boolean类型。是否显示drawable。     //如果你想要设置的drawable显示出来,必须设置为true。     //当不想让它显示时,再设置为false即可。     app:isShowState="true"      //是否开启文字描边功能。     //注意,启用这个模式之后通过setTextColor()设置的颜色将会被覆盖。     //你需要通过text_fill_color来设置文字的颜色。     app:text_stroke="true"      // 文字的描边颜色。默认为Color.BLACK。     app:text_stroke_color="@color/black"     // 文字描边的宽度。     app:text_stroke_width="1dp"     // 文
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值