博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
翻翻git之---偏向iOS风格的Switch ToggleSwitch
阅读量:6294 次
发布时间:2019-06-22

本文共 1975 字,大约阅读时间需要 6 分钟。

转载请注明出处:

早上上了个很6的图片选择器 GalleryFinal 如果没有看的同学 可以看下,东西很不错哦,传送门:

这一篇上一个自定义控件ToggleSwitch

效果图:

这里写图片描述

第一眼看上去感觉就像旧版的iOS风格的Switch。

How to use?

Grade:

dependencies {    compile 'us.belka:androidtoggleswitch:1.1.1'}

Maven:

us.belka
androidtoggleswitch
1.0
pom

Eclipse:

Copy下图圈出来的部分就好了

这里写图片描述

如何设置?(这边拿Eclipse Copy完为例)

上图中第2个效果就是 这样的 如果要3个那就再加一个 custom:textToggleCenter="默认" 第一个效果就是添加后的效果

那如果你又许多个?不止三个?

那就在业务的Activity中获取控件对象,再传入一个 ArrayList就行了

像这样

ToggleSwitch toggleSwitch = (ToggleSwitch) findViewById(R.id.multiple_switches);ArrayList
labels = new ArrayList<>();labels.add("AND");labels.add("OR");labels.add("XOR");labels.add("NOT");labels.add("OFF");toggleSwitch.setLabels(labels);

效果如下:

这里写图片描述

因为他不是继承于Switch所以,也就没有所谓的true false2个返回值的概念,全部都由 position返回,也就是从最左边->最右边,从0开始递增就是所被点击的那个position

那么如何获取position呢?

aTo = (ToggleSwitch) findViewById(R.id.aTo); aTo.setOnToggleSwitchChangeListener(new ToggleSwitch.OnToggleSwitchChangeListener() {            @Override            public void onToggleSwitchChangeListener(int position) {                Toast.makeText(MainActivity.this,position+"被点击",Toast.LENGTH_SHORT).show();            }        });

例子中的土司也就是这么实现的。

那如果你要初始化设置某个为默认项,就设置下position 像这样

toggleSwitch.setCheckedTogglePosition(position);

要获取就这样

int position = toggleSwitch.getCheckedTogglePosition();

还有些设置内容下面也罗列一下,主要是字体大小啊,颜色啊,间距什么的

Option Name Format Description
android:textSize dimension Text size of each button
custom:activeBgColor color Background color of the checked button
custom:activeTextColor color Text color of the checked button
custom:inactiveBgColor color Background color of the inactive buttons
custom:inactiveTextColor color Text color of the inactive buttons
custom:separatorColor color Color of the vertical separator between inactive buttons
custom:toggleWidth dimension Width of each button

总体使用起来和源生控件一样,没什么区别,实现难度也不高,大家可以适当的学习下,自己页写写 会有长进。

源码地址:

作者Git:

你可能感兴趣的文章
Java NIO框架Netty教程(三) 字符串消息收发(转)
查看>>
Ucenter 会员同步登录通讯原理
查看>>
php--------获取当前时间、时间戳
查看>>
Spring MVC中文文档翻译发布
查看>>
docker centos环境部署tomcat
查看>>
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
Storm中的Worker
查看>>
dangdang.ddframe.job中页面修改表达式后进行检查
查看>>