참고

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

젤리빈(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

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

API Guide

http://developer.android.com/guide/topics/ui/notifiers/notifications.html#Design


Stacking Notifications

- 같은 카테고리끼리 그룹 만들기.

https://developer.android.com/training/wearables/notifications/stacks.html#AddSummary



http://developer.android.com/design/patterns/notifications.html#Anatomy



http://itmir.tistory.com/457


http://androidhuman.tistory.com/507

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

Lock Screen  (0) 2015.05.06
[TDD] robolectric  (0) 2015.04.21
RecyclerView 사용법  (0) 2015.04.14
Pull To Refresh  (0) 2015.03.13
media service  (0) 2015.03.09

[참고]

http://www.kmshack.kr/android-recyclerview



[라이브러리]

https://github.com/lucasr/twoway-view


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

[TDD] robolectric  (0) 2015.04.21
Notification  (0) 2015.04.20
Pull To Refresh  (0) 2015.03.13
media service  (0) 2015.03.09
notification media control  (0) 2015.02.26


[참고]

http://helloworld.naver.com/helloworld/textyle/675437


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

Notification  (0) 2015.04.20
RecyclerView 사용법  (0) 2015.04.14
media service  (0) 2015.03.09
notification media control  (0) 2015.02.26
[eclipse] 이클립스에서 안드로이드 wear 개발  (0) 2015.02.26

+ Recent posts