Advanced use of Android-based animations

Source: Internet
Author: User

Layoutanimationcontroller:

A. It is used to set animation effects for controls in a layout or a viewgroup.

B. Each widget has the same animation effect.

C. The animation effects of these controls are displayed at no time.

 

Steps for using layoutanimationcontroller in XML:

1. Create a new file named list_anim_layout.xml In the Res/anim Folder:

<Layoutanimation

Xmlns: Android = "http://schemas.android.com/apk/res/android"

Android: delay= "0.5"

Android: animationorder = "random"

Android: animation = "@ anim/list_anim"/>

2. In the layout file, add the following configuration for the listview with an animation ,:

Android: layoutanimation = "@ anim/list_anim_layout"

 

InCodeUse layoutanimationcontroller

1. Create an animation object: you can load an XML file (animationutils. loadanimation) or directly use the animation constructor to create an animation object.

2. Use the following code to create a layoutanimationcontroller object: layoutanimationcontroller LAC = new layoutanimationcontroller (animation );

3. Set the display sequence of controls: Lac. setorder (layoutanimationcontroller. order_normal );

4. Set the layoutanimationcontroller attribute for listview: listview. setlayoutanimation (LAC );

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.