zoukankan      html  css  js  c++  java
  • TextSwitcher,译为文字转换器控件

    ViewSwitcher仅仅包含子类型TextView。TextSwitcher被用来使屏幕上的label产生动画效果。每当setText(CharSequence)被调用时,TextSwitcher使用动画方式将当前的文字内容消失并显示新的文字内容。(译者注:改变文字时增加一些动画效果)

      三、构造函数


    public TextSwitcher (Context context)

    创建一个新的空TextSwitcher

    参数

    context 应用程序上下文

    public TextSwitcher (Context context, AttributeSet attrs)

    使用提供的context和attributes来创建一个空的TextSwitcher

    参数

    context 应用程序环境

    attrs 属性集合


      四、公共方法

    public void addView (View child, int index, ViewGroup.LayoutParams params)

    根据指定的布局参数新增一个子视图

    参数

    child 新增的子视图

    index 新增子视图的位置

    params 新增子视图的布局参数

    抛出异常

    IllegalArgumentException 当子视图不是一个TextView实例时

    public void setCurrentText (CharSequence text)

    设置当前显示的文本视图的文字内容。非动画方式显示。

    参数

    text 需要显示的新文本内容

    public void setText (CharSequence text)

    设置下一视图的文本内容并切换到下一视图。可以动画的退出当前文本内容,显示下一文本内容。

    参数

    text 需要显示的新文本内容


      五、代码示例

        5.1  摘自APIDemos->View->TextSwitcher

          5.1.1  Java

    Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->public class TextSwitcher1 extends Activity implements ViewSwitcher.ViewFactory,
    View.OnClickListener {

    private TextSwitcher mSwitcher;

    private int mCounter = 0;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.text_switcher_1);

    mSwitcher = (TextSwitcher) findViewById(R.id.switcher);
    mSwitcher.setFactory(this);

    Animation in = AnimationUtils.loadAnimation(this,
    android.R.anim.fade_in);
    Animation out = AnimationUtils.loadAnimation(this,
    android.R.anim.fade_out);
    mSwitcher.setInAnimation(in);
    mSwitcher.setOutAnimation(out);

    Button nextButton = (Button) findViewById(R.id.next);
    nextButton.setOnClickListener(this);

    updateCounter();
    }

    public void onClick(View v) {
    mCounter++;
    updateCounter();
    }

    private void updateCounter() {
    mSwitcher.setText(String.valueOf(mCounter));
    }

    public View makeView() {
    TextView t = new TextView(this);
    t.setGravity(Gravity.TOP | Gravity.CENTER_HORIZONTAL);
    t.setTextSize(36);
    return t;
    }
    }

  • 相关阅读:
    vue 实战
    通信的三个核心问题
    中间件编程—面向通信的软件组件
    jsbridge与通信模型
    laravel5.6 调用第三方类库
    淘宝IP地址库API接口(PHP)通过ip获取地址信息
    这可能是目前最全的Redis高可用技术解决方案总结
    json_decode遇到的编码问题
    太平洋网络ip地址查询接口使用,返回json格式,默认返回jsonp
    分享几个IP获取地理位置的API接口(最全面的了)
  • 原文地址:https://www.cnblogs.com/qiaoxu/p/4013728.html
Copyright © 2011-2022 走看看