http://aroundck.tistory.com/30


http://arabiannight.tistory.com/entry/%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9CAndroid-AsyncTask-%EC%82%AC%EC%9A%A9%EB%B2%95

http://blog.saltfactory.net/190

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

android PUSH 알림(GCM)  (0) 2013.06.20
[AsyncTask] AsyncTask 예제  (0) 2013.05.24
[TabHost] tab with framgment  (0) 2013.05.21
Android Horizontal ListView  (0) 2013.05.16
텍스트에 스타일(style) 적용하기  (0) 2013.05.14

참고 


http://kyleslab.tistory.com/54


http://thepseudocoder.wordpress.com/2011/10/04/android-tabs-the-fragment-way/


Android Horizontal ListView

http://www.dev-smart.com/archives/34



http://mukeshyadav4u.blogspot.kr/2012/11/horizontal-listview-in-android-example.html

http://stackoverflow.com/questions/4630440/how-to-change-a-textviews-style-at-runtime


<?xml version="1.0" encoding="utf-8"?>

<resources>

    <style name="boldText">
        <item name="android:textStyle">bold|italic</item>
        <item name="android:textColor">#FFFFFF</item>
    </style>

    <style name="normalText">
        <item name="android:textStyle">normal</item>
        <item name="android:textColor">#C0C0C0</item>
    </style>

</resources>
View.setOnClickListener(new View.OnClickListener() {
            public void onClick(View view){
                //highlight the TextView
                myTextView.setTextAppearance(getApplicationContext(), R.style.boldText);
                myTextView.setBackgroundResource(R.color.highlightedTextViewColor);
            }
        });




[참고] http://blog.daum.net/haha25/5388257

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

Android Horizontal ListView  (0) 2013.05.16
텍스트에 스타일(style) 적용하기  (0) 2013.05.14
Image Loader  (0) 2013.05.02
point가 다각형 안에 위치하는지 확인하는 코드  (0) 2013.04.23
sliding menu  (0) 2013.04.23

다양한 이미지 로더

http://helloworld.naver.com/helloworld/429368


glide

https://github.com/bumptech/glide



Universal Image Loader

https://github.com/nostra13/Android-Universal-Image-Loader



Picasso

http://square.github.io/picasso/


Volley

https://gist.github.com/benelog/5981448



Download multiple files showing Progress Bar

http://theopentutorials.com/tutorials/android/dialog/android-download-multiple-files-showing-progress-bar/

http://stackoverflow.com/questions/7044838/finding-points-contained-in-a-path-in-android





/**
 * Minimum Polygon class for Android.
 */
public class Polygon
{
    // Polygon coodinates.
    private int[] polyY, polyX;

    // Number of sides in the polygon.
    private int polySides;

    /**
     * Default constructor.
     * @param px Polygon y coods.
     * @param py Polygon x coods.
     * @param ps Polygon sides count.
     */
    public Polygon( int[] px, int[] py, int ps )
    {
        polyX = px;
        polyY = py;
        polySides = ps;
    }

    /**
     * Checks if the Polygon contains a point.
     * @see "http://alienryderflex.com/polygon/"
     * @param x Point horizontal pos.
     * @param y Point vertical pos.
     * @return Point is in Poly flag.
     */
    public boolean contains( int x, int y )
    {
        boolean oddTransitions = false;
        for( int i = 0, j = polySides -1; i < polySides; j = i++ )
        {
            if( ( polyY[ i ] < y && polyY[ j ] >= y ) || ( polyY[ j ] < y && polyY[ i ] >= y ) )
            {
                if( polyX[ i ] + ( y - polyY[ i ] ) / ( polyY[ j ] - polyY[ i ] ) * ( polyX[ j ] - polyX[ i ] ) < x )
                {
                    oddTransitions = !oddTransitions;          
                }
            }
        }
        return oddTransitions;
    }  
}


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

드래그를 통한 화면 전환 효과 구현  (0) 2013.05.10
Image Loader  (0) 2013.05.02
sliding menu  (0) 2013.04.23
하이브리드 앱 개발 팁  (0) 2013.04.10
apk decompile  (0) 2013.04.08



https://github.com/jfeinstein10/SlidingMenu


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

Image Loader  (0) 2013.05.02
point가 다각형 안에 위치하는지 확인하는 코드  (0) 2013.04.23
하이브리드 앱 개발 팁  (0) 2013.04.10
apk decompile  (0) 2013.04.08
zoom view  (0) 2013.04.08

HTML5기반 하이브리드 앱개발 팁 http://html5dev.kr/501


하이브리드 앱의 스크롤 성능 개선하기 http://dev.kthcorp.com/2012/06/18/hybrid-app-scroll-performance-enhancement/



문제점1. http://www.outofplan.co.kr/?p=16

문제점2. http://techit.kr/3483

문제점3. http://rintiantta.blog.me/40184656765

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

point가 다각형 안에 위치하는지 확인하는 코드  (0) 2013.04.23
sliding menu  (0) 2013.04.23
apk decompile  (0) 2013.04.08
zoom view  (0) 2013.04.08
치수 변환  (0) 2013.02.28

+ Recent posts