时间:2021-07-01 10:21:17 帮助过:28人阅读
更多精彩内容,请点击阅读: 《API Demos 2.3 学习笔记》 在TextView及其子类控件中,当文本内容太长,超过控件长度时,默认情况下,无法完全显示文本内容。此时,通过在xml布局文件中设置控件的android:ellipsize属性,可以将无法显示的部分用省略号表示,
更多精彩内容,请点击阅读:《API Demos 2.3 学习笔记》
android:singleLine="true" android:ellipsize="none"
android:singleLine="true" android:ellipsize="start"
android:singleLine="true" android:ellipsize="middle"
android:singleLine="true" android:ellipsize="end"
android:focusable="true" android:focusableInTouchMode="true" android:singleLine="true" android:ellipsize="marquee" android:marqueeRepeatLimit="marquee_forever"
res-value-string.xml
This use the default marquee animation limit of 3 This will run the marquee animation once This will run the marquee animation forever
package com.example.android.apis.text; import com.example.android.apis.R; import android.app.Activity; import android.os.Bundle; public class Marquee extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //将marquee布局文件渲染出一个View对象,并作为Activity的默认View setContentView(R.layout.marquee); } }
效果预览: