如何使用引用?是通过使用@id还是需要声明全局变量?

发布于 2024-12-27 01:26:23 字数 953 浏览 0 评论 0原文

这是我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清晨说晚安 2025-01-03 01:26:23

您正在尝试以编程方式更改 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文