2つのEditTextインスタンスのスタイルをオーバーライドする必要があります。これに関して2つの問題があります。
1)1つのEditTextは、パスワードを入力するためのものですが、同じ書体を使用します。password = trueを削除すると、機能します。デフォルトではtypeface=sansです。
<style name="customEdit" parent="@android:style/Widget.EditText">
<item name="android:password">true</item>
<item name="android:typeface">serif</item> //doesn work.
</style>
2)両方のフィールドにヒントがあります。そして、これらのヒントの色を設定する必要があります。出来ますか?私はこのようなものを見つけられませんでした:android:hintColor .. ..
<item name="android:textColor">#acacac</item> //works for text only.
パスワードタイプの2つのバリエーションを試しました。
- android:inputType = "textPassword"
- android:password = true
「UIコンストラクター」でも、どちらも書体を自動的にデフォルトに変更します。