天天看點

按鈕 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"

>

結果: