1. 소개
머티리얼 구성요소(MDC)를 통해 개발자는 머티리얼 디자인을 구현할 수 있습니다. Google의 엔지니어와 UX 디자이너로 구성된 팀에서 만든 MDC는 아름답고 기능적인 수십 가지의 UI 구성요소가 특징이며 Android, iOS, 웹, Flutter.material.io/develop에서 제공됩니다. |
Android용 Material Design 및 Material 구성요소란 무엇인가요?
머티리얼 디자인은 대담하고 멋진 디지털 제품을 빌드하는 시스템입니다. 일련의 일관된 원칙과 구성요소 아래 스타일과 브랜딩, 상호작용, 모션을 통합하여 제품팀은 가능한 최고의 디자인을 실현할 수 있습니다.
Android 애플리케이션의 경우 Android용 Material 구성요소 (MDC Android)는 디자인 및 엔지니어링을 구성요소 라이브러리와 통합하여 앱 전체에서 일관성을 높입니다. Material Design 시스템이 발전함에 따라 이러한 구성요소는 일관된 픽셀 완벽 구현과 Google의 프런트엔드 개발 표준 준수를 보장하기 위해 업데이트됩니다. MDC는 웹, iOS, Flutter에도 사용할 수 있습니다.
이 Codelab에서는 여러 MDC Android 구성요소를 사용하여 로그인 페이지를 빌드합니다.
빌드할 항목
이 Codelab은 Shrine 앱(의류와 가정용품을 판매하는 전자상거래 Android 앱)을 빌드하는 방법을 설명하는 Codelab 네 개 중 첫 번째 Codelab입니다. MDC Android를 사용하여 브랜드나 스타일을 반영하도록 구성요소를 맞춤설정하는 방법을 보여줍니다.
이 Codelab에서는 다음이 포함된 Shrine의 로그인 페이지를 빌드합니다.
- 텍스트 입력란 두 개. 하나는 사용자 이름 입력용, 하나는 비밀번호 입력용
- '취소' 버튼 1개와 '다음' 버튼 1개
- 앱 이름(Shrine)
- Shrine의 로고 이미지
이 Codelab의 MDC Android 구성요소
- 텍스트 필드
- 버튼
필요한 항목
- Android 개발에 관한 기본 지식
- Android 스튜디오(아직 다운로드하지 않은 경우 여기에서 다운로드)
- Android Emulator 또는 기기(Android 스튜디오를 통해 사용 가능)
- 샘플 코드(다음 단계 참고)
귀하의 Android 앱 빌드 경험 수준을 평가해 주세요.
2. 개발 환경 설정
Android 스튜디오 시작
Android 스튜디오를 열면 'Welcome to Android Studio'라는 창이 표시됩니다. 그러나 Android 스튜디오를 처음 실행하는 경우 기본값을 사용하여 Android 스튜디오 설정 마법사 단계를 진행합니다. 이 단계는 필요한 파일을 다운로드하고 설치하는 데 몇 분 정도 걸릴 수 있으므로 다음 섹션을 진행하는 동안 이 작업이 백그라운드에서 실행되도록 하면 됩니다.
시작 Codelab 앱 다운로드
시작 앱은 material-components-android-codelabs-101-starter/kotlin
디렉터리에 있습니다.
...또는 GitHub에서 클론
이 Codelab을 GitHub에서 클론하려면 다음 명령어를 실행하세요.
git clone https://github.com/material-components/material-components-android-codelabs cd material-components-android-codelabs/ git checkout 101-starter
Android 스튜디오에서 시작 코드 로드
- 설정 마법사가 완료되고 Welcome to Android Studio 창이 표시되면 Open an existing Android Studio project를 클릭합니다. 샘플 코드를 설치한 디렉터리로 이동하여 kotlin -> shrine를 선택하거나 컴퓨터에서 shrine을 검색하여 Shipping 프로젝트를 엽니다.
- Android 스튜디오 창 하단의 활동 표시기에 나타나는 것처럼 Android 스튜디오가 프로젝트를 빌드하고 동기화할 때까지 잠시 기다립니다.
- 이 시점에서 Android 스튜디오에 아래와 같은 빌드 오류가 발생할 수 있습니다. Android SDK나 빌드 도구가 누락되었기 때문입니다. Android 스튜디오의 안내를 따라 이러한 항목을 설치/업데이트하고 프로젝트를 동기화합니다.
프로젝트 종속 항목 추가
프로젝트에는 MDC Android 지원 라이브러리에 대한 종속 항목이 필요합니다. 다운로드한 샘플 코드에는 이 종속 항목이 이미 나열되어 있지만, 다음 단계를 수행하여 확인하는 것이 좋습니다.
app
모듈의build.gradle
파일로 이동하여dependencies
블록에 MDC Android의 종속 항목이 포함되어 있는지 확인합니다.
api 'com.google.android.material:material:1.1.0-alpha06'
- (선택사항) 필요한 경우
build.gradle
파일을 수정하여 다음 종속 항목을 추가하고 프로젝트를 동기화합니다.
dependencies { api 'com.google.android.material:material:1.1.0-alpha06' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'com.android.volley:volley:1.1.1' implementation 'com.google.code.gson:gson:2.8.5' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.21" testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test:core:1.1.0' androidTestImplementation 'androidx.test.ext:junit:1.1.0' androidTestImplementation 'androidx.test:runner:1.2.0-alpha05' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha05' }
시작 앱 실행
|
완료되었습니다. Shrine의 로그인 페이지를 위한 시작 코드가 에뮬레이터에서 실행되고 있어야 합니다. 'Shrine' 이름과 그 바로 아래에 Shrine 로고가 표시됩니다.
이제 코드를 살펴보겠습니다. 샘플 코드에 프래그먼트를 표시하고 프래그먼트 간에 이동하는 간단한 Fragment
탐색 프레임워크를 제공했습니다.
shrine -> app -> src -> main -> java -> com.google.codelabs.mdc.kotlin.shrine
디렉터리에서 MainActivity.kt
를 엽니다. 다음이 포함되어 있어야 합니다.
MainActivity.kt
package com.google.codelabs.mdc.kotlin.shrine
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import androidx.fragment.app.Fragment
class MainActivity : AppCompatActivity(), NavigationHost {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.shr_main_activity)
if (savedInstanceState == null) {
supportFragmentManager
.beginTransaction()
.add(R.id.container, LoginFragment())
.commit()
}
}
override fun navigateTo(fragment: Fragment, addToBackstack: Boolean) {
val transaction = supportFragmentManager
.beginTransaction()
.replace(R.id.container, fragment)
if (addToBackstack) {
transaction.addToBackStack(null)
}
transaction.commit()
}
}
이 활동은 shr_main_activity.xml
에 정의된 R.layout.shr_main_activity
레이아웃 파일을 표시합니다.
onCreate(),
에서 MainActivity.kt
는 LoginFragment
를 표시하기 위해 Fragment
트랜잭션을 시작합니다. 이 Codelab에서는 LoginFragment
를 수정합니다. 또한 활동은 NavigationHost
에 정의된 navigateTo(Fragment)
메서드를 구현하여 모든 프래그먼트가 다른 프래그먼트로 이동할 수 있도록 합니다.
활동 파일에서 shr_main_activity
을 Command + 클릭(또는 Control + 클릭)하여 레이아웃 파일을 열거나 app -> res -> layout -> shr_main_activity.xml
에서 레이아웃 파일로 이동합니다.
shr_main_activity.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"/>
여기서 활동이 표시하는 프래그먼트의 컨테이너 역할을 하는 간단한 <FrameLayout>
을 확인할 수 있습니다.
다음으로 LoginFragment.kt
을 엽니다.
LoginFragment.kt
package com.google.codelabs.mdc.kotlin.shrine
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.fragment.app.Fragment
class LoginFragment : Fragment() {
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
// Inflate the layout for this fragment
val view = inflater.inflate(R.layout.shr_login_fragment, container, false)
return view
}
}
LoginFragment
는 shr_login_fragment
레이아웃 파일을 확장하고 onCreateView()
에 표시합니다.
이제 shr_login_fragment.xml
레이아웃 파일을 살펴보고 로그인 페이지가 어떻게 표시되는지 확인해 보겠습니다.
shr_login_fragment.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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"
android:background="@color/loginPageBackgroundColor"
tools:context=".LoginFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipChildren="false"
android:clipToPadding="false"
android:orientation="vertical"
android:padding="24dp"
android:paddingTop="16dp">
<ImageView
android:layout_width="64dp"
android:layout_height="64dp"
android:layout_gravity="center_horizontal"
android:layout_marginTop="48dp"
android:layout_marginBottom="16dp"
app:srcCompat="@drawable/shr_logo" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="132dp"
android:text="@string/shr_app_name"
android:textAllCaps="true"
android:textSize="16sp" />
</LinearLayout>
</ScrollView>
상단에는 Shrine 로고를 나타내는 <ImageView>
가 있는 <LinearLayout>
를 볼 수 있습니다.
로고 아래에는 Shrine 라벨을 나타내는 <TextView>
태그가 있습니다. 이 라벨의 텍스트는 @string/shr_app_name
이라는 문자열 리소스입니다. 문자열 리소스 이름을 Command + Click (또는 Control + Click)으로 입력하거나 app -> res -> values -> strings.xml
을 열면 문자열 리소스가 정의된 strings.xml
파일을 확인할 수 있습니다. 향후 더 많은 문자열 리소스가 추가되면 여기에 정의됩니다. 이 파일의 모든 리소스에는 Shrine 앱의 일부임을 나타내는 shr_
접두사가 있어야 합니다.
시작 코드를 알아봤으므로 이제 첫 번째 구성요소를 구현해 보겠습니다.
3. 텍스트 입력란 추가
먼저 사용자가 사용자 이름과 비밀번호를 입력할 수 있는 텍스트 입력란 두 개를 로그인 페이지에 추가합니다. 플로팅 라벨과 오류 메시지를 표시하는 기본 제공 기능이 포함된 MDC 텍스트 필드 구성요소를 사용하겠습니다.
XML 추가
shr_login_fragment.xml
에서 'SHRINE' 라벨 <TextView>
아래에 <LinearLayout>
내부에 하위 TextInputEditText
가 있는 TextInputLayout
요소 두 개를 추가합니다.
shr_login_fragment.xml
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:hint="@string/shr_hint_username">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/password_text_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:hint="@string/shr_hint_password">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/password_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>
위의 스니펫은 두 개의 텍스트 필드를 나타내며 각각 <TextInputLayout>
요소와 <TextInputEditText>
하위 요소로 구성됩니다. 각 텍스트 필드의 힌트 텍스트는 android:hint
속성에 지정됩니다.
텍스트 필드에 새로운 문자열 리소스 두 개(@string/shr_hint_username
및 @string/shr_hint_password
)가 포함되었습니다. strings.xml
을 열어 이 문자열 리소스를 확인합니다.
strings.xml
<string name="shr_hint_username">Username</string>
<string name="shr_hint_password">Password</string>
입력 유효성 검사 추가
TextInputLayout
구성요소는 내장된 오류 피드백 기능을 제공합니다.
오류 의견을 표시하려면 shr_login_fragment.xml
를 다음과 같이 변경합니다.
- 비밀번호
TextInputLayout
요소에서app:errorEnabled
속성을true
로 설정합니다. 이렇게 하면 텍스트 입력란 아래에 오류 메시지의 패딩이 추가됩니다. - 비밀번호
TextInputEditText
요소에서android:inputType
속성을 'textPassword
'로 설정합니다. 이렇게 하면 비밀번호 필드에서 입력 텍스트가 숨겨집니다.
변경사항을 적용하면 shr_login_fragment.xml
의 텍스트 필드는 다음과 같이 표시됩니다.
shr_login_fragment.xml
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:hint="@string/shr_hint_username">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/password_text_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:hint="@string/shr_hint_password"
app:errorEnabled="true">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/password_edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword" />
</com.google.android.material.textfield.TextInputLayout>
이제 앱을 실행해 봅니다. '사용자 이름'과 '비밀번호'를 위한 두 개의 텍스트 필드가 있는 페이지가 표시됩니다.
플로팅 라벨 애니메이션을 확인해보세요.
4. 버튼 추가
이제 '취소'와 '다음' 버튼 두 개를 로그인 페이지에 추가합니다. 상징적인 Material Design 잉크 물결 효과가 내장된 MDC Button 구성요소를 사용합니다.
XML 추가
shr_login_fragment.xml
에서 <RelativeLayout>
를 <LinearLayout>
의 TextInputLayout
요소 아래에 추가합니다. 그런 다음 <RelativeLayout>
에 <MaterialButton>
요소 두 개를 추가합니다.
결과 XML 파일은 다음과 같습니다.
shr_login_fragment.xml
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.button.MaterialButton
android:id="@+id/next_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:text="@string/shr_button_next" />
<com.google.android.material.button.MaterialButton
android:id="@+id/cancel_button"
style="@style/Widget.MaterialComponents.Button.TextButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="12dp"
android:layout_marginRight="12dp"
android:layout_toStartOf="@id/next_button"
android:layout_toLeftOf="@id/next_button"
android:text="@string/shr_button_cancel" />
</RelativeLayout>
작업이 끝났습니다. 앱을 실행하면 각 버튼을 탭할 때 잉크 물결 효과가 표시됩니다.
5. 다음 Fragment로 이동
마지막으로 LoginFragment.kt
에 Kotlin 코드를 추가하여 'NEXT' 버튼을 다른 프래그먼트로 전환하도록 연결합니다.
비밀번호의 유효성을 확인하는 로직이 포함된 비공개 불리언 isPasswordValid
메서드를 onCreateView()
아래의 LoginFragment.kt
에 추가해 보겠습니다. 이 데모에서는 비밀번호가 8자 이상인지 확인합니다.
LoginFragment.kt
private fun isPasswordValid(text: Editable?): Boolean {
return text != null && text.length >= 8
}
이제 방금 만든 isPasswordValid()
메서드에 따라 오류를 설정하고 지우는 클릭 리스너를 'Next' 버튼에 추가합니다. onCreateView()
에서 이 클릭 리스너는 inflater 선과 return view
선 사이에 배치해야 합니다.
이제 비밀번호 TextInputEditText
에 키 리스너를 추가하여 오류를 해결하는 주요 이벤트를 수신 대기합니다. 이 리스너는 isPasswordValid()
를 사용하여 비밀번호의 유효성도 확인해야 합니다. onCreateView()
의 클릭 리스너 바로 아래에 추가할 수 있습니다.
이제 onCreateView() 메서드가 다음과 같이 표시됩니다.
LoginFragment.kt
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
// Inflate the layout for this fragment.
val view = inflater.inflate(R.layout.shr_login_fragment, container, false)
// Set an error if the password is less than 8 characters.
view.next_button.setOnClickListener({
if (!isPasswordValid(password_edit_text.text!!)) {
password_text_input.error = getString(R.string.shr_error_password)
} else {
// Clear the error.
password_text_input.error = null
}
})
// Clear the error once more than 8 characters are typed.
view.password_edit_text.setOnKeyListener({ _, _, _ ->
if (isPasswordValid(password_edit_text.text!!)) {
// Clear the error.
password_text_input.error = null
}
false
})
return view
}
}
이제 다른 프래그먼트로 이동할 수 있습니다. onCreateView()
에서 오류 유효성 검사에 성공하면 다른 프래그먼트로 이동하도록 OnClickListener
를 업데이트합니다. 이제 clickListener
코드가 다음과 같이 표시됩니다.
LoginFragment.kt
// Set an error if the password is less than 8 characters.
view.next_button.setOnClickListener({
if (!isPasswordValid(password_edit_text.text!!)) {
password_text_input.error = getString(R.string.shr_error_password)
} else {
// Clear the error.
password_text_input.error = null
// Navigate to the next Fragment.
(activity as NavigationHost).navigateTo(ProductGridFragment(), false)
}
})
클릭 리스너의 else
케이스에 (
activity
as
NavigationHost).navigateTo(ProductGridFragment(),
false
)
줄을 추가했습니다. 이 줄은 MainActivity
에서 navigateTo()
메서드를 호출하여 새 프래그먼트인 ProductGridFragment
로 이동합니다. 현재 MDC-102에서 작업할 빈 페이지입니다.
이제 앱을 빌드합니다. 다음 버튼을 누릅니다.
축하합니다. 이 화면은 MDC-102에서 작업할 다음 Codelab의 시작점이 됩니다.
6. 완료
Android용 Material 구성요소 라이브러리를 사용하면 기본 XML 마크업과 Kotlin 코드 30줄 미만으로 Material Design 가이드라인을 준수하고 모든 기기에서 일관되게 보이고 동작하는 멋진 로그인 페이지를 만들 수 있었습니다.
다음 단계
텍스트 필드와 버튼은 MDC Android 라이브러리의 두 가지 핵심 구성요소이지만 이 외에도 더 많은 요소가 있습니다. MDC Android의 나머지 구성요소를 살펴볼 수 있습니다. 또는 MDC 102: 머티리얼 디자인 구조 및 레이아웃으로 이동하여 상단 앱 바, 카드 뷰, 그리드 레이아웃에 관해 알아보세요. 머티리얼 구성요소를 사용해 주셔서 감사합니다. 이 Codelab에 만족하셨길 바랍니다.