如何使计数器显示变量?

kyks70gy  于 2021-06-30  发布在  Java
关注(0)|答案(1)|浏览(406)

所以我一直在尝试做一个能算数的应用程序。基本上这是一个标准的柜台应用程序。但是,我在实际显示数字时遇到了问题。我有按钮的设置:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<Button android:id="@+id/button_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="+"/>

<Button android:id="@+id/button_2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="-"
    android:layout_below="@+id/button_1" />
</RelativeLayout>

但是,我不知道如何在java中实际创建数字递增或递减的显示。我读过一些关于如何用edittext和textview修改文本的文章,但是我怎样才能用整数呢?如中所示,如果显示的数字是5,如何使我也有一个int或float具有相同的值?
热释光;我怎么做一个柜台应用程序?另外,如何使显示的数字成为变量而不是文本/字符串?

niknxzdl

niknxzdl1#

您必须使用string.valueof(“您的内容”),它将以下值转换为字符串:boolean、char、char[]、long、float、double、integer object;

相关问题