0

私のAndroidアプリには、「いくらかかりますか」というテキストフィールドがあります。

テキストが自動的に消去され、ユーザーがそのテキストフィールドに入力したときに入力したものに置き換えられるようにしたいと思います。

例:ユーザーが1文字を入力すると、テキストフィールドから「いくらかかりますか」が自動的に削除され、入力された1文字に置き換えられます。

4

3 に答える 3

2

xmlファイルで使用する

android:hint="how much would you like to take" 

あなたのTextView定義では

(まあ、それはstrings.xmlの"@string/how_much"そのhow_much文字列のようなものでなければなりませんが、正直なところ...)

于 2012-09-13T16:21:40.083 に答える
1

の呼び出されandroid:hintたプロパティは、EditTextxmlファイルに設定できます。

そんな感じ。

 <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="how much would you like to take" />
于 2012-09-13T16:22:24.283 に答える
1

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"
    />

それが役に立てば幸い

于 2012-09-13T16:23:59.457 に答える