ViewSwitcher是ImageSwitcher的父类,但是在ViewSwitcher类中还存在着一个TextSwitcher的子类,本类的主要功能是完成文本切换显示。
-
<?xml version="1.0" encoding="utf-8"?>
-
<LinearLayout ? 线型布局管理器
-
xmlns:android=""
-
android:id="@+id/MyLayout" ? 布局管理器ID
-
android:orientation="vertical" ? 所有组件垂直摆放
-
android:layout_width="fill_parent" ? 布局管理器宽度为屏幕宽度
-
android:layout_height="fill_parent"> ? 布局管理器高度为屏幕高度
-
<TextSwitcher ? 文本切换组件
-
android:id="@+id/myTextSwitcher" ? 组件ID,程序中使用
-
android:layout_width="wrap_content" ? 组件宽度为文字宽度
-
android:layout_height="wrap_content"/> ? 组件高度为文字高度
-
<Button ? 按钮组件
-
android:id="@+id/but" ? 组件ID,程序中使用
-
android:text="显示当前时间" ? 组件默认显示文字
-
android:layout_width="wrap_content" ? 组件宽度为文字宽度
-
android:layout_height="wrap_content"/> ? 组件高度为文字高度
-
</LinearLayout>
-
package org.lxh.demo;
-
import java.text.SimpleDateFormat;
-
import java.util.Date;
-
import android.app.Activity;
-
import android.os.Bundle;
-
import android.view.View;
-
import android.view.View.OnClickListener;
-
import android.view.animation.AnimationUtils;
-
import android.widget.Button;
-
import android.widget.LinearLayout.LayoutParams;
-
import android.widget.TextSwitcher;
-
import android.widget.TextView;
-
import android.widget.ViewSwitcher.ViewFactory;
-
public class MyTextSwitcherDemo extends Activity {
-
private TextSwitcher txtsw = null; // 文字切换
-
private Button but = null; // 按钮组件
-
@Override
-
public void onCreate(Bundle savedInstanceState) {
-
super.onCreate(savedInstanceState);
-
super.setContentView(R.layout.main); // 调用布局管理器
-
this.txtsw = (TextSwitcher) super.findViewById(R.id.myTextSwitcher) ;
-
this.but = (Button) super.findViewById(R.id.but) ; // 取得组件
-
this.txtsw.setFactory(new ViewFactoryImpl()); // 设置转换工厂
-
this.txtsw.setInAnimation(AnimationUtils.loadAnimation(this,
-
android.R.anim.fade_in)); // 设置动画
-
this.txtsw.setOutAnimation(AnimationUtils.loadAnimation(this,
-
android.R.anim.fade_out)); // 设置动画
-
this.but.setOnClickListener(new OnClickListenerImpl()) ; // 定义监听
-
}
-
private class OnClickListenerImpl implements OnClickListener {
-
@Override
-
public void onClick(View v) {
-
MyTextSwitcherDemo.this.txtsw.setText("当前时间为:"
-
+ new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS")
-
.format(new Date())); // 显示当前时间
-
}
-
}
-
private class ViewFactoryImpl implements ViewFactory {
-
@Override
-
public View makeView() {
-
TextView txt = new TextView(MyTextSwitcherDemo.this); // 实例化图片显示
-
txt.setBackgroundColor(0xFFFFFFFF); // 设置背景颜色
-
txt.setTextColor(0xFF000000) ;
-
txt.setLayoutParams(new TextSwitcher.LayoutParams( // 自适应图片大小
-
LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
-
txt.setTextSize(30) ; // 文字大小
-
return txt;
-
}
-
}
-
}
020709_文本切换:TextSwitcher.ppt
阅读(1065) | 评论(0) | 转发(0) |