gpt4 book ai didi

Android:显示一个整数

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

当我注释掉 counter 并使用消息运行它时,它工作正常。但是它不会显示整数。在研究过程中,我发现显示字符串的示例代码与显示整数的示例代码没有区别。也许我可以在某个地方查看指南?或者一个简单的答案也将不胜感激。谢谢。

package com.evorlor.testcode;

import android.app.Activity;
import android.os.Bundle;
import android.text.method.ScrollingMovementMethod;
import android.widget.TextView;

public class SupWorld extends Activity {

private String message;
private int counter;

/**
* @param args
*/
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// TODO Auto-generated method stub

message = "Sup world.";
counter = 123;

TextView text = new TextView(this);

text.setTextSize(100);
text.setMovementMethod(new ScrollingMovementMethod());
// text.setText(message);
text.setText(counter);

setContentView(text);

}

}

最佳答案

这是正确的做法。

text.setText(Integer.toString(counter)); 

关于Android:显示一个整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13810821/

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