-> allow google to collect anonymous usage data for android studio
구글에 앱 통계 자료를 보내줄 것인가에 대한 동의서입니다 :) (선택은 자유입니다!!!)
여기서는 UI를 선택할 수 있는데요 :)
저는 기본 설정인 화이트 색상으로 진행하였습니다 !
Finish를 눌러주세요!!
저는 기본 템플릿인 Empty Activity를 사용하기로 합니다! Next~~
1. 앱 이름
2. 패키지 이름 (도메인 역순과 앱이름이 Default로 설정됩니다 :)
3. 프로젝트 저장 위치에용! (※반드시 영어로만 경로를 설정해주셔야 빌드오류가 나지 않습니다 !!!!)
Finish 클릭 후
조금의 로딩을 기다려주세요 !!!
이렇게 프로젝트가 성공적으로 로드되었습니다 !!!
다음에는 레이아웃을 수정해보도록 하겠습니다!
위의 설명을 잘 따라 오셨다면 자동으로 생성이 되어있어요!
+ 레이아웃이 없을 시에는 밑의 방법을 따라주세요 :)
res 폴더 마우스 우클릭 후, New > Android resource directory 클릭
Resource Type을 layout으로 선택 후 OK
그럼 이렇게 보이실거예요.
layout이라는 폴더가 생겼지요?
생성된 layout 폴더 우클릭 > New > Layout resource file 클릭하세요:)
File name에 activity_main.xml 입력 후 OK버튼을 클릭해 주세요!
그럼 아래화면이 뜹니다 :)
위 화면 오른쪽 상단에 Design 탭이 활성화 돼있는데 Code탭을 클릭해 주세요 ㅎㅎ!
클릭 후 나오는 창에
Ctrl+A(전체선택) 후 안의 내용을 밑의 내용으로 붙여넣기합니다!
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" 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_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout> |
이렇게요!!!
여기까지 프로젝트 생성 및 레이아웃 생성이었습니다!! :)
우리 열심히 해봐요!!!!
고맙습니다 :)
다음은 레이아웃 수정을 해보도록 하겠습니다!!
'시작하는 개발 노트 > 안드로이드 어플' 카테고리의 다른 글
안드로이드 앱 만들기 - 4. 파이어베이스(FIREBASE) 연동하기, 연결하기 (0) | 2021.09.17 |
---|---|
안드로이드 앱 만들기 - 3. Splash Screen(앱 실행 화면, 앱 실행 배경) 구현 (1) | 2020.12.28 |
안드로이드 앱 만들기 - 1. 개발 환경 만들기 (0) | 2020.12.04 |
댓글