:布局文件:<?xmlversion="/>

TextView文字横向自己主动滚动

Posted zhchoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TextView文字横向自己主动滚动相关的知识,希望对你有一定的参考价值。

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

?

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

布局文件:

<?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文字横向自己主动滚动的主要内容,如果未能解决你的问题,请参考以下文章

iOS UITextView 高度随文字自己主动添加,并尾随键盘移动

TextView,EditText中添加不同颜色的文字

郑润康

如何在 iOS 横向中隐藏 TextView

微信小程序实现横向滚动文字

传奇2如何在服务端设置使用屏幕顶部横向滚动公告?