私のAndroidアプリには、「いくらかかりますか」というテキストフィールドがあります。
テキストが自動的に消去され、ユーザーがそのテキストフィールドに入力したときに入力したものに置き換えられるようにしたいと思います。
例:ユーザーが1文字を入力すると、テキストフィールドから「いくらかかりますか」が自動的に削除され、入力された1文字に置き換えられます。
私のAndroidアプリには、「いくらかかりますか」というテキストフィールドがあります。
テキストが自動的に消去され、ユーザーがそのテキストフィールドに入力したときに入力したものに置き換えられるようにしたいと思います。
例:ユーザーが1文字を入力すると、テキストフィールドから「いくらかかりますか」が自動的に削除され、入力された1文字に置き換えられます。
xmlファイルで使用する
android:hint="how much would you like to take"
あなたのTextView
定義では
(まあ、それはstrings.xmlの"@string/how_much"
そのhow_much
文字列のようなものでなければなりませんが、正直なところ...)
の呼び出されandroid:hint
たプロパティは、EditText
xmlファイルに設定できます。
そんな感じ。
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="how much would you like to take" />
xmlでこれを試してください
以下のコードでこれを使用してくださいandroid:hint="how much would you like to take"
<EditText
android:id="@+id/edtName"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/txtName"
android:layout_marginRight="5dip"
android:hint="how much would you like to take"
android:inputType="textCapSentences"
/>
それが役に立てば幸い