textSwitcher褪色

时间:2013-01-03 17:40:10

标签: android

我使用R.anim.fade_in设置了一个TextSwitcher。当我点击按钮时,我看到文本,然后单击我看不到文本可见(如淡出),下一步单击文本就可以了,再次下一步,测试不可见。哪里是我的错误?

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);

mSwitcher.setText(""+prog[x]);

1 个答案:

答案 0 :(得分:1)

这是一个简单的例子,fix在实现ViewFactory和安全递增计数器时从字符串数组中获取正确的元素。

主:

public class MainActivity extends Activity implements OnClickListener, ViewFactory {

    private TextSwitcher mSwitcher;
    private int counter = 0;
    private String[] words = new String[]{"one","two","three"};

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        mSwitcher = (TextSwitcher) findViewById(R.id.textswitcher);
        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) {
        counter++;
        updateCounter();
    }

    private void updateCounter() {
        int index = counter % words.length;
        mSwitcher.setText(String.valueOf(words[index]));
    }

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

和xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <TextSwitcher
        android:id="@+id/textswitcher"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <Button
        android:id="@+id/next"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="next" />

</LinearLayout>

如果你想要在元素数组中超出范围的call元素,显示将无法正常工作......请注意它。