省略的textview没有在android中移动

时间:2014-01-30 21:04:22

标签: android textview

我尝试工作新闻栏,栏中的文字将移动并再次移动

状态问题

文字没有动作

 <TextView
            android:id="@+id/mylinenews"
            android:layout_width="0dp"
            android:layout_weight="4"
            android:layout_height="wrap_content"
            android:ellipsize="marquee"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:marqueeRepeatLimit="marquee_forever"
            android:scrollHorizontally="true"
            android:singleLine="true"
            android:text="text moving text moving  text moving text moving text moving  "
            android:textColor="#fff" />

2 个答案:

答案 0 :(得分:1)

这是一个非常持久的错误,其信息为here。除了您设置的所有参数外,还需要选择View以使其正常工作,因为您可能会阅读here。所以,基本上,你必须以编程方式做的事情是这样的:

final TextView mylinenews = (TextView) findViewById(R.id.mylinenews);
mylinenews.setSelected(true);

答案 1 :(得分:0)

Textview只有在具有焦点的情况下才会使用ellipsize旋转。