Android/Android 일반

NestedScrollView

lipnus 2019. 5. 7. 14:30
반응형

NestedScrollView

scrollview안에 또다른 스크롤을 넣을 때 사용.

ScrollView안에 RecyclerView를 넣을때 부분적으로 스크롤이 생기지 않고 전체적으로 스크롤이 생겨야 할 때 사용.


<android.support.v7.widget.RecyclerView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/setting_title_sub_tv" android:id="@+id/first_recyclerview"/>

</android.support.constraint.ConstraintLayout>


반응형

'Android > Android 일반' 카테고리의 다른 글

TabLayout  (0) 2019.05.14
간단한 Animation Library  (0) 2019.05.08
Fragment에서 Intent사용  (0) 2019.05.07
Gradle에서 버전 번수로 선언해서 사용하기  (0) 2019.04.30
[Gradle] Debug와 Release 자동으로 구분하기  (0) 2019.04.29