我将在我的应用程序中使用 toast 进行测试。我只是 Android 环境的新手,我对 toast 不是很熟悉。我知道一个标准的吐司是这样的:Toast.makeText(context, text, duration).show();
。但是,我不想将文本字符串应用到“文本”部分,而是应用一个变量。
这是我写的:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_screen_next);
Button send = (Button) findViewById(R.id.bSend);//Import button1 (Send)
send.setOnClickListener(new OnClickListener() {//Set an onClickListener for the button to work
public void onClick(View v) {
Toast.makeText(getApplicationContext(), cText, Toast.LENGTH_LONG).show();
}//end method
});//End Send
}//End onCreate
cText
是在类中存在的不同方法中使用的变量。关于如何让吐司包含内容的任何建议cText
?提前致谢。