0

我愿意在 android 应用程序中创建一个新闻栏,并使用动画将 TextView 从左向右移动,并在每一轮中用字符串数组中的新文本填充它。我遇到了很多问题,我使用了超过 5 种方法,但每一种都有不好的行为。主要问题是动画结束时它会刷新 textView 并且看起来像闪烁,这不是用户友好的行为。

这是一个代码片段:

     TextView my_text;
     Animation slideRight;      
     Animation slideLeft;
     String [] text = {"TwoOneOneOneOneOneOneOneOneOneTwo","OneTwoTwoTwoTwoTwoTwoTwoTwoTwoTwoOne",
        "OneThreeThreeThreeThreeThreeThreeThreeOne","OneFourFourFourFourFourFourFourOne",
        "OneFiveFiveFiveFiveFiveFiveFiveOne","OneSixSixSixSixSixSixSixOne",
        "OneSevenSevenSevenSevenSevenSevenSeveOne","OneEightEightEightEightEightEightEightOne",
        "OneNineNineNineNineNineNineNineOne"};

     int arr_length;
     int count = 0;

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

    arr_length = text.length;

    slideRight = AnimationUtils.loadAnimation(this, android.R.anim.slide_out_right);

    slideRight.setDuration(2000);
    slideRight.setRepeatCount(Animation.INFINITE);
    slideRight.setAnimationListener(slideRightListener);
    slideLeft = AnimationUtils.loadAnimation(this, android.R.anim.slide_in_left);
    slideLeft.setDuration(2000);
    slideLeft.setAnimationListener(slideLeftListener);

    my_text = (TextView) findViewById(R.id.textView1);
    my_text.setVisibility(TextView.VISIBLE);
    my_text.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {       
            Toast.makeText(getApplicationContext(), my_text.getText(), Toast.LENGTH_SHORT).show();
        }
    });

    slideLeft.setAnimationListener(slideLeftListener);
    my_text.startAnimation(slideLeft);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

AnimationListener slideLeftListener = new AnimationListener() {

    @Override
    public void onAnimationStart(Animation animation) {
        my_text.setVisibility(TextView.VISIBLE);

    }

    @Override
    public void onAnimationRepeat(Animation animation) {
        my_text.setVisibility(TextView.VISIBLE);

    }

    @Override
    public void onAnimationEnd(Animation animation) {
        my_text.setVisibility(TextView.VISIBLE);
        my_text.startAnimation(slideRight);
    }
}; 

AnimationListener slideRightListener = new AnimationListener() {

    @Override
    public void onAnimationStart(Animation animation) {
        my_text.setVisibility(TextView.VISIBLE);
    }

    @Override
    public void onAnimationRepeat(Animation animation) {
        my_text.setVisibility(TextView.VISIBLE);
    }

    @Override
    public void onAnimationEnd(Animation animation) {
        my_text.setVisibility(TextView.VISIBLE);
        if(count<arr_length)
        {               
            my_text.setText(text[count]);
            count+=1;
            my_text.startAnimation(slideLeft);
        }
        else
        {
            count=0;
            my_text.setText(text[count]);
            my_text.startAnimation(slideLeft);
        }

    }
}; 
 }
4

4 回答 4

1

我认为 ViewFlipper 更适合你。

于 2013-05-20T03:18:08.287 回答
0

尝试添加 setFillAfter(true) ,因为这可能会在动画结束时停止“刷新”行为。

于 2013-02-24T14:42:17.993 回答
0

正如我在上面对@Bill 的评论,我意识到刷新问题与 Android 版本有关。

我已经在带有 Android Ice-Cream-Sandwich 的设备上测试了上面相同的代码,但它没有“刷新”。

如果对非 ICS 有任何解决方案,我会接受。

于 2013-02-25T07:07:23.070 回答
0

我有这个链接,我发现它对我来说很棒,可以根据我的要求进行定制。它使用水平幻灯片。

于 2013-06-05T11:40:17.167 回答