-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathApp.java
More file actions
42 lines (30 loc) · 1 KB
/
App.java
File metadata and controls
42 lines (30 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.hmkcode;
public class App implements OnClickListener
{
public static void main( String[] args ){
System.out.println( "Running App..." );
new App().run();
}
public void run(){
Button myButton = new Button();
myButton.setName("MyButton");
// 1. implements onClickListener
//myButton.setOnClickListener(this);
// 2. anonymous class
/*myButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(Button button) {
System.out.println(button.getName() +" Clicked! - anonymous class");
}
}); */
// 3. lambda
OnClickListener lambda = button -> { System.out.println(button.getName()+" Clicked! - lambda"); } ;
myButton.setOnClickListener(lambda);
// click the button
myButton.click();
}
@Override
public void onClick(Button button) {
System.out.println(button.getName() +" Clicked! - implements interface");
}
}