zoukankan      html  css  js  c++  java
  • Android 控件的显示隐藏上下左右移动动画

    一、利用Android提供的左右移动工具类:AnimationUtils

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    LinearLayout ll_first = (LinearLayout) findViewById(R.id.ll_first);
    LinearLayout ll_second = (LinearLayout) findViewById(R.id.ll_second);
    ll_first.setVisibility(View.GONE);
    ll_second.setVisibility(View.VISIBLE);
    // 向右边移出
    ll_first.setAnimation(AnimationUtils.makeOutAnimation(thistrue));
    // 向右边移入
    ll_second.setAnimation(AnimationUtils.makeInAnimation(thistrue));
     
     
     
     
    ll_first.setVisibility(View.VISIBLE);
    ll_second.setVisibility(View.GONE);
    // 向左边移入
    ll_first.setAnimation(AnimationUtils.makeInAnimation(thisfalse));
    // 向左边移出
    ll_second.setAnimation(AnimationUtils.makeOutAnimation(thisfalse));

    二、用TranslateAnimation添加动画

    先写一个AnimationUtil工具类:这里仅提供上下移动效果

    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
    27
    28
    29
    public class AnimationUtil {
        private static final String TAG = AnimationUtil.class.getSimpleName();
     
        /**
         * 从控件所在位置移动到控件的底部
         *
         * @return
         */
        public static TranslateAnimation moveToViewBottom() {
            TranslateAnimation mHiddenAction = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0.0f,
                    Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,
                    0.0f, Animation.RELATIVE_TO_SELF, 1.0f);
            mHiddenAction.setDuration(500);
            return mHiddenAction;
        }
     
        /**
         * 从控件的底部移动到控件所在位置
         *
         * @return
         */
        public static TranslateAnimation moveToViewLocation() {
            TranslateAnimation mHiddenAction = new TranslateAnimation(Animation.RELATIVE_TO_SELF, 0.0f,
                    Animation.RELATIVE_TO_SELF, 0.0f, Animation.RELATIVE_TO_SELF,
                    1.0f, Animation.RELATIVE_TO_SELF, 0.0f);
            mHiddenAction.setDuration(500);
            return mHiddenAction;
        }
    }

    隐藏的时候设置下动画就可以了

    1
    2
    3
    4
    ll_first.setVisibility(View.GONE);
    ll_second.setVisibility(View.VISIBLE);
    ll_first.setAnimation(AnimationUtil.moveToViewBottom());
    ll_second.setAnimation(AnimationUtil.moveToViewLocation());

    博客原文地址:http://www.cnblogs.com/liqw/p/4602876.html

     
    分类: android
  • 相关阅读:
    datagridview 查询数据库数据
    java 类属性的加载顺序(带有继承关系的)
    jquery控制checkbox
    dataTable获取全部输入的数据(不仅是页面中展示出来的)
    java.security.Key 在main方法中与在tomcat中得到的encode不同,why?
    java代理模式
    android webservice交互开发
    完成oracle数据分页功能
    android 接收服务端 oracle数据中存储的blob对象 转化为图像
    JSON使用详解
  • 原文地址:https://www.cnblogs.com/wangfeng520/p/6178134.html
Copyright © 2011-2022 走看看