私の編集テキストでは、テキストを「すべて選択」すると選択したテキストが表示され、選択は透明になります「すべて選択」がエドテキストで透明な選択を表示しています
レイアウト
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@drawable/chat_rounded_corner">
<EditText
android:id="@+id/question"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textCursorDrawable="@null"
android:background="@null"
android:ems="10"
android:hint="Ask something...?"
android:inputType="textMultiLine"
android:minHeight="45dp"
android:paddingLeft="15dp"
android:textColor="@color/black"
android:textColorHint="@color/base"/>
</LinearLayout>
...これはあなたの問題を解決するXMLモードで
EditText
にを
TextHightLight
プロパティを使用しますか特定のものがない場合、これはアプリ全体で使用されているものである可能性があります。 'styles.xml'や' themes.xml'にあります。 – degsどのようにすべてのテキストを選択しますか? –
'theme.xml'の' colorAccent'の色を確認してください – W4R10CK