목록IT (1480)
오늘도 공부
출처 : http://hyeonstorage.tistory.com/14 UML Diagram의 종류 (1) Class Diagram - 개요 : 객체 타입(클래스)들을 정의하고 그들 간에 존재하는 정적인 관계를 다양한 방식(Association, Aggregation, Generalization, Realization, Dependency) 으로 표현한 Diagram - 클래스 표기법 - Class Diagram 사용 용도 요구분석 -> Class Diagram (개념)분석 -> Class Diagram (분석)설계 -> Class Diagram (설계), Class Diagram (구현) - Association 표기법 - Multiplicity 표기법 Multiplicity : 한 Class A의 I..
출처 : http://charlie0301.blogspot.kr/2013/06/fragmentactivity-fragmenttabhost.htmlFragmentActivity, FragmentTabHost 사용하기이전 블로그에서 이전 함 (원본 글 2013/06/27 작성) 아래 처럼 FragmentTabHost를 사용하면서 이것저것 하려니 개고생 함..그냥 Android Project를 하나 만들고 MainActivity를 만들때 Navigation Type을 Scrollable Tabs+Swipe로 선택하여SectionPagerAdapter + FragmentActivity 예제를 만들어 참고하여 app 만드는게 편함.. --------------------------------------------..
출처 : http://givenjazz.tistory.com/44 android-formatting.xml android.importorder 20개 정도 규칙이 있으며 출처는 source.android.com에서 좀 더 자세한 내용을 볼 수 있다. build된 sdk에는 없지만 sdk 소스를 다운받으면 이클립스용 코딩 포맷과 import순서가 정보가 적힌 xml파일도 같이 받을 수 있는데, 이 글에 첨부했다. android-formatting.xml은 "Window › Preferences › Java › Code Style > Formatter 에 import하고,android.importorder "Organize Imports에 import하면Shift+command+F로 자동포멧정리 기능을 안드..
출처 : http://202psj.tistory.com/571 http://code.google.com/p/android-market-api/ 개발자 입장에서 쌔가빠지게 업데이트 게속 해줘도 업데이트 하나도 안하는 사용자들이 너무 많다!! 주위에 보면 그런 사람 잇더라.. 그렇다고 따로 서버 둬서 체크하자니까 그냥 앱혼자노는 어플은 부담스럽다 구글플레이에 돈주고 개발자 등록했는데 요정도 서비스는 해줘야하는거 아닌가~~ 그렇다 해준다. 버전체크 api를 이용해서 정보를 가져와서 사용하자~ Build.VERSION.SDK_INT 일케 가져온담에 맞춰서 하자 MarketSession session = new MarketSession(); session.login("id","pw"); // 구글 아무 계정이나 ..
출처 : http://bardevblog.wordpress.com/2013/10/26/a-simple-tutorial-of-setting-up-and-using-bower-on-windows/ ← Understanding AngularJS – Simple ExampleKickStart – C# Custom Configuration →Kick-Start: Bower – A Simple Tutorial of Setting-Up and Using Bower.JSPosted on October 26, 2013by bardevThe goal of this post is to provide a simple description of how to install Bower JS and how to use Bower J..
출처 : http://cgimall.co.kr/happy_faq/board_detail.cgi?db=board_faq&thread=260&page=1&search_type=whole&search_word=%C1%A4%C3%A5 검색로봇(robot.txt) 설정에 대해서 안내를 드리려고 합니다. 먼저 검색로봇에 대해서 알아 보겠습니다 ^^ 누구나 한번쯤은 인터넷에서 자신에게 필요한 정보를 검색해 보셨을텐데요 이때 사용자는 네이버, 구글, 다음 같은 포털사이트에서 원하는 정보를 찾습니다. 그럼 이런 포털사이트들은 어떻게 이런 많은 정보를 가지고 있을까요? 바로 검색로봇 때문입니다. 우리가 많이 사용하는 포털사이트(네이버,구글,다음,야후)들은 모두 검색로봇을 가지고 있습니다. 검색로봇은 알아서 웹사이트들을 돌..
http://www.yongcloud.co.kr/android_tip.html
@android:anim/accelerate_decelerate_interpolator 애니메이션이 점점 빠르게 동작하다가 점점 천천히 동작합니다. @android:anim/accelerate_interpolator 애니메이션이 점점 빠르게 동작합니다. @android:anim/anticipate_interpolator 애니메이션이 시작할 때 반대 방향으로 동작을 한 후에 본래의 방향으로 동작합니다. @android:anim/anticipate_overshoot_interpolator 애니메이션이 시작할 때 반대 방향으로 동작을 한 후에 종료 지점을 지나갔다가 종료 지점으로 돌아옵니다. 예를 들어 왼쪽에서 오른쪽으로 이동하는 애니메이션이 있다면 시작할 때 뷰가 왼쪽으로 조금 움직인 후 오른쪽으로 이동하고..
출처 : http://www.vogella.com/tutorials/AndroidActionBar/article.html Using the action bar in Android applicationsThis tutorial describes how to use the action bar in your Android applications. It is based on Eclipse 4.3 (Kepler), Java 1.6 and Android 4.4.Table of Contents1. Introduction to the action bar1.1. What is the action bar?1.2. Example1.3. Action bar on devices before API 3.02. Using the ..
출처 : http://i5on9i.blogspot.kr/2013/02/loadermanager.html LoaderManager Sequence Diagram / LoaderManager flowchart / android 3.0 이후부터 LoaderManager 를 제공한다. comparability package 를 사용하면 1.6 에서부터 사용가능하다고 한다. Loaders 의 특징every Activities or Fragments : 모든 Activity 와 Fragment 에서 가능하다.(한 activity 또는 fragment 당 한개의 LoaderManager 를 갖는다. 한 개의 LoaderManager 는 여러개의 Loaders 를 가질 수 있다.)async data loading : ..
출처 : http://ismydream.tistory.com/136 안드로이드 Loader 활용하기 Loader- 안드로이드 3.0 에서 소개된 Loader 를 사용하면 액티비티와 프래그먼트에서의 비동기 데이터 로딩을 쉽게 처리할 수 있습니다. 특징- 모든 액티비티와 프래그먼트에서 사용할 수 있습니다.- 어플리케이션 UI를 Blocking 하지 않도록 비동기 데이터 로딩을 제공합니다.- 데이터를 모니터 하기 때문에 데이터가 변경되었을때 변경사항을 확인할 수 있습니다. APILoaderManager - LoaderManager는 액티비티, 프래그먼트 와 1:1 의 관계를 갖습니다. 액티비티 하나당 하나의 LoaderManger 가 존재하는 셈이죠그리고 하나의 LoaderManager 는 여러개의 Loade..
https://github.com/grantland/android-autofittextview
출처 : http://ankri.de/autoscale-textview/I was in need of a TextView that has a fixed with but dynamic content, so I needed the content to automatically scale.The AutoScaleTextView takes the android:textSize value and uses it as the preferred text size. You can also set the minimum text size. The default for the minimum text size is 10dp. TheAutoScaleTextView now tries to take the maximum value b..
android-formatting.xml android.importorder 20개 정도 규칙이 있으며 출처는 source.android.com에서 좀 더 자세한 내용을 볼 수 있다. build된 sdk에는 없지만 sdk 소스를 다운받으면 이클립스용 코딩 포맷과 import순서가 정보가 적힌 xml파일도 같이 받을 수 있는데, 이 글에 첨부했다. android-formatting.xml은 "Window › Preferences › Java › Code Style > Formatter 에 import하고,android.importorder "Organize Imports에 import하면Shift+command+F로 자동포멧정리 기능을 안드로이드에 맞게 사용할 수 있다. Java Language Rules..
리스트뷰 밑의 내용 스크롤시 애니메이션 붙이는 방법 https://github.com/cuub/sugared-list-animations https://github.com/nhaarman/ListViewAnimations 오픈소스 사용하시면 됩니다.
http://blog.naver.com/PostView.nhn?blogId=iflowerpot&logNo=80121408847&categoryNo=13&parentCategoryNo=0&viewDate=¤tPage=3&postListTopCurrentPage=&userTopListOpen=true&userTopListCount=5&userTopListManageOpen=false&userTopListCurrentPage=3
출처 : https://medium.com/marojuns-android/kitkat-4-4-%EC%97%90%EC%84%9C-%EB%A7%9E%EB%8B%A5%EB%9C%A8%EB%A6%B0-%EC%9D%B4%EC%8A%88-%EB%B0%8F-%ED%95%B4%EA%B2%B0-1ecb94c24694
위의 그림에서 알수 있듯이..전원케이블은 따로 아답타를 꼽아서 전원을 공급해야 하는 번거로움이 있답니다.그래서~ 이런 케이블도 있습니다.전원도 함께 공급해주는 케이블~!한번 볼까요?30미터에 15,000원꼴로 가격도 저렴합니다.케이블만 바꿔주면 번거로움을 없앨 수 있겠지요? 그럼 천장에 달린 돔카메라는 얼마정도 할까요?업소 복도같은 곳은 적외선 카메라도 좋습니다.적외선카메라란?반경 몇미터내에 사람의 움직이 있을때만 녹화를 하는 것이여서..저장용량을 대폭 줄여주는 역할을 한답니다.그대신 가격이 비싸지요~ 제일 싼것이 10만원 이상입니다. 대부분 사용하는 것이 보급형 돔카메라인데~한번 살펴볼까요? 가격은 2만원대에서 5만원까지 화소수에 따라 다양합니다.2만원짜리도 쓸만합니다.이 돔카메라는 실내용입니다.즉 실..
http://fromyou.tistory.com/581 그냥 최고임!!! 짱!!
http://hns17.tistory.com/entry/App-개발-잠금화면-HomeKey-Control-Problem
출처 : http://www.hanbit.co.kr/network/view.html?bi_id=123 by 부디 쿠니아완(Budi Kurniawan) C#은 마이크로소프트가 새로 개발한 프로그래밍 언어이며, C/C++ 분야에서 "첫 번째 컴포넌트 지향 언어"라고 홍보하고 있다. 이러한 주장에도 불구하고, 많은 사람들은 마이크로소프트가 자바와 대적하기 위해 C#을 만들었다고 생각한다. 과연 이러한 생각이 옳은 것인가? 이 글에서는 C#이 자바 이상의 기능을 가지고 있다는 것을 보여주려 한다. C#에 대해 좀더 배우기를 원하는 자바 프로그래머라면, 반드시 이 기사를 읽어 보기 바란다.C#과 C++, 자바 현재 선전하고 있는 내용을 고려하면, 마이크로소프트의 앤더스 헤즐버그(Anders Hejlberg)와 스..
100% — FF 95% — F2 90% — E6 85% — D9 80% — CC 75% — BF 70% — B3 65% — A6 60% — 99 55% — 8C 50% — 80 45% — 73 40% — 66 35% — 59 30% — 4D 25% — 40 20% — 33 15% — 26 10% — 1A 5% — 0D 0% — 00
노티시 위에 떠있는 팝업 보여주기링크 : http://www.kmshack.kr/313
출처 : http://stackoverflow.com/questions/16163215/android-styling-seek-bar I would extract drawables and xml from Android source code and change its color to red. Here is example how I completed this for mdpi drawables: Custom red_scrubber_control.xml: Custom: red_scrubber_progress.xml Then copy required drawables from Android source code, I took them here: https://github.com/android/platform_fra..
출처 : http://stackoverflow.com/questions/12411060/get-listview-height-after-setadapter ListView lv_marca; lv_marca.setAdapter(adapter_marca); int list_height = getListViewHeight(lv_marca); private int getListViewHeight(ListView list) { ListAdapter adapter = list.getAdapter(); int listviewHeight = 0; list.measure(MeasureSpec.makeMeasureSpec(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED), Measur..
출처 : http://arabiannight.tistory.com/55 안드로이드/Android 부모의 속성을 동일 하게 가져 가자! 안드로이드 XML을 개발하면서 List나 뷰의 이벤트 발생에 따라 화살표(Arrow)버튼 이미지도 Press 처리 해야 할 경우가 많은데요. 이런 경우게 onTouchEvent로 터치 했을 경우에 Pressed 처리하거나 터치를 종료할 경우 Normal 처리 해주는 경우가 있었을 겁니다. 하지만 부모 뷰의 속성에 따라 Child뷰의 속성들이 이벤트를 받는 XML 속성이 있는데요. 이 속성을 쓰면 훨씬더 간결하고 편하게 코드를 작성할 수 있습니다. 그 속성의 이름은 바로 요놈 입니다. android:duplicateParentState="true" 보통 요즘의 화면 구성에는..
출처 : http://hmkcode.com/android-custom-listview-titles-icons-counter/ Android | Custom ListView with Titles, Icons & Counter You can customize the ListView by providing a new layout for the list items “rows”. The new layout can be more than just a single TextView. Here will see how to develop a custom ListView with items having leading icons “ImageView“, trailing counters “TextView” and some tex..
출처 : http://www.kmshack.kr/323 Android View와 관련된 오픈소스들이 많이 공개 되고 있다. 그래서 많이 쓰이고 유용한 오픈소스를 정리 해보았다. 아직 국내에서는 오픈소스가 인색한지 모두 외국에서 만든것들이다. 나도 View관련 오픈소스를 하나준비 하겠다고 준비중인데.. 준비중이기만 하다. 참고로, 잘 알려지고 검증된 오픈소스라도 코드를 하나하나씩 보고 어떻게 구현되어 있는지 꼭 살펴보고 썼으면 좋겠다. 그리고 이제 개발을 시작한지 얼마 안된 분들이라면 이런 오픈소스를 사용함으로 자기 실력을 죽일 수도 있으니 한번씩 구현해보는 것도 좋을듯 하다. 그리고 국내 개발 커뮤니티에 보면 자기가 개발할 것에 대해 오픈소스를 찾음으로써 개발해서 삽질 하기전에 찾아서 다행이다라는 글들을..
출처 : http://kahdev.wordpress.com/2008/09/13/making-a-custom-android-button-using-a-custom-view/ Creating a custom view is as simple as inheriting from the View class and overriding the methods that need to be overridden. In this example, a custom button is implemented in this way. The button shall feature a labelled image (i.e. an image with text underneath). 1 public class CustomImageButton ext..
