-dontwarn com.google.android.gms.*-ignorewarnings proguard.cfg ...
-
This is Slide 1 Title
This is slide 1 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 2 Title
This is slide 2 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
-
This is Slide 3 Title
This is slide 3 description. Go to Edit HTML and replace these sentences with your own words. This is a Blogger template by Lasantha - PremiumBloggerTemplates.com...
2014년 3월 29일 토요일
2014년 3월 26일 수요일
UI 배경을 빼서 속도를 빠르게..그리고 썸네일 가판대..
http://www.curious-creature.org/2009/03/04/speed-up-your-android-...
2014년 3월 5일 수요일
2014년 3월 4일 화요일
웹에서 안드로이드 앱/특정 액티비티 실행하는 방법
기기에서 크롬브라우져에서$open = 'intent://myapphost/#Intent;scheme=myapp;package=com.test;end;';변수도 넘길수 있다.(S.key1=value1;S.key2=value2;end)라는 링크를 만들고앱에서는manifest 에서<data android:scheme="myapp" android:host="myapphost" android:path="/" /> 를 intent-filter 안에 넣으면 된다.각 activity 별로 지정가능하다.* 변수 있을때는Intent intent = getIntent();String value1 = intent.getStringExtra("key1");String value2 = intent.getStringExtra("key2");참고.http://atmarkplant-dj.blogspot.kr/2013/12/android-chrome.html구글에...