如何使用引用?是通过使用@id还是需要声明全局变量?
这是我的 main.xml 的一部分
<TextView
android:id="@id/infoname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginLeft="35dp"
android:text="Hi Name"
android:textSize="25sp" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Welcome to Program"
android:textAppearance="?android:attr/textAppearanceLarge" />
这是我的 editinfo.xml 的一部分,
<EditText
android:id="@+id/infoname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:hint="3 to 10 characters"
android:layout_weight="1"/>
来自编辑文本中的 id/infoname(例如输入是 MyName) 我怎样才能从内容 main.xml 中执行类似 Hi MyName 的操作 谢谢 :)
this is part of my main.xml
<TextView
android:id="@id/infoname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginLeft="35dp"
android:text="Hi Name"
android:textSize="25sp" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Welcome to Program"
android:textAppearance="?android:attr/textAppearanceLarge" />
this is part of my editinfo.xml
<EditText
android:id="@+id/infoname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:hint="3 to 10 characters"
android:layout_weight="1"/>
from editing the id/infoname from edit text(for example input is MyName)
how could i do something like Hi MyName from the content main.xml
thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在尝试以编程方式更改 EditText 的文本属性吗?
在 Java 文件的 onCreate 中:
EditText yourEditText = (EditText)findViewById(R.id.yourEditText);
yourEditText.setText("MyName");
您将获取对 EditText 对象的引用并设置文本属性。
You're trying to change the text property of your EditText programmatically?
In your Java file's onCreate:
EditText yourEditText = (EditText)findViewById(R.id.yourEditText);
yourEditText.setText("MyName");
You're getting a reference to your EditText object and setting the text property.