LinearLayout의 weight
-
[Android] counter(계수기, 숫자 세기) 앱 (feat. 화면 회전 시 초기화, 화면 회전 시 UI 가려지기, weight)IT Study/Android 2024. 1. 21. 15:09
안드로이드에서 counter를 만드는 것은 아주 간단합니다. 계수기를 생각하면 더 쉽게 느껴지죠. 계수기 1. + 버튼을 클릭할 경우, 숫자 1이 증가한다. 2. 초기화 버튼 클릭할 경우, 숫자 0으로 초기화된다. 🧮 Counter 코드, UI는 아래의 내용을 통해 확인하시죠. 저의 계수기는 아래와 같이 생겼습니다. (1) MainActivity.kt import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import android.util.Log import android.widget.Button import android.widget.TextView class MainActivity : AppCompatActivity() { ..