ZNDS智能电视网 推荐当贝市场

TV应用下载 / 资源分享区

软件下载 | 游戏 | 讨论 | 电视计算器

综合交流 / 评测 / 活动区

交流区 | 测硬件 | 网站活动 | Z币中心

新手入门 / 进阶 / 社区互助

新手 | 你问我答 | 免费刷机救砖 | ROM固件

查看: 15991|回复: 0
上一主题 下一主题
[教程]

第四十五讲:用户界面 View(十二)

[复制链接]
跳转到指定楼层
楼主
发表于 2013-8-28 16:26 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
>
本讲内容:ImageSwitcher 图片切换器 和 TextSwitcher 文本切换器
源代码下载:
  
3、在main.xml中添加一个ImageSwitcher组件:
   
  1. <?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">   
            <imageswitcher android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/imageSwitcher1">   
            </imageswitcher>   
    </linearlayout>
复制代码
4、在MainActivity.java中的代码如下:
   
  1. package basic.android.lesson45;   
       
    import android.app.Activity;   
    import android.os.Bundle;   
    import android.view.View;   
    import android.view.Window;   
    import android.view.WindowManager;   
    import android.view.animation.AnimationUtils;   
    import android.widget.ImageSwitcher;   
    import android.widget.ImageView;   
    import android.widget.ViewSwitcher.ViewFactory;   
       
    public class MainActivity extends Activity {   
       
            //当前显示的图片索引   
            private int index;   
       
            //图片数组   
            private int[] images = { R.drawable.image1, R.drawable.image2, R.drawable.image3, R.drawable.image4,   
                            R.drawable.image5 };   
       
            /** Called when the activity is first created. */   
            @Override   
            public void onCreate(Bundle savedInstanceState) {   
       
                    super.onCreate(savedInstanceState);   
       
                    //全屏设置   
                    requestWindowFeature(Window.FEATURE_NO_TITLE);   
                    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);   
       
                    setContentView(R.layout.main);   
       
                    //得到ImageSwitcher对象   
                    final ImageSwitcher is = (ImageSwitcher) findViewById(R.id.imageSwitcher1);   
       
                    //实现并设置工厂内部接口的makeView方法,用来显示视图。   
                    is.setFactory(new ViewFactory() {   
                            @Override   
                            public View makeView() {   
                                    return new ImageView(MainActivity.this);   
                            }   
                    });   
       
                    //设置图片来源   
                    is.setImageResource(images[index]);   
       
                    //设置点击监听器   
                    is.setOnClickListener(new View.OnClickListener() {   
       
                            @Override   
                            public void onClick(View v) {   
                                    //点击会切换图片   
                                    index++;   
                                    if (index >= images.length) {   
                                            index = 0;   
                                    }   
                                    is.setImageResource(images[index]);   
                            }   
                    });   
       
                    //设置切入动画   
                    is.setInAnimation(AnimationUtils.loadAnimation(getApplicationContext(), android.R.anim.slide_in_left));   
                    //设置切出动画   
                    is.setOutAnimation(AnimationUtils.loadAnimation(getApplicationContext(), android.R.anim.slide_out_right));   
       
            }   
    }
复制代码
   5、编译并运行程序,查看结果:抱歉我抓不到切换图片瞬间的截图。      
二、TextSwitcher 文本切换器文本的切换动画也是有一个叫TextSwitcher的类可以做到,它的使用方法和ImageSwitcher类似。至于为什么用法如此相似,还是看下面两张继承关系图吧:   
       
下面直接上例子:1、新建一个项目:Lesson45_TextSwitcher2、在main.xml中添加一个TextSwitcher组件:   
  1. <?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">   
            <textswitcher android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/textSwitcher1">   
            </textswitcher>   
    </linearlayout>
复制代码
  3、在MainActivity.java中的代码如下:   
  1. package basic.android.lesson45;   
       
    import android.app.Activity;   
    import android.graphics.Color;   
    import android.os.Bundle;   
    import android.view.View;   
    import android.view.animation.AnimationUtils;   
    import android.widget.TextSwitcher;   
    import android.widget.TextView;   
    import android.widget.ViewSwitcher.ViewFactory;   
       
    public class MainActivity extends Activity {   
       
            // 索引   
            private int index;   
            // 文本数组   
            private String[] poemArray = { "去年今日栽", "临去见花开", "好住守空院", "夜间人不来" };   
       
            /** Called when the activity is first created. */   
            @Override   
            public void onCreate(Bundle savedInstanceState) {   
                    super.onCreate(savedInstanceState);   
                    setContentView(R.layout.main);   
       
                    //定义文字切换器   
                    final TextSwitcher ts = (TextSwitcher) findViewById(R.id.textSwitcher1);   
       
                    //定义视图显示工厂,并设置   
                    ts.setFactory(new ViewFactory() {   
       
                            @Override   
                            public View makeView() {   
                                    TextView tv =new TextView(MainActivity.this);   
                                    tv.setTextSize(32);   
                                    tv.setTextColor(Color.GREEN);   
                                    return tv;   
                            }   
                    });   
       
                    // 设置图片来源   
                    ts.setText(poemArray[index]);   
       
                    // 设置点击监听器   
                    ts.setOnClickListener(new View.OnClickListener() {   
       
                            @Override   
                            public void onClick(View v) {   
                                    // 点击会切换图片   
                                    index++;   
                                    if (index >= poemArray.length) {   
                                            index = 0;   
                                    }   
                                    ts.setText(poemArray[index]);   
                            }   
                    });   
       
                    // 设置切入动画   
                    ts.setInAnimation(AnimationUtils.loadAnimation(getApplicationContext(), android.R.anim.slide_in_left));   
                    // 设置切出动画   
                    ts.setOutAnimation(AnimationUtils.loadAnimation(getApplicationContext(), android.R.anim.slide_out_right));   
       
            }   
    }
复制代码
  
   4、编译并运行程序,查看结果:   
      
抱歉还是没法截取到切换时的场景#_#好吧,本讲就到这里,各位下次再见。</div

上一篇:百度地图开发之环境搭建
下一篇:第三十二讲:Android中的主题和风格学习指南
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|新帖|标签|软件|Sitemap|ZNDS智能电视网 ( 苏ICP备2023012627号 )

网络信息服务信用承诺书 | 增值电信业务经营许可证:苏B2-20221768 丨 苏公网安备 32011402011373号

GMT+8, 2025-5-3 00:12 , Processed in 0.140389 second(s), 15 queries , Redis On.

Powered by Discuz!

监督举报:report#znds.com (请将#替换为@)

© 2007-2025 ZNDS.Com

快速回复 返回顶部 返回列表