动画
zhanglihow
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
欢迎界面的动画效果
渐深渐浅的一个welcomeActivity的效果,最后跳转到主界面。welcomeActivity代码:package com.zhangli.myapplication;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.K原创 2016-01-27 20:12:36 · 601 阅读 · 0 评论 -
Android 用Animation-list实现逐帧动画
图片素材:在drawable文件夹下新建一个文件夹:image_values.xml<animation-list xmlns:android="http://schemas.android.com/apk/res/android"android:oneshot="true"> 布局中定义一个ImageView和一个Button,点击按钮就开始进行动画:原创 2016-01-25 23:15:23 · 1155 阅读 · 0 评论 -
Android多种View动画:EasyAndroidAnimations
github地址:https://github.com/2359media/EasyAndroidAnimations可以将Demo下载下来看看动画的效果。主要的动画代码,需要什么效果就在代码中引用就OK。case 1: new BlindAnimation(card).animate(); isFinished = true; break; ca原创 2016-03-23 14:38:21 · 1021 阅读 · 0 评论 -
Android FragmentTransactionExtended:使Fragment以多种样式动画切换
github:https://github.com/DesarrolloAntonio/FragmentTransactionExtendedgrald:dependencies { compile 'com.desarrollodroide:fragmenttransactionextended:1'}有多种fragment之间切换的效果,效果是这样的:De原创 2016-03-23 20:11:08 · 1596 阅读 · 0 评论 -
点击控件时的抖动动画集合
1、代码: TranslateAnimation animation = new TranslateAnimation(0, -5, 0, 0); animation.setInterpolator(new OvershootInterpolator()); animati原创 2016-08-10 12:30:43 · 1597 阅读 · 0 评论
分享