Android

7.26.2015

페이지 정보

작성자 Ryangkyung 작성일15-07-27 16:45 조회2,383회 댓글0건

본문

Ctrl Shift N

Shift F6

 

전체: activity

화면 구성 부속품 통틀어: View

화면에 보이는 것들(텍스트, 버튼, 체크박스 등): Widget

레이아웃: ViewGroup

 

레이아웃만이 다른 태그 담을 수 있다.

 

layout_margin: 바깥 여백

layout_padding: 안쪽 여백

 

lambda

 

public class Java8Tester {

public static void main(String args[]){

Java8Tester tester = new Java8Tester();

MathOperation addition = (int a, int b) -> a + b;

System.out.println("10 + 5 = " + tester.operate(10, 5, addition));

}

interface MathOperation{

int operation(int a, int b);

}

private int operate(int a, int b, MathOperation mathOperation){

return mathOperation.operation(a, b);

}

 

 

testButton.addActionListener(e -> System.out.println("Click Detected by Lambda")); 

 

댓글목록

등록된 댓글이 없습니다.