Gallery 的 Demo(3)

来源:未知 责任编辑:责任编辑 发表时间:2013-12-18 11:34 点击:

    private Integer[] mThumbIds = { R.drawable.icon01, R.drawable.icon02, 
            R.drawable.icon03, R.drawable.icon04, R.drawable.icon05 }; 

 
 
 
3、ImageSwitcher 的 Demo 
imageswitcher.xml 
 
代码  
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 
 
    <Gallery android:id="@+id/gallery" android:layout_width="fill_parent" 
        android:layout_height="wrap_content" android:spacing="20px" /> 
 
    <!-- 
        ImageSwitcher - 图片转换器控件(改变图片时增加一些动画效果) 
    --> 
    <ImageSwitcher android:id="@+id/imageSwitcher" 
        android:layout_width="fill_parent" android:layout_height="wrap_content" /> 
 
</LinearLayout> 
 
 
_ImageSwitcher.java 
 
代码  
package com.webabcd.view; 
 
import android.app.Activity; 
import android.content.Context; 
import android.os.Bundle; 
import android.view.View; 
import android.view.ViewGroup; 
import android.view.animation.AnimationUtils; 
import android.widget.AdapterView; 
import android.widget.BaseAdapter; 
import android.widget.Gallery; 
import android.widget.ImageSwitcher; 
import android.widget.ImageView; 
import android.widget.ViewSwitcher; 
import android.widget.Gallery.LayoutParams; 
 
// 图片转换器的使用基本同文字转换器 
// 以下是一个用 ImageSwitcher + Gallery 实现的经典的图片浏览器的 Demo 
public class _ImageSwitcher extends Activity implements 
        ViewSwitcher.ViewFactory { 
 
    private ImageSwitcher mSwitcher; 
 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
        // TODO Auto-generated method stub 
        super.onCreate(savedInstanceState); 
        this.setContentView(R.layout.imageswithcer); 
 
        setTitle("ImageSwithcer"); 
 
        mSwitcher = (ImageSwitcher) findViewById(R.id.imageSwitcher); 
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • Java编程语言的八大优点
  • JVM对象生命周期详细介绍
  • Java平台上的CRM系统
  • Java 算数测试小程序
  • Java环境 使用Resin在NT环境下配置JSP环境
  • Command(命令模式)
  • Java 一个简单的画图程序
  • Java 日历的小程序
  • Java 统计代码的小工具
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1