Android添加占位符文本到EditText

我如何添加一个占位符文本到EditText类,不是在XML?

我在我的代码中有以下EditText,它将在alertdialog中显示:

    final EditText name = new EditText(this);
390293 次浏览

如果你指的是你要在布局中添加它的位置。 你可以定义一个像FrameLayout一样的容器,并在创建时将此EditText添加到它

<LinearLayout xmlns=".."/>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>


FrameLayout layout = (FrameLayout) findViewById(R.id.container);
layout.addView(name);

啊,好吧。你要找的是setHint(int)。只需从xml中传入一个字符串的资源id,就可以开始了。

enter image description here

编辑

在XML中,它就是android:hint="someText"

android:hint="text"为用户提供了一个信息,他需要在特定的editText中填写什么

例如:-我有两个edittext一个数字值和其他字符串值。我们可以给用户设置一个提示,让他明白他需要给予什么价值

android:hint="Please enter phone number"
android:hint="Enter name"

在运行应用程序后,这两个编辑文本将显示输入提示,点击编辑文本后,用户可以输入他想要的内容(见奢侈模式图片)

这是如何使输入密码有提示,不转换为* !!

关于XML:

android:inputType="textPassword"
android:gravity="center"
android:ellipsize="start"
android:hint="Input Password !."

感谢芒果和rjjr的洞察力:D。

在活动中

<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:background="@null"
android:hint="Text Example"
android:padding="5dp"
android:singleLine="true"
android:id="@+id/name"
android:textColor="@color/magenta"/>

enter image description here

在Android Studio中,你可以通过GUI添加提示(占位符)。首先在设计器视图上选择EditText字段。然后点击IDE左边的组件树(通常它在那里,但它可能在那里最小化),在那里你可以看到所选EditText的属性。找到下面Image中的提示字段
< br > enter image description here

在那里,您可以添加提示(占位符)到EditText

如果你想在你的EditText视图中插入文本,在字段被选中后(不像提示的行为),这样做:

在Java中:

// Cast Your EditText as a TextView
((TextView) findViewById(R.id.email)).setText("your Text")

在芬兰湾的科特林:

// Cast your EditText into a TextView
// Like this
(findViewById(R.id.email) as TextView).text = "Your Text"
// Or simply like this
findViewById<TextView>(R.id.email).text = "Your Text"

你必须使用android:hint属性

<EditText
android:id="@+id/message"
android:hint="<<Your placeholder>>"
/>
在Android Studio中,您可以从XML ->设计视图切换,并单击布局中的组件,在本例中是EditText字段。 这将显示该GUI组件的所有适用属性。 当你不知道所有属性在那里时,这将是很方便的

您会惊讶地发现EditText有超过140个自定义属性。