2016-09-13 8 views
-2

저는 지원 디자인에 관심이 많습니다. 나는 enterAlwaysCollapsed의 사용법을 이해할 수 없습니다. 풀다운에 영향을 미칠 것으로 보이지만 시도해 보았습니다. 그렇다면 enterAlwaysCollapsed를 어떻게 사용합니까? 데모를 보여줄 수 있습니까?무엇이 enterAlwaysCollapsed를 사용합니까

답변

0

직접 답변 해 드리겠습니다. 먼저 활동 테마는 AppTheme입니다.

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> 
    <!-- Customize your theme here. --> 
    <item name="colorPrimary">@color/colorPrimary</item> 
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item> 
    <item name="colorAccent">@color/colorAccent</item> 
</style> 

그리고 xml에 fitsSystemWindows를 설정하지 마십시오.
마지막 사용 스크롤 플래그 scroll | enterAlways | enterAlwaysCollapsed.
최종 효과

enter image description here

이하