Skip to content

Instantly share code, notes, and snippets.

@codenameone
Created February 14, 2016 16:47
Show Gist options
  • Save codenameone/2627b4edc5d3d340ce90 to your computer and use it in GitHub Desktop.
Save codenameone/2627b4edc5d3d340ce90 to your computer and use it in GitHub Desktop.
Sample explaining how to make a Button look like a hyperlink in Codename One
Form hi = new Form("Button");
Button b = new Button("Link Button");
b.getAllStyles().setBorder(Border.createEmpty());
b.getAllStyles().setTextDecoration(Style.TEXT_DECORATION_UNDERLINE);
hi.add(b);
b.addActionListener((e) -> Log.p("Clicked"));
@codenameone
Copy link
Author

Sample usage of Button.

From the Codename One project

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment