(DialogInterface dialog, int which)
| 73 | public void run() { |
| 74 | builder.setPositiveButton("OK", new DialogInterface.OnClickListener() { |
| 75 | @Override |
| 76 | public void onClick(DialogInterface dialog, int which) { |
| 77 | onResult(ptr, input.getText().toString()); |
| 78 | dialog.dismiss(); |
| 79 | } |
| 80 | }); |
| 81 | |
| 82 | builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() { |