CODEDRAGON ㆍDevelopment/Android
Snackbar (스낵바)
· 안드로이드 API 21(롤리팝)부터 도입된 알림 방식입니다.
· 화면 아래에서 위로 올라오면서 메시지를 보여줍니다.
· 사용자가 인식하고 메시지를 볼 수 있으며, 사용자의 클릭을 감지하여 다른 액티비티로 이동하거나 다른 동작을 할 수 있습니다.
· build.gradle(Module: app) 파일에 SnackerBar 사용하기 위해 design 라이브러리를 추가해 줍니다.
build.gradle(Module: app)
SnackerBar 사용하기 위해서는 design 라이브러리를 추가해 줍니다.
dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
/* 스낵바 사용을 위해 추가*/ implementation 'com.android.support:design:28.0.0' } |
'Development > Android' 카테고리의 다른 글
진동(Vibrate), 퍼미션(Permission) 설정 (0) | 2019.03.07 |
---|---|
토스트 생성하기 (0) | 2019.03.07 |
\anim폴더 생성 후 XML 파일 생성하기 (0) | 2019.03.07 |
RecyclerView(리사이클러뷰) 사용단계 (0) | 2019.03.06 |
ListActivity 클래스 - ListView 표시 방법 (0) | 2019.03.06 |