EditText
ユーザーから日付を取得するためにを使用しています。そのため、指定したデフォルト値でアプリケーションを実行すると、テキストに赤い下線が引かれます。
XML コード
<EditText
android:id="@+id/setDate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:gravity="center_horizontal"
android:text="dd/mm/yyyy" />
そして私の活動で
date.setFocusableInTouchMode(false);
テキストに赤い下線を引くのはなぜですか? 日付が設定されると、赤い下線が表示されなくなります。