Android Animation(动画)---基础二(LayoutAnimationController)

简介: LayoutAnimationController动画效果,一次出现一、布局文件使用动画list_item_layout.xml每个列表项动画list_item_alpha.

LayoutAnimationController动画效果,一次出现
一、布局文件使用

  1. 动画list_item_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
    android:animation="@anim/list_item_alpha"
    android:animationOrder="normal"
    android:delay="0.8"
    />
  1. 每个列表项动画list_item_alpha.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
  <alpha
      android:fromAlpha="0.0"
      android:toAlpha="1.0"
      android:duration="2000"
      />
</set>
  1. 主界面布局文件activity_main.xml
    特别注意要在ListView中添加android:layoutAnimation="@anim/list_item_layout"
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.mazaiting.layoutanimationcontroller.MainActivity"
    >

  <ListView
      android:id="@+id/listView"
      android:layoutAnimation="@anim/list_item_layout"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      />

  <Button
      android:text="测试"
      android:onClick="test"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      />

  <Button
      android:text="清空"
      android:onClick="clear"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      />
</LinearLayout>
  1. 列表布局文件item_list.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="@string/app_name"
    android:textSize="20sp"
    />
  1. 主界面代码
public class MainActivity extends AppCompatActivity {
  private ListView mListView;
  private static final String[] STRINGS = {
      "BruceZhang", "Alpha", "Translate", "Blanklin", "Rotate", "GreenFrank"
  };
  private ArrayAdapter<String> mAdapter;

  @Override protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mListView = (ListView) this.findViewById(R.id.listView);
    mAdapter = new ArrayAdapter<>(this, R.layout.item_list, STRINGS);
  }

  public void test(View view) {
    mListView.setAdapter(mAdapter);
  }

  public void clear(View view) {
    mListView.setAdapter(null);
  }
}

二、代码配置

  1. 动画文件
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
  <alpha
      android:fromAlpha="0.0"
      android:toAlpha="1.0"
      android:duration="2000"
      />
</set>
  1. 主界面布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.mazaiting.layoutanimationcontroller.MainActivity"
    >

  <ListView
      android:id="@+id/listView"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      />

  <Button
      android:text="测试"
      android:onClick="test"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      />

  <Button
      android:text="清空"
      android:onClick="clear"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      />
</LinearLayout>
  1. 主界面动画设置

public class MainActivity extends AppCompatActivity {
  private ListView mListView;
  private static final String[] STRINGS = {
      "BruceZhang", "Alpha", "Translate", "Blanklin", "Rotate", "GreenFrank"
  };
  private ArrayAdapter<String> mAdapter;

  @Override protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mListView = (ListView) this.findViewById(R.id.listView);
    mAdapter = new ArrayAdapter<>(this, R.layout.item_list, STRINGS);

    // 1. 创建一个Animation对象
    Animation animation = AnimationUtils.loadAnimation(this, R.anim.list_item_alpha);
    // 2. 使用如下代码创建LayoutAnimationController对象
    LayoutAnimationController lac = new LayoutAnimationController(animation);
    // 3. 设置控件显示的顺序
    lac.setOrder(LayoutAnimationController.ORDER_RANDOM);
    // 4. 为ListView设置LayoutAnimationController尚需经
    mListView.setLayoutAnimation(lac);
  }

  public void test(View view) {
    mListView.setAdapter(mAdapter);
  }

  public void clear(View view) {
    mListView.setAdapter(null);
  }
}
目录
相关文章
|
3月前
|
存储 Shell Android开发
基于Android P,自定义Android开机动画的方法
本文详细介绍了基于Android P系统自定义开机动画的步骤,包括动画文件结构、脚本编写、ZIP打包方法以及如何将自定义动画集成到AOSP源码中。
78 2
基于Android P,自定义Android开机动画的方法
|
26天前
|
Android开发 UED
Android 中加载 Gif 动画
【10月更文挑战第20天】加载 Gif 动画是 Android 开发中的一项重要技能。通过使用第三方库或自定义实现,可以方便地在应用中展示生动的 Gif 动画。在实际应用中,需要根据具体情况进行合理选择和优化,以确保用户体验和性能的平衡。可以通过不断的实践和探索,进一步掌握在 Android 中加载 Gif 动画的技巧和方法,为开发高质量的 Android 应用提供支持。
|
6月前
|
Java Android开发 开发者
Android10 修改开发者选项中动画缩放默认值
Android10 修改开发者选项中动画缩放默认值
194 0
|
6月前
|
XML Java Android开发
android的三种动画
android的三种动画
38 0
|
4月前
|
XML Android开发 数据格式
Android 中如何设置activity的启动动画,让它像dialog一样从底部往上出来
在 Android 中实现 Activity 的对话框式过渡动画:从底部滑入与从顶部滑出。需定义两个 XML 动画文件 `activity_slide_in.xml` 和 `activity_slide_out.xml`,分别控制 Activity 的进入与退出动画。使用 `overridePendingTransition` 方法在启动 (`startActivity`) 或结束 (`finish`) Activity 时应用这些动画。为了使前 Activity 保持静止,可定义 `no_animation.xml` 并在启动新 Activity 时仅设置新 Activity 的进入动画。
108 12
|
4月前
|
XML Android开发 UED
Android动画之共享元素动画简单实践
本文介绍Android共享元素动画, 实现两Activity间平滑过渡特定UI元素。通过设置`transitionName`属性和使用`ActivityOptions.makeSceneTransitionAnimation`启动目标Activity实现动画效果。可自定义过渡动画提升体验。
66 0
|
5月前
|
Android开发 UED
Android Item平移动画
【6月更文挑战第18天】
109 8
|
4月前
|
Android开发
android 动画 插值器和估值器
android 动画 插值器和估值器
|
4月前
|
Android开发 容器
android animation clipToPadding clipChildren
android animation clipToPadding clipChildren