Android linearlayout中view的顯示/隱藏動(dòng)畫

效果圖:


a.gif

代碼:

動(dòng)畫工具類

<pre>
package test.j.com.test.utils;

import android.animation.ValueAnimator;
import android.view.View;
import android.view.ViewGroup;

/**

  • Created by Jiangzx on 11:53.
    */

public class AnimationUtils {
/**
* 將view從不可見變?yōu)榭梢姷膭?dòng)畫胆描,原理:動(dòng)態(tài)改變其LayoutParams.height的值
* @param view 要展示動(dòng)畫的view
*/
public static void visibleAnimator(final View view){
if(view!=null) {
int viewHeight=view.getHeight();
if(viewHeight==0){
int width=View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED);
int height=View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED);
view.measure(width,height);
viewHeight=view.getMeasuredHeight();
}
ValueAnimator animator=ValueAnimator.ofInt(0,viewHeight);
animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
ViewGroup.LayoutParams params=view.getLayoutParams();
params.height= (int) animation.getAnimatedValue();
view.setLayoutParams(params);
}
});
animator.start();
}
}

/**
 * 將view從可見變?yōu)椴豢梢姷膭?dòng)畫,原理:動(dòng)態(tài)改變其LayoutParams.height的值
 * @param view 要展示動(dòng)畫的view
 */
public static void invisibleAnimator(final View view){
    if(view!=null){
        int viewHeight=view.getHeight();
        if(viewHeight==0){
            int width=View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED);
            int height=View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED);
            view.measure(width,height);
            viewHeight=view.getMeasuredHeight();
        }
        ValueAnimator animator=ValueAnimator.ofInt(viewHeight,0);
        animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                ViewGroup.LayoutParams params=view.getLayoutParams();
                params.height= (int) animation.getAnimatedValue();
                view.setLayoutParams(params);
            }
        });
        animator.start();
    }
}

/**
 * 動(dòng)態(tài)改變view的高度動(dòng)畫效果巨双,動(dòng)畫時(shí)長300毫秒[android屬性動(dòng)畫默認(rèn)時(shí)長]
 * 原理:動(dòng)畫改變view LayoutParams.height的值
 * @param view 要進(jìn)行高度改變動(dòng)畫的view
 * @param startHeight 動(dòng)畫前的view的高度
 * @param endHeight 動(dòng)畫后的view的高度
 */
public static void changeViewHeightAnimatorStart(final View view,final int startHeight,final int endHeight){
    if(view!=null&&startHeight>=0&&endHeight>=0){
        ValueAnimator animator=ValueAnimator.ofInt(startHeight,endHeight);
        animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                ViewGroup.LayoutParams params=view.getLayoutParams();
                params.height= (int) animation.getAnimatedValue();
                view.setLayoutParams(params);
            }
        });
        animator.start();
    }
}

}
</pre>

Activity代碼

<pre>
package test.j.com.test.ui;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.util.TypedValue;
import android.view.View;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.TextView;

import test.j.com.test.R;
import test.j.com.test.utils.AnimationUtils;

/**

  • Created by Jiangzx on 11:52.
    */

public class AnimatorActivity extends AppCompatActivity implements View.OnClickListener{
Button btControlLayout;
Button btControlView;
LinearLayout llContainer;
TextView tvHeight0;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_animator);
btControlLayout = (Button) findViewById(R.id.bt_control_layout);
btControlLayout.setTag(0);
btControlView = (Button) findViewById(R.id.bt_control_view);
btControlView.setTag(0);
llContainer= (LinearLayout) findViewById(R.id.ll_container);
tvHeight0= (TextView) findViewById(R.id.tv_height_0);
btControlLayout.setOnClickListener(this);
btControlView.setOnClickListener(this);
}

@Override
public void onClick(View v) {
    switch (v.getId()){
        case R.id.bt_control_layout:
            if(((int)(btControlLayout.getTag()))==0){
                btControlLayout.setTag(1);
                btControlLayout.setText("收起布局");
                AnimationUtils.visibleAnimator(llContainer);
            }else{
                btControlLayout.setTag(0);
                btControlLayout.setText("展開布局");
                AnimationUtils.invisibleAnimator(llContainer);
            }
            break;
        case R.id.bt_control_view:
            if(((int)(btControlView.getTag()))==0){
                btControlView.setTag(1);
                btControlView.setText("隱藏控件");
                AnimationUtils.changeViewHeightAnimatorStart(tvHeight0,
                        0,
                        (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,150,
                                getResources().getDisplayMetrics()));
            }else{
                btControlView.setTag(0);
                btControlView.setText("顯示控件");
                AnimationUtils.changeViewHeightAnimatorStart(tvHeight0,
                        (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,150,
                                getResources().getDisplayMetrics()),
                0);
            }
            break;
    }
}

}

</pre>

布局文件

<pre>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">

    <Button
        android:id="@+id/bt_control_layout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="展開布局"/>
    <Button
        android:id="@+id/bt_control_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="顯示控件"/>
</LinearLayout>
<LinearLayout
    android:id="@+id/ll_container"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:divider="@color/colorPrimary"
    android:showDividers="middle"
    android:orientation="vertical">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:text="固定高度文本,高度50dp蝉衣,居中顯示"
        android:textColor="@color/colorPrimaryDark"
        android:gravity="center"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:text="固定高度文本匆骗,高度150dp,居中顯示"
        android:textColor="@color/colorPrimaryDark"
        android:gravity="center"/>
</LinearLayout>
<TextView
    android:id="@+id/tv_height_0"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_marginTop="100dp"
    android:text="初始高度為0的文本初始高度為0的文本初始高度為0的文本初始高度為0的文本初始高度為0的文本初始高度為0的文本初始高度為0的文本初始高度為0的文本初始高度為0的文本"
    android:textColor="@color/colorAccent"/>

</LinearLayout>
</pre>

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末巷嚣,一起剝皮案震驚了整個(gè)濱河市垂蜗,隨后出現(xiàn)的幾起案子楷扬,更是在濱河造成了極大的恐慌,老刑警劉巖贴见,帶你破解...
    沈念sama閱讀 207,248評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件烘苹,死亡現(xiàn)場離奇詭異,居然都是意外死亡片部,警方通過查閱死者的電腦和手機(jī)镣衡,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來档悠,“玉大人廊鸥,你說我怎么就攤上這事∠剿” “怎么了惰说?”我有些...
    開封第一講書人閱讀 153,443評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長缘回。 經(jīng)常有香客問我吆视,道長,這世上最難降的妖魔是什么酥宴? 我笑而不...
    開封第一講書人閱讀 55,475評(píng)論 1 279
  • 正文 為了忘掉前任揩环,我火速辦了婚禮,結(jié)果婚禮上幅虑,老公的妹妹穿的比我還像新娘。我一直安慰自己顾犹,他們只是感情好倒庵,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評(píng)論 5 374
  • 文/花漫 我一把揭開白布褒墨。 她就那樣靜靜地躺著,像睡著了一般擎宝。 火紅的嫁衣襯著肌膚如雪郁妈。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,185評(píng)論 1 284
  • 那天绍申,我揣著相機(jī)與錄音噩咪,去河邊找鬼。 笑死极阅,一個(gè)胖子當(dāng)著我的面吹牛胃碾,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播筋搏,決...
    沈念sama閱讀 38,451評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼仆百,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼!你這毒婦竟也來了奔脐?” 一聲冷哼從身側(cè)響起俄周,我...
    開封第一講書人閱讀 37,112評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎髓迎,沒想到半個(gè)月后峦朗,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,609評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡排龄,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評(píng)論 2 325
  • 正文 我和宋清朗相戀三年波势,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片涣雕。...
    茶點(diǎn)故事閱讀 38,163評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡艰亮,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出挣郭,到底是詐尸還是另有隱情迄埃,我是刑警寧澤,帶...
    沈念sama閱讀 33,803評(píng)論 4 323
  • 正文 年R本政府宣布兑障,位于F島的核電站侄非,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏流译。R本人自食惡果不足惜逞怨,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望福澡。 院中可真熱鬧叠赦,春花似錦、人聲如沸革砸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至册踩,卻和暖如春泳姐,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背暂吉。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評(píng)論 1 261
  • 我被黑心中介騙來泰國打工胖秒, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人慕的。 一個(gè)月前我還...
    沈念sama閱讀 45,636評(píng)論 2 355
  • 正文 我出身青樓阎肝,卻偏偏與公主長得像,于是被迫代替她去往敵國和親业稼。 傳聞我的和親對(duì)象是個(gè)殘疾皇子盗痒,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評(píng)論 2 344

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,527評(píng)論 25 707
  • 概述 在Android開發(fā)的過程中,View的變化是很常見的低散,如果View變化的過程沒有動(dòng)畫來過渡而是瞬間完成俯邓,會(huì)...
    小蕓論閱讀 38,930評(píng)論 18 134
  • 內(nèi)容抽屜菜單ListViewWebViewSwitchButton按鈕點(diǎn)贊按鈕進(jìn)度條TabLayout圖標(biāo)下拉刷新...
    皇小弟閱讀 46,712評(píng)論 22 664
  • 寫在旅游之前: 老妹得知她可以有三天連休時(shí),便開始催促我想如何度過這個(gè)假期熔号,去哪里玩稽鞭,玩些什么。我們琢磨了很長時(shí)間...
    葉聽雨閱讀 569評(píng)論 2 3
  • 不知是幾歲的時(shí)候我對(duì)軍營有了向往引镊,一身橄欖綠朦蕴,錚錚鐵骨漢這樣的想法一直縈繞在腦海里。 兩年前的今天我想我做出了此生...
    八路海匪閱讀 216評(píng)論 0 0