안드로이드(317)
-
LinearLayoutDemo4-margin/padding
margin / padding 지정 margin 과 padding margin 뷰와 부모 사이에 적용되며 패딩은 뷰와 내용물 사이에 적용됩니다. padding 뷰와 내용물간의 간격을 지정합니다. 버튼의 경우 버튼 내부의 문장과 버튼 테두리와의 간격이 패딩이며 레아웃의 경우 차일드 뷰와의 간격이 패딩이 됩니다. 강의 내용 activity_main.xml LinearLayout 변경 -android:orientation="vertical" -Graphical Layout > Form Widgets-Button추가 1 -Graphical Layout > Form Widgets-Button추가 2 1에 margin 지정 > 확인 2에 padding 지정> 확인 출력 결과 마진 테스트 패팅 테스트
-
한글 키보드 프로그램(apk) 설치- hangulkeyboard.apk
uptodate : http://codedragon.tistory.com/4848설치단계· hangulkeyboard.apk 다운받기· 키보드 프로그램 애뮬레이터에 설치하기· 한글 키보드 활성화 키보드 프로그램 애뮬레이터에 설치 hangulkeyboard.apk 다운받기 한글 키보드 설정 불가하여 한글 입력을 할 수 없습니다. 설치를 원하는 애뮬레이터 실행 C:\javanAndroid\android-sdk_r22.6.2-windows\android-sdk-windows\platform-tools 폴더에 hangulkeyboard.apk 복사 cmd창을 실행 > hangulkeyboard.apk 복사한 폴더 경로로 이동 > dir/w 로 hangulkeyboard.apk 파일 확인 > adb install..
-
Eclipse-클래스(Class) 파일, .java 파일 생성 방법
eclipse 메뉴 > File > New > Class 또는 Package Explorer > \src\패키지네임\ 경로 선택 후 > 마우스 우클릭 > New > Class 선택 사용할 클래스명 입력 > Finish
-
LinearLayoutDemo3-Layout_gravity로 버튼 위치 지정하기
Layout_gravity로 버튼 위치 지정하기 강의 내용 activity_main.xml LinearLayout 변경 -android:orientation="vertical" Graphical Layout > Form Widgets-Button추가 -android:layout_width="match_parent" -android:layout_height="match_parent" Graphical Layout > Form Widgets-Button추가 -android:layout_width="wrap_content" -android:layout_height="wrap_content" -android:layout_gravity="center_horizontal" 확인 출력 결과
-
LinearLayoutDemo2-Gravity, android:gravity로 버튼의 위치 지정하기
android:gravity로 버튼의 위치 지정하기 android:gravity 자신 내부의 구성요소의 위치 정의 레이아웃에 명시해서 View의 위치 지정 (일반적, 레이아웃에 명시해서 view(Button, TextView)를 제어) 버튼에 명시해 버튼 내의 text의 위치 지정 android:layout_gravity 부모를 기준으로 자신의 위치 지정 view(Button, TextView)에 명시해서 레이아웃 기준으로 View가 배치되는 위치 지정 중앙정렬 속성값: center 정중앙 center_vertical 좌측 중앙 center_horizental 상단 중앙 강의 내용 activity_main.xml LinearLayout 변경 Graphical Layout > Form Widgets-But..
-
LinearLayoutDemo-LinearLayout - 수직/수직 정렬(orientation)
LinearLayout - 수직/수직 정렬(orientation) 강의 내용 LinearLayout으로 부모 컨테이너 변경 > orientation 버튼1, 버튼2 추가하여 수직 정렬 확인 LinearLayout추가 버튼3, 버튼4 추가하여 수평 정령 (하나만 match_parent) 버튼3, 버튼4 모두 같은 크기 비율로 맞춰보기(모두 wrap_content/layout_weight="1") 버튼1을 layout_height="wrap_content" 직접 xml 코딩하면서 테스트 activity_main.xml LinearLayout변경 -android:orientation="vertical" -Graphical Layout > Form Widgets-Button추가 1 -Graphical Layou..