I tried all the options with TextView and marquee, with animations, not one option worked correctly. With webview tried, it hangs.

Here is what it looks like:

Animation animation = AnimationUtils.loadAnimation(MainActivity.this, R.anim.slide_up); DisplayMetrics displaymetrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(displaymetrics); int screenWidth = displaymetrics.widthPixels; Animation animation = new TranslateAnimation(screenWidth, -screenWidth, 0, 0); animation.setDuration(25000); animation.setRepeatMode(Animation.INFINITE); animation.setRepeatCount(Animation.INFINITE); mTicker.startAnimation(animation); 

How can I implement a news ticker like this on jQuery, I looked at jQuery a lot of plugins. As on television below, the background is black, the text is white. Maybe there are libraries or can someone tell me how to do this?

  • What does it look like? - Yuriy SPb
  • Updated ........ - DevOma
  • TZ you have average details and clarity. Try either from here: www.stackoverflow.com/a/600881/17609 - JuriySPb
  • Well, in general ... Take TextView, shove the necessary text into it, and start the translate animation. - Yuriy SPb
  • Yes, the fact of the matter is that when moving it slows down if with animation - DevOma

0