일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- Rails
- Rails Tutorial
- 안드로이드 기본
- 비트버켓
- Sublime
- 기트허브
- MySQL
- 안드로이드
- 서브라임
- 패키지 컨트롤
- php7
- android
- 워드랩
- Sublime Text 2
- RoR
- Ruby on Rails
- 레일즈
- 레일즈 설치
- 기트
- 서버 구성
- Rails Guide
- 윈도우7 관리자
- Rails 설치
- 레일즈 가이드
- php nginx mysql
- Package Control
- 이크립스 줄바꿈
- 안드로이드 기초
- subl
- 몽고디비 설치
- Today
- Total
목록Android/안드로이드 응용 (5)
김관덕 (새 블로그로 이전)
화면전환 관련http://developer.android.com/intl/ko/training/basics/firstapp/starting-activity.html#CreateActivityhttp://developer.android.com/intl/ko/design/patterns/navigation.html 안드로이드 UX 가이드https://www.google.com/design/spec/patterns/settings.html setting 가이드, Shared Preferencehttp://developer.android.com/intl/ko/guide/topics/ui/settings.htmlhttp://developer.android.com/intl/ko/reference/android/co..
[출처] http://www.vogella.com/tutorials/AndroidActionBar/article.html안드로이드 툴바 (액션바) 사용하기 - 튜토리얼Lars VogelVersion 12Copyright © 2009-2015 vogella GmbH30.09.2015Using the toolbar in Android applicationsThis tutorial describes how to use the toolbar widget in your Android application. It is based on Android 6.0. 목차1. Introduction to the toolbar1.1. What is the toolbar (action bar)?1.2. Example1.3. Ac..
[출처] http://devbible.tistory.com/30 public class Test extends Activity { protected void onCreate(Bundle savedInstanceState) { ... final TextView outText = (TextView) findViewById(R.id.textView01); LinearLayout linear = (LinearLayout) findViewById(R.id.linear01); linear.setOnTouchListener(new View.OnTouchListener() { public boolean onTouch(View v, MotionEvent event) { if (event.getAction() == Mot..
http://developer.android.com/reference/android/view/LayoutInflater.html Inflation : XML 내용을 메모리에 객체화 (생성)[출처] http://blog.naver.com/shadowbug/220488812218 레이아웃 전개XML으로 선언한 뷰 레이아웃을 자바에서 사용하기 위해선 LayoutInflater 시스템서비스를 이용, 전개 필요 // 표준 방식 LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); // 레이아웃 전개를 하여 얻고자 하는 뷰를 가져온다. LinearLayout view = (LinearLa..
http://developer.android.com/reference/android/view/View.htmlhttp://www.androidpub.com/2386332 setContentView(XML)setContentView() 후에 findViewById() 하여야 한다.XML파일 안에있는 id값들이 R.java 에 기록되면 findViewById()로 R.id 접근 가능하다. setContentView()는 Layout이나 View도 받을 수 있다. 이때는 id값으로 받는게아니라 Layout이나 View를 직접 생성하므로 위치가 어디에 오든 상관 없다. 레이아웃을 setContentView()가 아닌 객체로서 받아서 사용하고 싶다면 LayoutInflator를 이용해서 레이아웃 객체를 받아오고 ..