0

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

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

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

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属性,EditText您可以将其设置到您的 xml 文件中。

类似的东西。

 <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 回答