eclipse のプロパティパネルの一番下に
“Deprecated Properties” とまとめられている以下のプロパティは
今後削除される予定のため利用を推奨されていないそうです。
具体的な記述例で比較すると以下のような感じになるようです。
削除予定プロパティ | 代替プロパティ |
---|---|
android:password="true" | android:inputType="textPassword" |
android:singleLine=”true” | android:maxLines="1" |
android:capitalize="characters" | android:inputType="textCapCharacters" |
android:autoText="true" | android:inputType="textAutoCorrect" |
android:editable="false" | android:inputType="none" |
こうやってみると "inputType" に色々まとめられたんですね。