これと似たような質問をたくさん見てきましたが、これはまだ新しい分野をカバーしていると思います:
1) 重力を設定するとヒント テキストが消える
2)中央揃えのandroid:ellipsize="start"
ヒントと中央揃えのテキストを使用できるように修正する
3) 以下のコードがまだ中央揃えで表示されるのはなぜですかヒントテキスト?
<EditText
android:id="@+id/details"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:hint="use this area to provide specific identification information including approximate size, vessel name and registration numbers if available"
android:background="@android:drawable/editbox_background"
android:layout_below="@id/details_title"
/>
wrap_content の代わりに fill_parent が原因ですか? このヒントが複数行だからかなと思ったのですが、短くしても表示されて中央に表示されました。android:ellipsize="start"
これらは、これと正しく表示する必要がある他の EditTexts との唯一の違いです。それはただのバグですか?