시험
출석 20, 중간 40, 기말 40
교재
(ANDROID STUDIO를 활용한)안드로이드 프로그래밍 - 9판
//activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:textSize="30sp"
android:textColor="#ff0000"/>
</androidx.constraintlayout.widget.ConstraintLayout>
하드웨어 가속화를 위해 설치해야 하는 것
- HAXM(원래 안드로이드 스튜디오 설치시 자동 설치)
34버전 정도로 설치할 것
안드로이드 폴더 경로에 한글명 있으면 실행이 안됨, 저장도 마찬가지험
Android 스튜디오 Hedgehog | 2023.1.1 (2023년 11월)
https://developer.android.com/studio/archive
Android 스튜디오 다운로드 자료실 | Android Studio | Android Developers
이 페이지에는 Android 스튜디오 출시 관련 다운로드 자료실이 포함되어 있습니다.
developer.android.com
환경설정
'computing' 카테고리의 다른 글
20250911_android_2 (0) | 2025.09.11 |
---|---|
20250908_iOS_2 (0) | 2025.09.08 |
20250901 - iOS_1 (0) | 2025.09.01 |
java 코드정리 - default (0) | 2025.06.12 |
20250522java11 (1) | 2025.05.22 |