본문 바로가기
반응형

Programming/Android22

Android Studio에서 Package 자동 Import (이클립스 Ctrl+Shit+O) & 자동 키맵핑 바꾸기 File -> Settings -> Editor -> General -> Auto Import -> Java change Insert imports on paste value to All markAdd unambigious imports on the fly option as checked 키맵핑 바꾸기 File -> Settings -> KeyMap Android Studio -> Preferences -> KeyMap (Mac) change keymaps settings to eclipse so that you can use the short cut keys like in eclipse. http://stackoverflow.com/questions/16615038/what-is-the-shortcut.. 2015. 5. 26.
Android Studio 1.0.1 첫 에러 발생 처리 Error:Execution failed for task ':app:processDebugResources'. 안드로이드 스튜디오 정싱 버전이 발표된걸 보고 함 써 봐야겠다는 생각에이번 플젝중 비교적 간단한 APP을 진행하기로 함. 일단 안드로이드 플젝 생성후 바로 실행 하면 나타나는 에러 Error:Execution failed for task ':app:processDebugResources'. > com.android.ide.common.internal.LoggedErrorException: Failed to run command: D:\JAVA\adt-bundle-windows-x86_64-20131030\sdk\build-tools\21.0.0\aapt.exe package -f --no-crunch -I D:\JAVA\adt-bundle-windows-x86_64-20131030\sdk\platform.. 2014. 12. 20.
안드로이드 달력 처리 자료 https://github.com/yesyo/android-datepicker https://github.com/tyczj/ExtendedCalendarView https://github.com/square/android-times-square Hi visit all given links, hope will help you 1.https://github.com/inteist/android-better-time-picker 2.https://github.com/derekbrameyer/android-betterpickers 3.http://www.androiddevelopersolutions.com/2013/05/android-calendar-sync.html 4.http://www.androidviews.. 2014. 12. 17.
EventBus for Android http://greenrobot.github.io/EventBus/ https://github.com/greenrobot/EventBus 이벤트를 주로 핸들러로 처리 하다보면 activity, fragment등 이벤트 발생 영역과 처리 코드 사이를 연결 시켜주기 위해 고민했었는데.. 심플하고 안정적으로 처리 할수 있을거 같은 라이브러리다. 사용전... 2014. 7. 15.
네이버 맵 안드로이드에서 사용하기 네이버 맵 안드로이드에서 사용하기 튜토리얼 http://developer.naver.com/wiki/pages/Tutorial_Andriod Key 발급 https://developer.naver.com/openapi/register.nhn API 설명 http://developer.naver.com/wiki/pages/Android 안드로이드용 네이버 지도 라이브러리 (nmaps.jar : 샘플 프로젝트에 포함) 2014. 6. 28.
안드로이드 서비스 실행 (다른 App 구동할 때) 사용자가 다른 앱들을 사용할 때 application의 일부 기능을 백그라운드에서 유지 해야 하는경우 백그라운드 작업을 할 수 있는 Service class 생성 main application에서 서비스를 시작한다. @Override public void onCreate(Bundle savedInstanceState) { Intent theIntent = new Intent(this, GpsService.class); Button startButton = (Button) findViewById(R.id.startButton); startButton.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { start.. 2014. 4. 25.
Custom Font 사용 안드로이드에선 TTF 또는 OTF (True Type or Open TypeFace, a TTF extension) 설치해서 사용할 수 있다. Android:typeface 속성 : "normal","sans","serif","monospace" Project의 assets 하위로 fonts 폴더를 만들고 폰트를 설치 폰트를 사용할 View 선택 Typeface object 생성(Typeface class static method create()) setTypeface method. Typeface 생성함수 create(String familyName, int style); create(TypeFace family, inst style); createFromAsset(AssetManager mgr, St.. 2014. 4. 21.
[android] Custom MediaPlayerControl 처리 예 http://www.brightec.co.uk/blog/custom-android-media-controller https://github.com/brightec/ExampleMediaController package uk.co.brightec.example.mediacontroller; import java.io.IOException; import android.media.AudioManager; import android.media.MediaPlayer; import android.net.Uri; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.content.pm.Act.. 2014. 2. 18.
파일명 소문자로 일괄 변경 배치 처음 안드로이드 작업을한 디자이너가 이미지 파일명을 대문자로 ㅎㅎ 일일이 바꾸기도 그렇고 단순하게 배치를 만들어서 하는게 젤 편할듯 해서 인터넷을 뒤져 보니 역시 이미 만드신분이..ㅎㅎ http://milennium9.blog.me/20168619695 pushd %1 setlocal set DIRCMD=/s/b/l for /f "tokens=*" %%a in ('dir/a-d') do ( echo %%a>find /v ".svn" && move "%%a" "%%a" ) endlocal popd 2013. 12. 17.
Android SharedPreferences 암호화 랩퍼 Encryption Wrapper for Android SharedPreferences 프리퍼런스 관련 래핑 클래스를 찾다보니 암호화 기능까지 잘 정리된 클래스인듯... http://www.codeproject.com/Articles/549119/Encryption-Wrapper-for-Android-SharedPreferences Using the code As you may already know, there are 3 methods to initialize a SharedPreferences object: Context.getSharedPreferences(String name, int mode) Activity.getPreferences(int mode) PreferenceManager.getDe.. 2013. 12. 17.
안드로이드(Android) 프레임 애니메이션 http://mainia.tistory.com/704 펌 안드로이드는 이런 한장한장의 그림을 연속적으로 이어서 재생 될수 있도록 클래스를 제공한다. 그 클래스는 android.graphics.drawable.AnimationDrawable 이다. 위젯 ImageView 에서 getBackground 함수를 이용해 얻을 수 있다. 이렇게 얻은 AnimationDrawable 를 이용해 Start, Stop 호출해서 애니메이션의 시작과 종료를 할수 있다. (1) 애니메이션 구현을 위한 여러장의 스틸사진 준비 사진은 PNG 이미지로 준비한다. 그리고 drawable 폴더에 넣어둔다. (2) animation list xml 파일 작성 ImageView 에 셋팅할 animation list xml 파일이 필요하.. 2013. 12. 11.
Bitmap Drawable 변환 Bitmap Drawable 변환 Bitmap bitmap = BitmapFactory.decodeFile(“/sdcard/test.jpg”); Drawable drawable = new BitmapDrawable(bitmap); 비트맵을 Drawble로 변환시 Public Constructors BitmapDrawable() This constructor was deprecated in API level 4. Use BitmapDrawable(Resources) to ensure that the drawable has correctly set its target density. BitmapDrawable(Resources res) Create an empty drawable, setting initia.. 2013. 12. 11.
반응형