我正在尝试将一个int值和一些文本设置为textview,但它没有到来。
myTextView.setText(getText(R.string.remaining_count) +" " + count);
这里count是整数变量。
答案 0 :(得分:1)
请试试这个 -
myTextView.setText(getResources().getString(R.string.remaining_count) +" " + count);
答案 1 :(得分:0)
你可以使用
这两个......
String testString = Integer.toString(test);
或
int test=5;
String testString = String.valueOf(test);
然后将其设置为textView 快乐的编码... :)
答案 2 :(得分:-1)
尝试以下代码。
myTextView.setText(getString(R.string.remaining_count) +" " + String.valueOf(count));
或
您还可以在string.xml
中提及的文本后面添加值<string name="remaining_count">Remaning Count : %1$s </string>
mTextViewTotalBalance.setText(getString(R.string.remaining_count, count));