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?