반응형
Android 프로그램을 개발하면서
최신 버전에서 발생하는 behavior 화면 스크롤하는
기능 오류를 발견했습니다.
해결법을 찾아 보니 최신 버전은
다른 코드를 사용해야 합니다.
<android.support.v7.widget.RecyclerView
android:id="@+id/filesRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
@string/appbar_scrolling_view_behavior
속성을 사용하면
컴파일 시 Android resource linking failed
오류가 발생합니다.
<android.support.v7.widget.RecyclerView
android:id="@+id/filesRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScroolingViewBehavior" />
behavior 속성을
com.google.android.material.appbar.AppBarLayout$ScroolingViewBehavior
변경하면 컴파일되면서 오류가 해결됩니다.
감사합니다.
반응형
'IT 나라 > 프로그램 이야기' 카테고리의 다른 글
엘라스틱서치 Elastic Search 8.4 버전 Windows 설치 방법 (0) | 2022.08.30 |
---|---|
무료 REST API 테스트 클라이언트 Talend API Tester (0) | 2022.08.11 |
맥북 도커 톰캣 설치 방법 (0) | 2021.06.09 |
맥북 도커 설치 방법 (0) | 2021.06.07 |
[VMware error] Workstation and Device/Credential Guard are not compatible 오류 (0) | 2021.03.31 |