我正在尝试将我的游戏从java转换为Android Studio,因此我可以学习Android开发。但我现在最大的问题是显示价值。
我得到了变量,例如:CarMain.main[0]
使用按钮我正在添加值:CarMain.main[0] += 1;
在Java中,我显示的值如下:
S_MoneyLabel.setText("Money: " + CarMain.main[0]);
输出是例如:金钱:71或金钱:5000
现在在Android工作室我不知道如何显示它。 我正在考虑 textview 选项,但无法弄清楚如何做到这一点。
答案 0 :(得分:0)
在布局xml文件中添加文本视图,如下所示:
<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">
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/button"/>
</RelativeLayout>
现在,在您的活动类中,在onCreate()方法中为该按钮创建实例:
Button button = findViewById(R.id.button);
现在,将结果设置为文本视图
button.setText("Money: " + CarMain.main[0]);