我有最新的 5.0.1 更新并且 EditText 提示已停止显示:

我有:

<EditText
     android:id="@+id/editTextLocation"
     android:layout_width="wrap_content"
     android:layout_marginEnd="5dp"
     android:layout_marginLeft="5dp"
     android:layout_marginRight="5dp"
     android:layout_marginStart="5dp"
     android:layout_weight="80"
     android:clickable="false"
     android:focusable="false"
     android:focusableInTouchMode="false"
     android:hint="@string/chooseLocationHint"
     android:longClickable="false"
     android:textColor="#000000"
     android:textSize="15sp"
     android:background="@color/white"
     android:lines="1"
/>

我已经查看了一些“解决方案”,但它们都非常陈旧且与 5.0.1 无关

谢谢

最佳答案

你需要给提示一个颜色:

android:textColorHint="#000000"

10-07 12:44
查看更多