0

R.anim.fade_in と out を使用して 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]);
4

1 に答える 1

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>

要素の配列に範囲外の要素を呼び出したい場合、表示がうまくいきません... 注意してください。

于 2013-01-03T18:39:28.183 に答える