gpt4 book ai didi

安卓输出错误。 TextView 不会显示输出

转载 作者:行者123 更新时间:2023-11-29 22:16:21 24 4
gpt4 key购买 nike

package com.culligandev.www;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class threeRows extends Activity {

TextView display;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.output);
display = (TextView) findViewById(R.id.tvDisplay);

int a = 3;

for(int i = 0; i < a; i++) {
for(int j = 0; j <= i; j++) {
display.setText("*");
}
display.setText("");
}
}
}

此 Activity 通过按下按钮调用,然后应输出一个由星号组成的三角形,如下所示:

*
**
***

它不输出任何内容,只显示一个空白屏幕。你能帮忙吗?

最佳答案

setText 不能像 printf 或 println 那样工作

如果你想显示一个模式,那么你可以使用 StringBuilder 或 StringBuffer 来实现然后在 setText 中使用该字符串缓冲区/构建器对象来显示模式

关于安卓输出错误。 TextView 不会显示输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8379666/

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