본문 바로가기

개발도구/aOS - 안드로이드 개발

넥서스5 안드로이드 L에서 킷캣으로 다운그레이드 1단계 해당 파일 다운로드Nexus 5 KitKat factory imageNexus 7 (2013, Wi-Fi) KitKat factory imageADB/Fastboot Installer for WindowsADB/Fastboot for Mac 2단계 (첨부파일 + unlock 만들기)./fastboot oem unlock ADB install 파일준비Fastboot system-wide 파일 준비 3. Volume Down + Power buttonfastboot 모드로 진입 4. Flashing the image2단계 압축푼 해당 디렉토리에 가서fastboot devices - 기기를 인식하는지 유무를 확인할 수 있다.설치 방법은 아래와 같습니다.Windows: flash-all.batMac: ... 더보기
[안드로이드] custom font xml 적용하기 펌) http://blog.naver.com/PostView.nhn?blogId=sungho0459&logNo=40147285896 외부 폰트를 적용 방법 3가지 1.TextView 재정의.2.attrs.xml 작성3.main.xml 적용 1.TextView 재정의.외부 폰트를 XML에서 사용하려면 기존 TextView를 새롭게 정의할 필요가 있습니다. package com.example; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Typeface; import android.util.AttributeSet; import android.util.Log; import android.. 더보기
[안드로이드]네트워크 체크 - ConnectivityManager 현재 실 사용중인 네트워크 체크 소스입니다. protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);requestWindowFeature(Window.FEATURE_NO_TITLE);setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);setContentView(R.layout.intro); Log.v("notice", "notice");if (!KBONetworkInfo.IsWifiAvailable(this) && !KBONetworkInfo.Is3GAvailable(this)){ //Toast.makeText(this, "네크워크에 연결.. 더보기
[안드로이드] 키보드 무조건 보이기 실제 업무에 사용중인 소스키보드를 인텐트 시작과 동시에 무조건 보이기 위한 코드입니다. editText1 = (EditText)findViewById(R.id.editText1);editText1.setSelection(0); getWindow().setSoftInputMode(LayoutParams.SOFT_INPUT_STATE_VISIBLE);LayoutParams 는 import android.view.WindowManager.LayoutParams; -import 시켜줘야 한다. 더보기
[비밀-안드로이드] 사이클 생명주기 보호되어 있는 글입니다. 더보기
[안드로이드] dragDrop for GridView http://www.wglxy.com/android-tutorials/drag-drop-for-android-gridview-v4Drag-Drop for Android GridView (V4) This demo application is a simple example that shows how to support dragging and dropping on a GridView. For more information about this, read the blog article at blahti.wordpress.comSource code for this demo app is attached below. Be sure to do a clean build in Eclipse after you import th.. 더보기
[안드로이드] ImageView API 진저브리드 변경 - StrictMode 진저브리드 부터 스레드를 이용한 이미지 출력이 아니면, 화면에 출력되지 않는다. 기계가 2.3 에서 잘되는데 4.0이상부터는 안되는 이유는 API변경!!! [안드로이드] ImageView API 진저브리드 변경 - StrictModeimport java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.URL; import java.net.URLConnection; import android.os.Bundle; import android.os.StrictMode; import android.app.Activity; import android.graphics.Bitmap; import a.. 더보기
[Android]표준 디자인 과 개발소스 참고 디자인 소스 UX/UIhttp://androiduiux.com/2012/06/27/new-to-android-designdevelopment-heres-a-list-of-great-resources-and-references-available/http://www.android-app-patterns.com/http://androidweekly.net/toolboxhttp://www.fluidui.com/ 더보기
[Android] cocoa controller for Android 및 디자인 패턴 http://www.androidviews.net/ http://java2s.com/Open-Source/Android/CatalogAndroid.htm UI/UX design http://appdevwiki.com/wiki/show/HomePage http://droidstyle.aaplab.com/ 더보기
[안드로이드] 안드로이드 아이콘 만들기 http://android-ui-utils.googlecode.com/hg/asset-studio/dist/index.html 더보기