スクロールビュー内に必要な編集テキストがあります。編集テキストをラップするスクロールビューを追加する前は、編集テキスト ボックスをタッチしてカーソルを移動し、それを長押しして選択オプションを取得することができました。スクロールビュー内に編集テキストがあるので、テキストをクリックしてカーソルを移動したり、長押しして選択オプションを取得したりすることはできません。私が使用しているxmlは次のとおりです。
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingRight="10dp">
<EditText
android:id="@+id/output"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:lines="1"
android:textSize="25dp"
android:text=""
android:textColor="@android:color/black"
android:background="@android:color/white" />
<ImageView android:id="@+id/animated_output"
android:layout_width="28dp"
android:layout_height="25dp"
android:layout_marginTop="9dp"
android:layout_marginRight="20dp"
android:layout_toRightOf="@+id/output"
android:background="@color/transparent"/>
</RelativeLayout>
</HorizontalScrollView>
なぜこれが考えられるのでしょうか?