如何将文本(根据用户输入)预先填充到xml的输入框中?
例如,我有一个服务器盒,如何在其中硬编码文本? 在布局xml中,将其设置为 android:hint =“服务器网址”
我尝试使用android:text =“ @ string / hostname” sfter添加到res值中的strings.xml字符串.xml:
<string name="host">http://example.com</string>
但这不起作用。我需要像有人键入它那样对其进行硬编码。
提示只是一个叠加层,但是我需要输入它。我该怎么办?我只喜欢使用xmls
这是我的xml
<EditText
android:textSize="15.0dip"
android:textColor="@color/black"
android:textColorHint="@color/white"
android:id="@id/et_sever_url"
android:background="@drawable/selector_login_fields"
android:paddingLeft="20.0dip"
android:paddingRight="20.0dip"
android:focusable="true"
android:nextFocusUp="@id/et_password"
android:nextFocusDown="@id/bt_submit"
android:layout_width="fill_parent"
android:layout_height="50.0dip"
android:layout_marginLeft="25.0dip"
android:layout_marginTop="20.0dip"
android:layout_marginRight="25.0dip"
android:text="@string/host"
android:maxLines="1" android:lines="1"
android:layout_below="@id/et_password"
android:layout_centerHorizontal="true"
android:inputType="text"
android:textCursorDrawable="@null"
android:fontFamily="sans-serif" />