1) パスカルのような画面出力の簡単な方法はありますか: write(A,'+',B,'=',C) ?
私は試した :
void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.new_layout);
Toast.LENGTH_LONG).show();
int A,B,C;
A=4;
B=8;
C=A+B;
String text = getString(A,"+",B,"=",C);
TextView tv = (TextView) findViewById(R.id.textView1);
tv.setText(text);
//Toast.makeText(this,text, Toast.LENGTH_LONG).show();
}
しかし、うまくいきません。「...アプリケーションが停止しました」と表示されるたびに
tv.setText(A,"+",B,"=",C) //stringing integers なし;
ご助力いただきありがとうございます。