Android/Android 챕터 2-6(5)
-
[챕터 2-6-5] 스피너 뷰
결과화면 클릭 시 콤보박스형태로 표시 선택하면 스피너 : 콤보박스 프로젝트명 : MySpinner MainActivity.java 더보기 package org.minokuma.myspinner; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.Spinner; import android.widget.TextView; public class MainActivity extends AppCompatActivity { ..
2020.02.18 -
[챕터 2-6-4] 리싸이클러 뷰 ★
결과화면 리스트 항목 중 한개의 항목을 클릭 시 하단에 해당하는 토스트 메세지 출력 프로젝트명 : MyList 컨테이너 > 리사이클러뷰 다운로드 다운로드 후 안드 재실행 Person.java 더보기 package org.minokuma.mylist; public class Person { String name; String mobile; public Person(String name, String mobile) { this.name = name; this.mobile = mobile; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getMobile() ..
2020.02.18 -
[챕터 2-6-3] 레이아웃 커스터마이징
결과화면 이미지 변경 버튼 클릭 시 프로젝트명 : MyLayout layout1 방향 : 가로 레이아웃 가로 : 80dp 레이아웃 세로 : 80dp 레이아웃 무게 : 없음 리니어 레이아웃 세로 : wrap_content 레이아웃 높이 : wrap_content 레이아웃 마진 왼쪽 : 8dp 전화번호 레이아웃 마진탑 : 4dp 파일명 : Layout1 슈퍼클래스 : android.widget.LinearLayout Layout1.java 더보기 package org.minokuma.mylayout; import android.content.Context; import android.util.AttributeSet; import android.view.LayoutInflater; import android...
2020.02.18 -
[챕터 2-6-2] 버튼 커스터마이징
결과화면 버튼 클릭 시 프로젝트명 : MyView 이름 : MyButton 슈퍼클래스 : androidx.appcompat.widget.AppCompatButton 더보기 package org.minokuma.myview; import android.content.Context; import android.util.AttributeSet; import androidx.appcompat.widget.AppCompatButton; public class MyButton extends AppCompatButton { public MyButton(Context context) { super(context); } public MyButton(Context context, AttributeSet attrs) { s..
2020.02.18 -
[챕터 2-6-1] 나인패치 이미지
결과화면 (*) 이미지 버튼의 효과 확인 프로젝트명 : MyNinePatch res/drawable/ 에 격납 상위 버튼 3개에 이미지 01 버튼 적용 하위 버튼 3개에 이밎 버튼02 적용 텍스트 폰트색상 흰색으로 변경
2020.02.18