天天看点

按钮 toast android,android学习之Toast(单击按钮显示Toast信息)

照着书本打的代码:

1  java 文件

setContentView(R.layout.main);

Button button01=(Button)findViewById(R.id.button1);

button01.setText(R.string .word);

button01.setOnClickListener(new OnClickListener()

{

public void onClick(View v) {

// TODO Auto-generated method stub

Toast.makeText(acitivitymain.this, "hello Toast !", Toast.LENGTH_LONG)

.show();

}

}

);

2 string.xml

新加的内容:

hello 你好

3 main.xml

添加一个按钮文件

android:id="@+id/button1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="dianji"

>

结果: