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 trialMUZ140667 Tawanda Shoko
4,152 PointsDeclaring AlertDialog Builder:Challenge1:Adding camera and video Button-Build self Destructing android app
I don't know where i'm wrong with my code, may you help me.Thanks
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;
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:
break;
AlertDialog.Builder builder = new AlertDialog.Builder(this);
}
return super.onOptionsItemSelected(item);
}
}
1 Answer
MUZ140667 Tawanda Shoko
4,152 PointsThanks solved