如何在用户输入任何字符时替换文本字段中的文本

时间:2012-09-13 16:18:44

标签: android android-widget textfield

在我的Android应用程序中,我有一个文本字段,上面写着“你想要多少钱。”

我希望文本自动删除,并替换为用户在该文本字段中输入时输入的内容。

示例:如果用户输入一个字符,它会自动从文本字段中删除“您想要多少”,并将其替换为输入的一个字符。

3 个答案:

答案 0 :(得分:2)

在xml文件中使用

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

TextView定义

(嗯,它应该是"@string/how_much"和strings.xml中的how_much字符串,但老实说......“

答案 1 :(得分:1)

android:hint的{​​{1}}属性可以将其设置为xml文件。

类似的东西。

EditText

答案 2 :(得分: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"
    />

希望有所帮助