Here's a barebone snippet of what I've tried:
Using java Syntax Highlighting
- public boolean onTap(Context i){
- Dialog popUp = new Dialog(PName.this);
- popUp.setTitle("Title");
- popUp.setContentView(R.layout.popup);
- popUp.show();
- return true;
- }
Parsed in 0.031 seconds, using GeSHi 1.0.8.4
But nothing happens.
Edit: figured it out. For some reason I typed (Context i) rather than (int i). Damn my little mistakes.

