Marquee Text Android不工作

时间:2016-03-17 08:48:55

标签: android text marquee

这里我的布局,我不知道为什么不工作我已经搜索答案但仍然无法运行,我已经测试添加滚动但仍然不能

这是我的代码

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:orientation="vertical">




        <android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
            android:id="@+id/card_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginBottom="5px"
            android:layout_marginLeft="5px"
            android:layout_marginRight="5px"
            card_view:cardCornerRadius="4dp">
            <TableRow
                android:id="@+id/layout_b"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1">
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="80px"
                android:src="@drawable/home"
                android:layout_gravity="left"
                android:layout_toLeftOf="@+id/info_text"
               />
            <TextView
                android:id="@+id/info_text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:focusableInTouchMode="true"
                android:ellipsize="marquee"
                android:marqueeRepeatLimit="marquee_forever"
                android:scrollHorizontally="true"
                android:singleLine="true"
                />
            </TableRow>
        </android.support.v7.widget.CardView>




</LinearLayout>

我的代码有什么问题?任何人请帮助

1 个答案:

答案 0 :(得分:0)

解决方案1 ​​

wrap_content值更改为match_parent或固定宽度。

<TextView
    android:id="@+id/info_text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:focusableInTouchMode="true"
    android:ellipsize="marquee"
    android:marqueeRepeatLimit="marquee_forever"
    android:scrollHorizontally="true"
    android:singleLine="true"
    />

或者

<TextView
    android:id="@+id/info_text"
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:focusableInTouchMode="true"
    android:ellipsize="marquee"
    android:marqueeRepeatLimit="marquee_forever"
    android:scrollHorizontally="true"
    android:singleLine="true"
    />

解决方案2

在渲染视图后尝试使用以下代码。

textView.setSelected(true);