私が作成しているアプリの場合、スペースが限られているために大きくできないフィールドがいくつかあります。そのため、フィールドを連続的にスクロールさせたいと考えています。これは、たとえば RDS 情報がスクロールするカー ラジオで時々見られるようなものです。これはAndroidを使用して可能ですか?私はすでにScroller
andを使って試しました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" />