NestedScrollView를 언제 쓰는가?
한 화면에 여러개의 스크롤을 사용할 때
보통 ScrollView 안에 RecycleView 가 들어가는 경우
앱바를 접는 기능
NestedScrollView 안에 다가 여러개의 RecyclerView, ListView 등등 넣어 주면 된다
NestedScrollView는 ScrollView와 비슷하지만 Android의 새 버전과 이전 버전 모두에서 중첩 스크롤 부모 및 하위 역할을 모두 지원합니다.
중첩 스크롤은 기본적으로 사용
또 다른 장점은 CoordinatorLayout과의 호환성
NestedScrollView를 사용하여 툴바에 대한 "화면 이동 스크롤"을 지원
NestedScrollView는 다른 스크롤 가능한 뷰 안에 스크롤 가능한 뷰를 구현하고자 할 때 사용되는 위젯
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="@dimen/app_bar_height"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/text_margin"
android:text="@string/large_text" />
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
|
'안드로이드' 카테고리의 다른 글
어플리케이션 구성하기 (0) | 2021.01.04 |
---|---|
안드로이드_레이아웃 (0) | 2020.12.29 |
데이터 파싱 ? (1) | 2020.05.13 |
[Tip]초보 안드로이드 개발자가 쓰면 좋을 Developer Assistant 앱 (0) | 2020.04.21 |
안드로이드 Context 개념 정리 (0) | 2020.04.09 |