Android Development(16)
-
Android Studio 5일차
// 액션바와 프레그먼트 메뉴 > Code > Override method … > onCreate 라고 타이핑하고 보여지는 메소드 중에서 Ctrl 키를 눌러서 2개 메소드 선택 package com.example.test10; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.appcompat.app.ActionBar; import androidx.appcompat.app.AppCompatActivity; import androidx.fragment.app.FragmentTransaction; import android.graphics.Color; import android.os.Bundle; i..
2021.11.05 -
Android Studio 4일차
아래 어플 생성 처음에는 빨간 상자내의 부분만 보여 집니다. 나머지는 모두 숨기고요. 그리고, 이벤트에 따라서 파란 상자를 보이고, 선택완료 버튼을 누른다면 라디오 버튼에서 선택한 동물의 사진이 주황색 박스처럼 표시. package com.example.test8; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.CheckBox; import android.widget.CompoundButton; import android.widget.ImageView; import android...
2021.11.05 -
Android Studio 3일차
안드로이드 버튼 색상 변경. 매니페스트 에서 테마를 변경 Theme.AppCompat.Light // 안드로이드 visibility 속성. // 안드로이드 padding,margin // 속성 enable, clickable // rotation.checkBox, scaleType package com.example.test6; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.TextView; import android.wid..
2021.11.03 -
Android Studio 1,2일차
https://developer.android.com/studio/ 위가 공식 다운로드 사이트. 사이트 접속 안될시 https://redirector.gvt1.com/edgedl/android/studio/install/2020.3.1.22/android-studio-2020.3.1.22-windows.exe 위 아카이브에서 다운로드. failed to jvm dll 에러뜰때 https://rina214.tistory.com/10 위 블로그 참조. sp (scale-independent pixels) 텍스트 크기 지정. dp (density-independent pixels) 레이아웃 수치 지정. 안드로이드는 다양한 액정 크기가 있으므로, 기준으로 설계한 레이아웃이 작은 액정에서는 너무 커보일 수 있고,..
2021.11.01