How to create a marquee effect for a text of smaller length not exceeding the screen size in Android?

前端 未结 5 1116
走了就别回头了
走了就别回头了 2020-12-03 16:18

I have been trying to give the marquee effect for the word HELLO in my application but android does not allow the same unless the length of the text exceeds the screen size.

5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-03 17:02

    I used simple light weight of ticker like animation which I developed in my early Android days.

    below is complete code.

    Hope this helps.

    Works for all API levels of Android

    import android.os.Bundle;
    import android.app.Activity;
    import android.content.Context;
    import android.graphics.Color;
    import android.view.Menu;
    import android.view.View;
    import android.view.animation.Animation;
    import android.view.animation.TranslateAnimation;
    import android.widget.LinearLayout;
    import android.widget.TextView;
    
    public class MainActivity extends Activity {
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
            setticker("Hello", this);
        }
    
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.main, menu);
            return true;
        }
    
    
        public  void setticker(String text, Context contx) {
            if (text != "") {
                LinearLayout parent_layout = (LinearLayout) ((Activity) contx)
                        .findViewById(R.id.ticker_area);
    
                TextView view = new TextView(contx);
                view.setText(text);
    
                view.setTextColor(Color.BLACK);
                view.setTextSize(25.0F);
                Context context = view.getContext(); // gets the context of the view
    
                // measures the unconstrained size of the view
                // before it is drawn in the layout
                view.measure(View.MeasureSpec.UNSPECIFIED,
                        View.MeasureSpec.UNSPECIFIED);
    
                // takes the unconstrained width of the view
                float width = view.getMeasuredWidth();
                float height = view.getMeasuredHeight();
    
                // gets the screen width
                float screenWidth = ((Activity) context).getWindowManager()
                        .getDefaultDisplay().getWidth();
    
                view.setLayoutParams(new LinearLayout.LayoutParams((int) width,
                        (int) height, 1f));
    
                System.out.println("width and screenwidth are" + width + "/"
                        + screenWidth + "///" + view.getMeasuredWidth());
    
                // performs the calculation
                float toXDelta = width - (screenWidth - 0);
    
                // sets toXDelta to -300 if the text width is smaller that the
                // screen size
                if (toXDelta < 0) {
                    toXDelta = 0 - screenWidth;// -300;
                } else {
                    toXDelta = 0 - screenWidth - toXDelta;// -300 - toXDelta;
                }
                // Animation parameters
                Animation mAnimation = new TranslateAnimation(screenWidth,
                        toXDelta, 0, 0);
                mAnimation.setDuration(15000);
                mAnimation.setRepeatMode(Animation.RESTART);
                mAnimation.setRepeatCount(Animation.INFINITE);
                view.setAnimation(mAnimation);
                parent_layout.addView(view);
            }
        }
    
    
    }
    

    in activity_main.xml

    
    
        
        
    
    

提交回复
热议问题