Android, make scrollable view overflow to the left instead of right?

前端 未结 7 1971
孤独总比滥情好
孤独总比滥情好 2021-02-20 00:02

I was recommended using a parent view to get horizontal scrolling right in my TextView:



        
7条回答
  •  臣服心动
    2021-02-20 00:12

    Did you try assigning the ellipsize parameter to your textview?

    android:singleLine="true"
    android:ellipsize="start"
    

    I hope this will solve your issue.

    For setting the gravity of the text when not overflowing, try setting

    android:gravity="center_vertical|right"
    

提交回复
热议问题