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