Android
-
안드로이드 애니메이션 라이브러리 모음모바일/Development 2014. 7. 6. 12:04
1. SlidingUpPanelLayout 다운로드: https://github.com/umano/AndroidSlidingUpPanel/releases주소: https://github.com/umano/AndroidSlidingUpPanel 2. FoldableLayout 주소 및 다운로드: https://github.com/alexvasilkov/FoldableLayout 3. android-flip 주소 및 다운로드: https://github.com/openaphid/android-flip 4. SwipeBackLayout 주소 및 다운로드: https://github.com/Issacw0ng/SwipeBackLayout 6. Android-ParallaxHeaderViewPager 주소 및 다운..
-
-
안드로이드 추천 라이브러리 FlatUI모바일/Development 2014. 6. 29. 09:25
이번에 소개해드릴 라이브러리는 FlatUI 입니다. 이 라이브러리는 편안하게 앱에 FlatUI를 적용할 수 있습니다. FlatButton, FlatTextView, FlatEditText, FlatRadioButton, FlatCheckBox, FlatSeekbar, FlatToggleButton 의 View를 지원합니다. 사용법도 간단합니다. 메인 액티비티에 이 문구를 추가합니다.// screen sizes. If you skip this there may be problem with different screen densities FlatUI.initDefaultValues(this); // Setting default theme to avoid to add the attribute "theme" t..
-
안드로이드 앱 개발 시 배경화면을 타일로 설정하기모바일/Development 2014. 4. 20. 17:08
'타일(패턴) 배경화면' 패턴 이미지를 만드세요. (※ 서로서로 이어지게 만드세요.) 샘플 그리고 Eclipse 나 Android Studio를 실행하세요. 그다음, drawable 폴더를 만들고 xml 하나를 만드세요. Bitmap으로 그다음은 내용을 이렇게 바꿔주세요. (android:src 에는 알맞은 패턴을 넣으세요.) 그런 다음 layout 에서 배경을 바꾸세요. 결과 소스파일에 몇몇 패턴을 추가시켜놨으니 참고하세요^^ 이미지 크기 참조 xxxhdpi - 64x64 xxhdpi - 48x48 xhdpi - 32x32 hdpi - 24x24 mdpi - 16x16
-
build.prop 내용 불러오기모바일/Development 2014. 2. 6. 23:46
'=' 뒤에 내용을 불러온다. ex) ro.product.model을 불러오게 하면, 'ro.product.model=기기명' 이 아니라 '기기명'만 출력됨 public static String getProp(String prop) { try { Process process = Runtime.getRuntime().exec("getprop " + prop); BufferedReader bufferedReader = new BufferedReader( new InputStreamReader(process.getInputStream())); StringBuilder log = new StringBuilder(); String line; while ((line = bufferedReader.readLine()..