前言:
前几天看到掌上生活上一个好玩的最大额度提示的页面,作为程序员的我,不能光看别人做的效果,于是自己也撸了一个差不多的额度控件了。
掌上生活效果:
今天就是这么个玩意是个主角了。好了,下面也来看看咋们要实现的结果:
使用:
xml:
<com.xiangcheng.amount.AmountView
android:id="@+id/amount_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
app:hint_text="Max Amount"
app:max_amount="30000"
app:shadow_color="#FFD700" />
这里就定义了三个属性:
hint_text:提示文字
max_amount:最大的额度
shadow_color:背景颜色
code:
//代码中设置额度
public void setAmount(int amount) {
}
//启动动画
public void start() {
}
maven dependence:
<dependency>
<groupId>com.a1002326270</groupId>
<artifactId>amountlibs</artifactId>
<version>1.0</version>
<type>pom</type>
</dependency>
gradle dependence:
compile 'com.a1002326270:amountlibs:1.0'
代码传送门