在我的Android应用程序中,我有一个文本字段,上面写着“你想要多少钱。”
我希望文本自动删除,并替换为用户在该文本字段中输入时输入的内容。
示例:如果用户输入一个字符,它会自动从文本字段中删除“您想要多少”,并将其替换为输入的一个字符。
答案 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"
/>
希望有所帮助