码迷,mamicode.com
首页 > 其他好文 > 详细

TextView文字横向自己主动滚动

时间:2018-04-14 12:30:13      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:call   ati   fill   undle   _for   height   tis   super   stat   

??????????效果截图:

?

?????????????????????????? 技术分享图片技术分享图片

布局文件:

<?xml version="1.0" encoding="utf-8"?

>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
????????????? android:orientation="vertical"
????????????? android:layout_width="fill_parent"
????????????? android:layout_height="fill_parent"
????????????? android:background="#ffffff"
????????????? android:gravity="center"
??????? >

??? <TextView android:id="@+id/text1"
????????????? android:layout_width="80dp"
????????????? android:layout_height="40dp"
????????????? android:ellipsize="marquee"
????????????? android:marqueeRepeatLimit="marquee_forever"
????????????? android:focusable="true"
????????????? android:scrollHorizontally="true"
????????????? android:focusableInTouchMode="true"
????????????? android:layout_centerInParent="true"
????????????? android:textColor="#0551A5"
????????????? android:layout_marginLeft="20dp"
????????????? android:layout_marginRight="20dp"
????????????? android:singleLine="true"/>
??? <!--android:focusable="true"是否获取焦点-->
??? <!--focusableInTouchMode:通过触摸获取焦点-->
??? <!--android:ellipsize="marquee"设置为跑马灯-->
??? <!--android:marqueeRepeatLimit="marquee_forever"滚动次数里面能够直接写数字-->
??? <!--marquee_forever表示永远滚动-->
??? <!--android:scrollHorizontally="true"水平滚动-->
??? <!--android:singleLine="true"单行输入-->
</LinearLayout>

Java代码:

package com.example.MargueeTextView;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class MyActivity extends Activity {
??? private TextView text1;
??? /**
???? * Called when the activity is first created.
???? */
??? @Override
??? public void onCreate(Bundle savedInstanceState) {
??????? super.onCreate(savedInstanceState);
??????? setContentView(R.layout.main);
??????? text1=(TextView)findViewById(R.id.text1);
??????? text1.setText("春光无限好,仅仅是近黄昏………………");
??? }
}

?源代码下载地址

?

TextView文字横向自己主动滚动

标签:call   ati   fill   undle   _for   height   tis   super   stat   

原文地址:https://www.cnblogs.com/zhchoutai/p/8831039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!