[PhotoShop] Text Logo 텍스트 로고를 만드는 과정입니다. 급하게 만드는데다 포토샵에 대해 아는게 거의 없어서 아는데로 쥐어짜서 만들어봤습니다. - 8/17 영상 오류 수정 댓글
[안드로이드 스튜디오 APK] 메모장 Memo 오픈 소스 아래 영상은 밑에 보이는 소스를 응용해서 추가적인 기능을 넣어서 영상을 찍은 것입니다. 다음은 기본 메모장 소스입니다. activity_main.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 < ?xml version = "1.0" encoding = "utf-8" ? > < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" android:layout_width = "match_parent" android:layout_height = "match_parent" android:id = "@+id/activity_main" > < EditText android:id = "@+id/editText" android:layout_width = "match_parent" android:layout_height = "match_parent" android:gravity = "top" ... 계속 읽기
[C 언어] 하노이 탑 Tower of Hanoi 1 2 3 4 5 6 7 8 9 10 11 12 #include < stdio.h > void hanoi_tower( int n, char from, char tmp, char to){ if (n > 0 ){ hanoi_tower(n - 1 , from, to, tmp); printf ( "원판 %d을 %c에서 %c으로 옮긴다.\n" ,n,from,to); hanoi_tower(n - 1 , tmp, from, to); } } main(){ hanoi_tower( 5 , 'A' , 'B' , 'C' ); } Colored by Color Scripter cs 실행화면 계속 읽기
[안드로이드 스튜디오] SwipeRefreshLayout activity_main.xml 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 < ?xml version = "1.0" encoding = "utf-8" ? > < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:app = "http://schemas.android.com/apk/res-auto" xmlns:tools = "http://schemas.android.com/tools" android:layout_width = "match_parent" android:layout_height = "match_parent" tools:context = "com.example.pita.swiperefreshlayout.MainActivity" > < android.support.v4.widget.SwipeRefreshLayout android:id = "@+id/swipeLayout" ... 계속 읽기
댓글
댓글 쓰기