在Android中滚动文本视图不会滚动。

时间:2016-12-15 08:14:46

标签: android textview

我正在将文字滚动为帖子here

我认为即使没有任何java代码,我也看到它第一次在另一个布局中滚动。 但现在,它不再滚动了。不知道这有什么不对。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="?attr/actionBarSize">

    <LinearLayout
        android:id="@+id/scrollingTextLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:background="#0792B5"
        android:gravity="center_vertical"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/scrollingText"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:ellipsize="marquee"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:marqueeRepeatLimit="marquee_forever"
            android:maxLines="1"
            android:padding="5dp"
            android:scrollHorizontally="true"
            android:text="The culture of India is the way of living of people of India."
            android:textColor="#FFFFFF"
            android:textSize="16sp" />

    </LinearLayout>

    <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/scrollingTextLayout"
        android:background="@android:color/darker_gray" />

</RelativeLayout>

3 个答案:

答案 0 :(得分:1)

将这些行放在xml:

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:scrollHorizontally="true"

在您的代码中:

textView.setSelected(true);

答案 1 :(得分:1)

现在正在滚动。我刚刚将maxLines="1"更改为singleLine="true",您知道这有点奇怪。我将singleLine更改为maxLines,因为IDE建议我使用maxLines代替singleLine,因为它已被弃用。

答案 2 :(得分:0)

在活动

中添加此代码
TexView tv=findViewbyId(R.id.scrollingText);
tv.setSelected(true);