简体   繁体   中英

Android - Change a layout attribute on a button click

I have a problem here.

I have a large text, that doesn't fit in the screen... So in the layout XML I have put this string:

android:ellipsize="end"

Ok, but now I want to make this TextView clickable and when I click it, I want to change the layout XML code to:

android:ellipsize="marquee"

So the text roll and people will read it.

I've searched lots os questions but none has answered that, just for 'drawable' things.

Thanks!

Use

textView.setEllipsize(TextUtils.TruncateAt.MARQUEE);

on textView Click.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM