我的java代码中有一个文本变量,其值是一个位置地址。我想将此地址写入文本框,放置在 Res 文件夹中:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.currentplacedetailsonmap.MapsActivityCurrentPlace" />
<EditText
android:id="@+id/text_box"
android:inputType="text"/>
那么,是否存在一个java编码的方法,我可以通过它来实现这个目标?
非常感谢。
您可以使用此启用 Edittext
android:enabled="false"
并在您的java代码中简单edittext.setText("Your Data");
使用 TextView 而不是 Edittext(如果只想显示)
我是一名优秀的程序员,十分优秀!