gpt4 book ai didi

android - 在 TextView 中显示整数变量

转载 作者:行者123 更新时间:2023-11-29 14:23:23 25 4
gpt4 key购买 nike

我有一个依赖于用户输入的 int。如何在屏幕上显示 int

这是我一直在尝试的:

    <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@int/HW" // What goes here, This is where i am confused
tools:context=".DisplayMessageActivity" />

这里还有我定义的变量,你可能已经看过我不久前关于这个程序的帖子:

    // Receive messages from options page
Intent intent = getIntent();
int HW = intent.getIntExtra("MESSAGE_HW", 0);
int OTW = intent.getIntExtra("MESSAGE_OTW", 0);
int HPD = intent.getIntExtra("MESSAGE_HPD", 0);

我正在尝试在屏幕上显示 int HW,非常感谢任何帮助!谢谢!

最佳答案

android:text="@int/HW" // What goes here, This is where i am confused

默认值可以放在那里。会告诉您 TextView 尚未填充的内容。

How do i display that int on the screen?

要在您向我们展示的 TextView 内的屏幕上显示 int。您需要在 Activity 中使用类似于以下内容的内容获取 TextView:

TextView textView = (TextView) this.findViewById(R.id.textViewId);

然后您可以使用以下内容在该 textView 上设置文本:

textView.setText(String.valueOf(HW));

这是将 id 添加到 xml 的示例:

<TextView
android:id="@+id/textViewId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@int/HW" // What goes here, This is where i am confused
tools:context=".DisplayMessageActivity" />

关于android - 在 TextView 中显示整数变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11673699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com