Android button 圆角矩形

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
    <corners
        android:bottomLeftRadius="25dp"
        android:bottomRightRadius="25dp"
        android:radius="8dp"
        android:topLeftRadius="25dp"
        android:topRightRadius="25dp" />
    <!--    <gradient
            android:angle="45"
            android:endColor="#72cb60"
            android:startColor="#72cb60" />-->
    <padding
        android:bottom="10dp"
        android:left="10dp"
        android:right="10dp"
        android:top="10dp" />
    <size android:width="100dp" />
    <solid android:color="#999" />
    <stroke
        android:width="2dp"
        android:color="#dcdcdc" />
</shape>

不多说了,自己用就知道了,这里我选择给Button在加一个动画:

    @Override
    public void onClick(View view) {
        switch (view.getId()){
            case R.id.button1:
                Button1Click(view);
                break;
        }
    }

    private void Button1Click( final View v) {
        ObjectAnimator o=ObjectAnimator.ofFloat(v,"rotationY",1.0F,0.0F,1.0f)
                .setDuration(500);
        o.start();

        o.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator valueAnimator) {
                float animatedValue = (float) valueAnimator.getAnimatedValue();
                v.setAlpha(animatedValue);
                v.setScaleX(animatedValue);
                v.setScaleY(animatedValue);
            }
        });
    }

还是很不错的!
里面挺多属性动画样式,有兴趣的可以看看:
http://download.csdn.net/download/kururunga/9994328

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值