我是靠谱客的博主 典雅鲜花,最近开发中收集的这篇文章主要介绍RadarView for Android 是一个雷达扫描动画后,然后展示得分效果的控件。,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

RadarView

项目地址:jenly1314/RadarView 

简介:RadarView for Android 是一个雷达扫描动画后,然后展示得分效果的控件。

更多:作者   提 Bug   

标签:

RadarView-Radar-scan-search-anim-

download  license blog

RadarView for Android 是一个雷达扫描动画后,然后展示得分效果的控件。

Gif 展示

image

引入

Maven:

<dependency>
<groupId>com.king.view</groupId>
<artifactId>radarview</artifactId>
<version>1.0.2</version>
<type>pom</type>
</dependency>

Gradle:

compile 'com.king.view:radarview:1.0.2'

Lvy:

<dependency org='com.king.view' name='radarview' rev='1.0.2'>
<artifact name='$AID' ext='pom'></artifact>
</dependency>

如果 Gradle 出现 compile 失败的情况,可以在 Project 的 build.gradle 里面添加如下:(也可以使用上面的 GitPack 来 complie)

allprojects {
repositories {
//...
maven { url 'https://dl.bintray.com/jenly/maven' }
}
}

示例

布局


<com.king.view.radarview.RadarView
android:id="@+id/rv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="100"
app:labelText="Score" />

自定义属性


<declare-styleable name="RadarView">
<attr name="android:textSize"/>
<attr name="android:textColor"/>
<attr name="android:text"/>
<attr name="labelTextSize" format="dimension"/>
<attr name="labelTextColor" format="color"/>
<attr name="labelText" format="string"/>
<attr name="format" format="string"/>
<attr name="sideColor" format="color"/>
<attr name="outsideBackgroundColor" format="color"/>
<attr name="insideBackgroundColor" format="color"/>
<attr name="duration" format="integer"/>
<attr name="textOffsetY" format="dimension"/>
<attr name="labelTextOffsetY" format="dimension"/>
<attr name="circleColor" format="color"/>
<attr name="lineColor" format="color"/>
<attr name="showLine" format="boolean"/>
<attr name="rotate" format="integer"/>
<attr name="showLabel" format="boolean"/>
<attr name="showText" format="boolean"/>
<attr name="scanTime" format="integer"/>
<attr name="insideStrokeWidth" format="dimension"/>
<attr name="outsideStrokeWidth" format="dimension"/>
<attr name="lineStrokeWidth" format="dimension"/>
</declare-styleable>

代码示例(核心调用代码)

//开始雷达扫描
radarView.start();
//停止雷达扫描
radarView.stop();
//设置雷达扫描区域的颜色,传多个色值表示渐变
radarView.setScanColor(int... colors);
/**
* 显示分数
* @param from
初始值
* @param to
目标值(最终分数)
* @param duration
从初始值到目标值的动画持续时间
* @param format
* @param isShowAnim 是否显示动画
*/
radarView.showScore(float from, float to, int duration, final String format,boolean isShowAnim);

关于我

Name: Jenly

Email: jenly1314@gmail.com / jenly1314@vip.qq.com

CSDN: http://blog.csdn.net/jenly121

Github: https://github.com/jenly1314

最后

以上就是典雅鲜花为你收集整理的RadarView for Android 是一个雷达扫描动画后,然后展示得分效果的控件。的全部内容,希望文章能够帮你解决RadarView for Android 是一个雷达扫描动画后,然后展示得分效果的控件。所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部