Textview attribute Android: ellipsize achieves the flashlight Effect
Source: Internet
Author: User
In the Android system, textview must meet the following conditions to achieve the running horse effect: 1. Android: ellipsize = "marquee" 2. textview must be displayed on a single line, that is, the content must be larger than the textview size. 3. textview must be focused to scroll XML Code: Android: ellipsize = "marquee", Android: singleline = "true" Java code: mtvtext. settext ("singing and listening with the spirit of Lei Feng; http://orgcent.com/, very long, very long data"); mtvtext. setsingleline (true); mtvtext. setellipsize (truncateat. marquee); PS: textview. sethorizontallyscrolling (true); // enables text to slide textview horizontally. You can also set the number of scrolling times for the running horse light effect, as follows: XML Code setting: Android: marqueerepeatlimit = "1 ". 1 represents 1 time, and-1 represents an infinite loop. Java code setting: mtvtext. setmarqueerepeatlimit (-1 );
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.