1 <TextView
2 android:id="@+id/tv"
3 android:autoLink="all"
4 android:layout_width="fill_parent"
5 android:layout_height="wrap_content"
6 android:singleLine="true"
7 android:textSize="20sp" //字体的大小
8 android:textColor="#00FF00"
9 android:focusable="true"
10 android:ellipsize="marquee" //文本过长时候省略方式
11 android:marqueeRepeatLimit="marquee_forever" //跑马
12 android:focusableInTouchMode ="true"
13 android:text="欢迎大家收看《Android开发从零开始》系列课
14 />
1 TextView tv=(TextView)findViewById(R.id.tv);
2 String str="欢迎大家收看《Android开发从零开始》系列课程。感谢大家的支持。";
3 tv.setText(style);