必威体育Betway必威体育官网
当前位置:首页 > IT技术

Android中自定义控件SegmentedGroup

时间:2019-08-11 15:41:03来源:IT技术作者:seo实验室小编阅读:59次「手机版」
 

segmented

GitHub:https://github.com/Kaopiz/Android-segmented-control

一 、添加依赖

implementation 'info.hoang8f:android-segmented:1.0.6'

二、布局中使用

<info.hoang8f.android.segmented.SegmentedGroup
        APP:sc_border_width="2dp"
        app:sc_checked_text_color="#f00"
        app:sc_corner_radius="5dp"
        app:sc_tint_color="#fff"
        android:background="@color/colorAccent"
        android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="40dp">

        <radiobutton
            android:id="@+id/button1"
            android:textSize="18sp"
            android:button="@null"
            style="@style/RadioButton"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:text="CSDN"/>

        <RadioButton
            android:id="@+id/button2"
            android:textSize="18sp"
            android:button="@null"
            style="@style/RadioButton"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:text="Android"/>

    </info.hoang8f.android.segmented.SegmentedGroup>

三、其他设置

1. 当按方法检查按钮时,您也可以更改色调颜色和标题颜色setTintColor

mSg.setTintColor(R.color.radio_button_selected_color);
mSg.setTintColor(Color.parseColor("#FFD0FF3C"), Color.parseColor("#FF7B07B2"));

2. 如果你不指定border_width和/或corner_radius,将使用默认值(border_width为1dp,corner_radius为5dp)。

3. 其他的逻辑方法就按照radiogroup使用即可。

相关阅读

android 自定义控件 使用declare-styleable进行配置属

http://blog.csdn.net/vipzjyno1/article/details/23696537最近在模仿今日头条,发现它的很多属性都是通过自定义控件并设定相关的

declare-styleable:自定义控件的属性

做Android布局是件很享受的事,这得益于他良好的xml方式。使用xml可以快速有效的为软件定义界面。可是有时候我们总感觉官方定义的

自定义控件之绘图篇(五) —— drawText()详解

前言 自定义控件之绘图篇(一) —— 概述及基本几何图形绘制 自定义控件之绘图篇(二) —— 路径及文字 自定义控件之绘图篇(三) ——

自定义控件(二)Paint,Canvas 基础用法 - drawBitmap(),dra

本篇博客继续学习 Paint 和 Canvas 的基础用法,上一篇博客学习了基础API使用( 基础几何图形,Path 路径 ),接下来学习 绘制文本 和 绘制

分享到:

栏目导航

推荐阅读

热门阅读