先给大家展示下效果图,对第三方开源 android tickplusdrawable相关知识感兴趣的朋友一起学习吧。
android tickplusdrawable(tickplusdrawable)是一个状态可以通过动画切换的按钮,android tickplusdrawable(tickplusdrawable)在github上的项目主页是:https://github.com/flavienlaurent/tickplusdrawable
测试代码:
布局:
1
2
3
4
5
6
7
8
9
10
|
<framelayout xmlns:android= "http://schemas.android.com/apk/res/android"
android:layout_width= "match_parent"
android:layout_height= "match_parent" >
<view
android:id= "@+id/view"
android:layout_gravity= "center"
android:padding= "30dp"
android:layout_width= "128dp"
android:layout_height= "128dp" />
</framelayout>
|
java代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package com.flavienlaurent.tickplusdrawable;
import android.annotation.targetapi;
import android.app.activity;
import android.os.build;
import android.os.bundle;
import android.view.view;
public class mainactivity extends activity {
@targetapi (build.version_codes.jelly_bean)
@override
protected void oncreate(bundle savedinstancestate) {
super .oncreate(savedinstancestate);
setcontentview(r.layout.activity_main);
view view = findviewbyid(r.id.view);
// 第一个参数表示里面+号和勾的宽度,第二个参数是圆圈背景色和勾的颜色,
//第三个参数是默认的加号的颜色,只显示一次
final tickplusdrawable tickplusdrawable = new tickplusdrawable( 10 ,
0xff9c27b0 , 0xff2196f3 );
view.setbackground(tickplusdrawable);
view.setonclicklistener( new view.onclicklistener() {
@override
public void onclick(view v) {
tickplusdrawable.toggle();
}
});
}
}
|
以上内容是小编给大家分享的第三方开源android tickplusdrawable状态可以通过动画切换的按钮,希望大家喜欢。