0
我在我的android應用程序中有一個編輯文本視圖。 這是des此視圖的設計:android設置編輯文本的底線和光標顏色
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="13sp"
android:textColor="@color/DefaultGreen"
android:inputType="text"
android:textColorHint="@color/DefaultGreen"
android:cursorVisible="true"
android:textCursorDrawable="@null" />
文本是綠色的。 我想使底線透明/不可見,並且光標顏色爲黑色。此刻這兩個都是白色的。
我該如何解決它?
colorAccent正常工作 - 但這會將我所選標籤的顏色更改爲。有另一種方法嗎? background =「@ null」不起作用。底線不隱藏 – Ghost108
檢查我的編輯。 –