`

Frame布局FrameLayout & Frame动画AnimationDrawable 应用实例

阅读更多
  1)FrameLayout常常与 merge 相关,关于他们各自的介绍,请参阅相关的文档。在这里,
用来合并两个透明的png图片,就像photoshop里图层合并一样。
  2)Frame动画animation-list,常常用于制作短片动画或用于进程进度的一个指示标识。

先附图如下:
   

下面是部分代码:

res/anim/scrolling.xml
<?xml version="1.0" encoding="utf-8"?>
 <animation-list xmlns:android="http://schemas.android.com/apk/res/android" id="selected" android:oneshot="false">
<item android:drawable="@drawable/ball1" android:duration="80" />
  <item android:drawable="@drawable/ball2" android:duration="80" />
  <item android:drawable="@drawable/ball3" android:duration="80" />
  <item android:drawable="@drawable/ball4" android:duration="80" />
  <item android:drawable="@drawable/ball5" android:duration="80" />
  <item android:drawable="@drawable/ball6" android:duration="80" />	
	
 </animation-list>


res/layout/main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_centerHorizontal="true"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:id="@+id/frame01">

		<ImageView android:src="@drawable/line"
			android:layout_width="300sp"
		    android:layout_height="200sp">
		</ImageView>
	
	
		<ImageView android:src="@drawable/bar"
			android:layout_width="300sp"
		    android:layout_height="200sp">
		</ImageView>


	</FrameLayout>
    
    
    
	<ImageView android:id="@+id/scrolling_anim"
	           android:layout_width="wrap_content"
	           android:layout_height="wrap_content"
	           android:gravity="center"
	           android:layout_centerHorizontal="true"
	           android:layout_below="@id/frame01"
	           android:layout_marginTop="15sp"/> 
</RelativeLayout>




package com.sunflower;

import java.util.Timer;
import java.util.TimerTask;


import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.os.Bundle;
import android.widget.ImageView;

public class FrameActivity extends Activity {
	    /** Called when the activity is first created. */
	    @Override
	    public void onCreate(Bundle icicle) {
	        super.onCreate(icicle);
	        setContentView(R.layout.main);
	        

	        ImageView img = (ImageView)findViewById(R.id.scrolling_anim);
	        img.setBackgroundResource(R.anim.scrolling); //设置动画的载体(画布)

	        
	       
	        
	        StopAnim mar2 = new StopAnim();
	        Timer t2 = new Timer(false);
	        t2.schedule(mar2, 10000); //10秒后停止动画
	        

	        
	    }

	    class StartUpAnim extends TimerTask {
	    	
	    	public void run() {
	        	ImageView img = (ImageView)findViewById(R.id.scrolling_anim);
	            // Get the background, which has been compiled to an AnimationDrawable object.
	            AnimationDrawable frameAnimation = (AnimationDrawable) img.getBackground();

	            // Start the animation (looped playback by default).
	            frameAnimation.start();
	    	}
	    }


	    class StopAnim extends TimerTask {

	    	
	    	public void run()
	    	{
	        	ImageView img = (ImageView)findViewById(R.id.scrolling_anim);
	            // Get the background, which has been compiled to an AnimationDrawable object.
	            AnimationDrawable frameAnimation = (AnimationDrawable) img.getBackground();

	            // stop the animation (looped playback by default).
	            frameAnimation.stop();
	    	}
	    }


		@Override
		protected void onResume() {
			super.onResume();
			 StartUpAnim mar = new StartUpAnim(); //放在这里执行是让frameAnimation有足够的时间取得画布(Images's background)
		        
		        
		       Timer t = new Timer(false);
		       t.schedule(mar, 1000);  //延迟1秒后才开始动画
		}





	}



附件是整个app project.
  • 大小: 13.9 KB
分享到:
评论
1 楼 dengzhangtao 2010-12-25  
谢谢了 请问你有android的学习资料吗  ,我打算转android开发 哈

相关推荐

    Android中帧布局FrameLayout的特点.pdf

    本篇将详细阐述FrameLayout的特点及其在实际应用中的使用技巧。 首先,FrameLayout是Android六大布局(LinearLayout、RelativeLayout、GridLayout、FrameLayout、AbsoluteLayout以及ConstraintLayout)中最为简洁的...

    Android中帧布局FrameLayout的常用属性.pdf

    Android帧布局(FrameLayout)是Android开发中一种基础且重要的布局类型,它允许开发者在一个屏幕上叠加多个视图...在实际项目中,结合使用不同的布局管理器和属性,可以创建出满足各种需求的Android应用程序界面。

    智能家居系统 帧布局FrameLayout.doc

    **Android 帧布局 FrameLayout 知识点详解** 在Android开发中,界面设计是非常重要的一环,而帧布局(FrameLayout)是Android提供的一种基本布局方式,它为开发者提供了简单且灵活的界面构建手段。本篇将深入探讨帧...

    android demo,FrameLayout的使用,该实例实现了一个美女在地图上的行走。

    3. **动画**:为了实现行走的效果,可以使用Android的动画框架,如ObjectAnimator或AnimationDrawable,来改变美女视图的位置。通过设定动画的时间、坐标变化等参数,模拟行走的动作。 4. **事件处理**:可能需要...

    Android学习笔记12:框架布局管理器FrameLayout

    总结来说,`FrameLayout`是一个简单但强大的布局工具,适合需要精确控制视图位置的应用场景。虽然它不如其他如`LinearLayout`、`RelativeLayout`或`ConstraintLayout`那样复杂,但在某些特定的UI设计中,`...

    FrameLayout布局完成霓虹灯效果

    在这个"FrameLayout布局完成霓虹灯效果"的小程序中,开发者可能利用了帧布局的特点,结合其他Android图形库或者自定义视图来实现霓虹灯的动画效果。 霓虹灯效果通常涉及到颜色渐变、闪烁、线条动态流动等元素,这些...

    安卓布局实例

    本教程“安卓布局实例”旨在帮助初学者理解和掌握如何创建和管理安卓应用中的各种布局。通过实例化的讲解,我们可以深入理解每个布局类型的特点及其在实际应用中的用法。 一、线性布局(LinearLayout) 线性布局是...

    FrameLayout

    FrameLayout是Android开发中的一种布局容器,主要用于展示一个或多个视图(Views)在一个单一的叠加层上。...通过熟练掌握FrameLayout和TabHost的使用,开发者可以创建出用户友好、交互丰富的Android应用程序。

    FrameLayout动态布局

    开发者需要理解Android的视图层次结构,以及如何通过LayoutInflater来实例化XML布局文件中的视图,并将其添加到FrameLayout中。 SwipeMenuListView是另一个在给定标签中的概念,它扩展了Android的ListView,提供了...

    Android布局之帧布局FrameLayout详解

    帧布局(FrameLayout)是Android布局管理器的一种,它的设计思想简单直观,主要用于展示单个或少量的组件,尤其适用于需要元素叠加的情况。在FrameLayout中,所有的子视图(如TextView、ImageView等)默认都会放置在...

    Android下拉刷新列表(仿新浪微博,采用FrameLayout布局)

    在Android应用开发中,下拉刷新功能是一种常见的交互设计,让用户可以轻松获取最新数据。本教程将详细讲解如何实现一个类似新浪微博的下拉刷新列表,采用`FrameLayout`布局作为基础。 首先,我们要理解`FrameLayout...

    Android-ImageView和FrameLayout拥有手势控制和定位动画

    例如,你可以使用`ChangeTransform`和`ChangeBounds`转场动画来改变`ImageView`或`FrameLayout`的大小和位置,从而实现更高级的交互效果。 在实际项目中,`GestureViews`库(如压缩包中的alexvasilkov-GestureViews...

    MenuAnimation-可以弹出子菜单的Menu.zip

    2. 绑定布局并添加子菜单FrameLayout frameLayout = (FrameLayout) findViewById(R.id.container); PromotedActionsLibrary promotedActionsLibrary = new PromotedActionsLibrary(); ...

    FrameLayout手机帧布局

    FrameLayout是Android开发中一种基础的布局容器,用于在屏幕上显示一个或多个视图(View)并控制它们的叠加方式。这种布局的主要特点是允许子视图在屏幕的同一位置上重叠,通常用于创建简单的界面或者作为其他复杂...

    android 5大布局实例

    本教程将深入探讨Android的五大主要布局:线性布局(LinearLayout)、相对布局(RelativeLayout)、帧布局(FrameLayout)、表格布局(TableLayout)以及约束布局(ConstraintLayout),并提供实例来帮助理解其工作...

    智能家居系统-帧布局FrameLayout.ppt

    智能家居系统应用

    Android应用源码之11.AbsoluteLayout&FrameLayout.zip

    2. **使用场景**:常见应用场景包括对话框、浮动按钮(FloatingActionButton)以及需要一个视图完全覆盖另一个视图的情况,如半透明菜单或加载动画。 3. **布局重叠**:FrameLayout的一个关键特性是它可以实现视图的...

    Android 框架布局实例

    本教程将深入探讨Android框架布局的概念、用法以及实例应用。 一、框架布局介绍 框架布局是最简单的布局方式,不涉及任何特定的排列规则,如垂直或水平对齐。它将视图放在屏幕的左上角,并允许后续视图在其上方、...

    Android之布局实例

    线性布局(LinearLayout)、相对布局(RelativeLayout)、帧布局(FrameLayout)、表格布局(TableLayout)以及约束布局(ConstraintLayout),并结合实例来帮助理解它们的应用。 1. **线性布局 (LinearLayout)**:...

Global site tag (gtag.js) - Google Analytics