TextView 的使用

来源:互联网 发布:c语言算术运算符 编辑:程序博客网 时间:2024/06/10 12:47

 1  跑马灯的效果  字体可以滚动    android:ellipsize="marquee" 注意这个可以设置很多属性   也可用自定义属性来做

<TextView 

        android:focusable="true"
        android:focusableInTouchMode="true"
        android:ellipsize="marquee"
        android:text="对方是否对方答复辅导辅导辅导费 放大放大啊  发的萨芬的范德萨发的撒地方发放大放大的方法"
        android:singleLine="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        />
0 0