0

对于我正在创建的应用程序,由于空间有限,我有一些字段无法扩大。出于这个原因,我希望这些字段不断滚动。这有点像有时在汽车收音机中发现的情况,例如 RDS 信息滚动。这可能使用Android吗?我已经尝试过使用Scrollerand MovementMethod

myEditText.setScroller(new Scroller(this)); 
myEditText.setMaxLines(1); 
myEditText.setHorizontalScrollBarEnabled(true);
myEditText.setMovementMethod(new ScrollingMovementMethod()); 

但是,这并没有达到我想要的效果。这是我的编辑文本:

<EditText
 android:id="@+id/pedigreeLineAEditText"
 android:layout_width="match_parent"
 android:layout_height="@dimen/line_height"
 android:clickable="false"
 android:cursorVisible="false"
 android:focusable="false"
 android:focusableInTouchMode="false"
 android:inputType="none"
 android:singleLine="true"
 android:textSize="@dimen/text_size" />
4

1 回答 1

0

它需要是一个EditText吗?如果没有,你可以尝试这样的事情

  <TextView
android:text="START | lunch 20.00 | Dinner 60.00 | Travel 60.00 | Doctor 5000.00 | lunch 20.00 | Dinner 60.00 | Travel 60.00 | Doctor 5000.00 | END"
android:id="@+id/MarqueeText" 
android:layout_width="fill_parent"
android:layout_height="wrap_content" 
android:singleLine="true"
android:ellipsize="marquee" 
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true" 
android:paddingLeft="15dip" 
android:paddingRight="15dip" 
android:focusable="true" 
android:focusableInTouchMode="true" 
android:freezesText="true">

我认为这不会以相同的方式与编辑文本一起使用,但也许这对您有用。此代码来自另一个答案,可以在这里看到

文本视图选取框不起作用

于 2013-07-30T10:59:26.457 回答