Button
Button 用法 直接複製即可使用
紅字要改成自己程式內button的ID
點擊寫法
Button aBtn=(Button) findViewById(R.id.btnId);
aBtn.setOnClickListener(new Button.OnClickListener()
{
public void onClick(View v)
{
//要做的事
}
});
長按寫法
Button aBtn=(Button) findViewById(R.id.btnId);
aBtn.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
//要做的事
return true;
}
});
紅字要改成自己程式內button的ID
點擊寫法
Button aBtn=(Button) findViewById(R.id.btnId);
aBtn.setOnClickListener(new Button.OnClickListener()
{
public void onClick(View v)
{
//要做的事
}
});
長按寫法
Button aBtn=(Button) findViewById(R.id.btnId);
aBtn.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
//要做的事
return true;
}
});
留言
張貼留言