好吧,我最初的工作是將附件放在我的應用程序上,但首先我需要讓我的對話框按鈕正常工作。幫助,我真的不知道我需要做什麼才能讓我的按鈕功能。「警告」對話框中的按鈕不起作用
Attachment.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
final CharSequence[] items = { "Picture", "Video", "Audio" };
AlertDialog.Builder builder = new AlertDialog.Builder(SMS.this);
// Read Update
builder.setTitle("Attachment");
builder.setIcon(R.drawable.ic_launcher);
builder.setItems(items, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
if (items.equals("Picture")) {
Intent nextScreen1 = new Intent(
getApplicationContext(),
FirstLoginActivity.class);
startActivity(nextScreen1);
}
if (items.equals("Video")) {
Intent nextScreen1 = new Intent(
getApplicationContext(),
FirstLoginActivity.class);
startActivity(nextScreen1);
}
if (items.equals("Audio")) {
Intent nextScreen1 = new Intent(
getApplicationContext(),
FirstLoginActivity.class);
startActivity(nextScreen1);
}
}
});
builder.create(); // <-- See This!
builder.show();
}
});
}
我沒有得到錯誤,但它沒有做任何事情。
你是否從你的按鈕得到任何迴應?意思是如果你在他們的日誌中,他們出現? – JoxTraex
對話框是否正確顯示? – Viking