참고


http://www.101apps.co.za/index.php/articles/using-toolbars-in-your-apps.html


http://pluu.github.io/blog/android-study/2015/05/31/android-design-support-library/


  • Creating Lists and Cards (영문) : 리스트와 카드 위젯을 이용해서 화면 구성을 하는 방법을 설명하였습니다.
  • Android Design Support Library (영문) : 네비게이션 드로어, 플로팅 액션 버튼, 탭과 앱 바의 각종 기능들을 구현하는 도구인 Android Design Support Library를 설명하고 있습니다.
  • Defining Custom Animations (영문) : Shared element transition을 이용해 히어로 전환을 구현 하는 방법을 설명하고 있습니다.


[출처]http://googledevkr.blogspot.kr/2015/06/material.html



http://hmkcode.com/material-design-app-android-design-support-library-appcompat/



TabLayout

http://www.google.com/design/spec/components/tabs.html#tabs-usage

https://guides.codepath.com/android/Google-Play-Style-Tabs-using-TabLayout#sliding-tabs-layout

http://www.android4devs.com/2015/01/how-to-make-material-design-sliding-tabs.html



CoordinatorLayout

http://www.jayrambhia.com/blog/contacts-demo/



RecyclerView

http://www.kmshack.kr/안드로이드-listview에서-recyclerview로-마이그레이션-하기/


http://www.kmshack.kr/안드로이드-머티리얼-디자인-위젯-오픈소스-21가지-2/

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

그룹의 전화번호 가져오기  (0) 2016.03.17
Toolbar  (0) 2015.07.07
디버그용 키 만들기  (0) 2015.06.26
webvew 에서 브라우저로 링크(_blank)  (0) 2015.06.24
Animation  (0) 2015.06.19

참고

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

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

+ Recent posts