Smart Device59 SlidingPage와 GestureDetector Sliding와 GestureDetector를 사용해 페이지 fling Event시 페이지 슬라이딩 구현하기 - activity_main.xml - MainActivity.javapackage xxx.xxx.xxx; import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.view.GestureDetector;import android.view.Menu;import android.view.MenuItem;import android.view.MotionEvent;import android.view.View;import android.view.animation.Animation;import android.vi.. 2015. 7. 15. 에뮬레이터에서 단말의 방향을 전환하는 단축키 에뮬레이터에서 단말의 방향을 전환하는 단축키 Ctrl + F11 과 Ctrl + F12 2015. 7. 8. 전체 화면 보기 // 전체 화면 보기 final Window win = getWindow(); win.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 2015. 7. 8. Swift extension #6 Nested Types Nested Types예extension Int { enum Kind { case Negative, Zero, Positive } var kind: Kind { switch self { case 0: return .Zero case let x where x > 0: return .Positive default: return .Negative } }} func printIntegerKinds(numbers: [Int]) { for number in numbers { switch number.kind { case .Negative: print("- ", appendNewline: false) case .Zero: print("0 ", appendNewline: false) case .Positive: pri.. 2015. 6. 25. 이전 1 2 3 4 5 6 ··· 15 다음