참고

http://sunphiz.me/wp/archives/114


http://warmz.tistory.com/945


http://ecogeo.tistory.com/264


'개발 > 안드로이드' 카테고리의 다른 글

Toolbar  (0) 2015.07.07
머티리얼 디자인 개발 자료들  (0) 2015.06.30
webvew 에서 브라우저로 링크(_blank)  (0) 2015.06.24
Animation  (0) 2015.06.19
이미지에 blur 효과  (0) 2015.06.17

롤리팝에서 브라우저 새창 안열리는 문제 해결

참고 : http://stackoverflow.com/questions/27009995/android-webview-links-to-same-window-with-target-blank-to-open-new-window



    private class MyWebChromeclient extends WebChromeClient {


    @Override
    public boolean onCreateWindow(WebView view, boolean isDialog,
            boolean isUserGesture, Message resultMsg) {

            WebView newWebView = new WebView(WebViewActivity2.this);
            view.addView(newWebView);
            WebView.WebViewTransport transport = (WebView.WebViewTransport) resultMsg.obj;
            transport.setWebView(newWebView);
            resultMsg.sendToTarget();

            newWebView.setWebViewClient(new WebViewClient() {
                @Override
                public boolean shouldOverrideUrlLoading(WebView view, String url) {
                    Intent browserIntent = new Intent(Intent.ACTION_VIEW);
                    browserIntent.setData(Uri.parse(url));
                    startActivity(browserIntent);
                    return true;
                }
            });
        return true;
    }


'개발 > 안드로이드' 카테고리의 다른 글

머티리얼 디자인 개발 자료들  (0) 2015.06.30
디버그용 키 만들기  (0) 2015.06.26
Animation  (0) 2015.06.19
이미지에 blur 효과  (0) 2015.06.17
Retrofit  (0) 2015.05.06

https://developer.android.com/training/material/animations.html


https://github.com/saulmm/Android-Material-Examples


http://android-developers.blogspot.kr/2014/10/implementing-material-design-in-your.html


http://www.applicoinc.com/blog/android-l-preview-app-development-in-the-material-world/


http://www.androiddesignpatterns.com/2014/12/activity-fragment-transitions-in-android-lollipop-part1.html



[sample code]

http://antonioleiva.com/material-design-everywhere/

http://blog.stylingandroid.com/material-part-8/

'개발 > 안드로이드' 카테고리의 다른 글

디버그용 키 만들기  (0) 2015.06.26
webvew 에서 브라우저로 링크(_blank)  (0) 2015.06.24
이미지에 blur 효과  (0) 2015.06.17
Retrofit  (0) 2015.05.06
Lock Screen  (0) 2015.05.06

참고

http://sitecube.tistory.com/entry/ASPNET-MSSQL-연동-Windows-인증과-SQL-Server-인증

젤리빈(17) 이후

http://www.kmshack.kr/flat디자인의-핵심-안드로이드-이미지-blur-효과-내기


http://developer.xamarin.com/recipes/android/other_ux/drawing/blur_an_image_with_renderscript/


https://plus.google.com/+MarioViviani/posts/fhuzYkji9zz


젤리빈(17) 이전

https://github.com/paveldudka/blurring

http://stackoverflow.com/questions/2067955/fast-bitmap-blur-for-android-sdk


'개발 > 안드로이드' 카테고리의 다른 글

webvew 에서 브라우저로 링크(_blank)  (0) 2015.06.24
Animation  (0) 2015.06.19
Retrofit  (0) 2015.05.06
Lock Screen  (0) 2015.05.06
[TDD] robolectric  (0) 2015.04.21

ms sql server 2012 설치방법

http://ttakiya.blog.me/220161868014

'ETC > Tools' 카테고리의 다른 글

레드마인(redmine)  (0) 2015.01.19
Sublime Text  (0) 2014.11.29
sqlite viewer  (0) 2014.07.11
[이클립스] slqite 보는 plugin  (0) 2014.06.25
[이클립스] Mac에서 코드 자동완성  (0) 2014.01.29

HOW TO DISPLAY A SINGLE FULLSCREEN WINDOW ACROSS MULTIPLE SCREENS IN ADOBE AIR

http://cote.cc/blog/how-to-display-a-single-fullscreen-window-across-multiple-screens-in-adobe-air

'개발 > AIR for ...' 카테고리의 다른 글

as3 아두이노 연동  (0) 2015.11.25
air, ios, android  (0) 2013.08.19
Adobe-AIR로-안드로이드-게임-만들기  (0) 2013.08.19
ANE 모음  (0) 2012.09.21
ANE 괜찮은거  (0) 2012.06.29

http://square.github.io/retrofit/



http://softwaregeeks.org/2012/12/19/retrofit/


A smart way to use Retrofit

http://blog.robinchutaux.com/blog/a-smart-way-to-use-retrofit/


Using Retrofit in Android

http://stackoverflow.com/questions/26500036/using-retrofit-in-android

'개발 > 안드로이드' 카테고리의 다른 글

Animation  (0) 2015.06.19
이미지에 blur 효과  (0) 2015.06.17
Lock Screen  (0) 2015.05.06
[TDD] robolectric  (0) 2015.04.21
Notification  (0) 2015.04.20


Lock Screen 확인

http://tjandroid.blogspot.kr/2011/10/lock-screen.html



참고

http://hns17.tistory.com/entry/App-개발-잠금화면-LockScreen-위에-Activity-띄우기


http://www.b4x.com/android/forum/threads/lockscreen-create-your-own-lockscreen-with-just-5-lines-of-code.43327/


'개발 > 안드로이드' 카테고리의 다른 글

이미지에 blur 효과  (0) 2015.06.17
Retrofit  (0) 2015.05.06
[TDD] robolectric  (0) 2015.04.21
Notification  (0) 2015.04.20
RecyclerView 사용법  (0) 2015.04.14

http://robolectric.org/


[참고]

http://zerobrain.tistory.com/44


 http://blog.naver.com/dlsdnd345/220316539175


https://guard74.wordpress.com/2014/05/12/tdd-robolectric-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0/


'개발 > 안드로이드' 카테고리의 다른 글

Retrofit  (0) 2015.05.06
Lock Screen  (0) 2015.05.06
Notification  (0) 2015.04.20
RecyclerView 사용법  (0) 2015.04.14
Pull To Refresh  (0) 2015.03.13

+ Recent posts