1월, 2014의 게시물 표시

버전 컨트롤에 대한 링크 공유

버전 컨트롤에 대한 링크 공유 https://code.google.com/p/tortoisegit/ http://tortoisesvn.net/ http://www.sourcetreeapp.com/

애니메이션 텍스트 뷰

    private void countDown(final TextView tv, final int count) {         if (count == 0) {             tv.setText(""); // Note: the TextView will be visible again here.             return;         }         tv.setText(String.valueOf(count));         AlphaAnimation animation = new AlphaAnimation(1.0f, 0.0f);         animation.setDuration(1000);         animation.setAnimationListener(new AnimationListener() {             public void onAnimationEnd(Animation anim) {                 countDown(tv, count - 1);             }             @Override             public void onAnimationRepeat(Animation animation) {                 // TODO Auto-generated method stub             }             @Override             public void onAnimationStart(Animation animation) {                 // TODO Auto-generated method stub             }         });         tv.startAnimation(animation);     }

Doxygen, Graphviz 다운로드 사이트 링크

Doxygen Graphviz