Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Self-Destructing Message Android App Capturing Photos and Videos Presenting a List of Choices in a Dialog

Yongshuo Wang
Yongshuo Wang
5,500 Points

Cannot find symbol Dialog.

I got the error cannot find symbol Dialog. Please help.

MainActivity.java
import android.app.Activity;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.view.MenuItem;
import android.app.Dialog;

public class MainActivity extends Activity {

    protected DialogInterface.OnClickListener mDialogListener = new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {

        }
    };

    // Some code omitted!

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        int itemId = item.getItemId();

        switch(itemId) {        
            case R.id.action_button:
                AlertDialog.Builder builder = new AlertDialog.Builder(this);
                builder.setItems(R.array.genres,mDialogListener);
                Dialog dialog = builder.create();
                dialog.show();
                break;
        }

        return super.onOptionsItemSelected(item);
    }
}

1 Answer

Damien Watson
Damien Watson
27,419 Points

Hey, you have 'Dialog' instead of 'AlertDialog'.

Try :

// Replace this line
// Dialog dialog = builder.create();
// with

AlertDialog dialog = builder.create();
Yongshuo Wang
Yongshuo Wang
5,500 Points

Hi, thanks it works. When i use Dialog it works in my android studio with the import android.app.Dialog;