«android-collapsingtoolbarlayout» 태그된 질문

10
프로그래밍 방식으로 축소 또는 축소 축소 도구 모음 레이아웃
간단한 질문이지만 답을 찾을 수 없습니다. CollapsingToolbarLayout프로그래밍 방식으로 축소하거나 확장하려면 어떻게해야합니까? ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓


4
Google지도의 하단 시트 3 단계 동작을 모방하는 방법은 무엇입니까?
배경 저는 Google지도에서 찾은 결과에 대한 하단 시트를 표시하는 방식과 유사한 UI를 만들도록 지정되었습니다. 세 가지 단계가 있습니다. 하단 내용. 상단 영역은 여전히 ​​터치 가능하며 하단에서 아무것도 스크롤하지 않습니다. 전체 화면 콘텐츠, 상단 영역에는 큰 헤더가 있습니다. 전체 화면 콘텐츠, 상단 영역에는 도구 모음 만 있습니다. Google지도에서 제가 말하는 내용은 …

11
Android CollapsingToolbarLayout 축소 리스너
나는 및와 CollapsingToolBarLayout함께 사용 AppBarLayout하고 CoordinatorLayout있으며 모두 잘 작동합니다. Toolbar위로 스크롤하면 고정되도록 설정 CollapsingToolBarLayout했습니다. 툴바 가 축소 되었을 때 제목 텍스트를 변경할 수있는 방법이 있는지 알고 싶습니다 . 요약 하자면 스크롤 할 때와 확장 할 때 두 가지 다른 제목을 원합니다 . 미리 감사드립니다

2
AppBarLayout으로 스크롤링보기 겹침
이 비디오 에서와 같이 머티리얼 디자인 스크롤 기술 에서 '겹치는 콘텐츠가있는 유연한 공간'패턴을 구현하고 싶습니다 . 내 XML 레이아웃은 다음과 같습니다. <android.support.design.widget.CoordinatorLayout android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="192dp" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> <android.support.design.widget.CollapsingToolbarLayout android:layout_width="match_parent" android:layout_height="match_parent" app:layout_scrollFlags="scroll|exitUntilCollapsed"> <android.support.v7.widget.Toolbar android:layout_height="?attr/actionBarSize" android:layout_width="match_parent" app:layout_collapseMode="pin"/> </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="@string/appbar_scrolling_view_behavior"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <....> </LinearLayout> </android.support.v4.widget.NestedScrollView> </android.support.design.widget.CoordinatorLayout> …

6
CollapsingToolbarLayout이 스크롤 플링을 인식하지 못합니다.
간단한 CollapsingToolbarLayout 을 만들었 으며 매력처럼 작동합니다. 내 문제는 nestedscrollview 에서 플링 스크롤을 사용하려고하면 손가락을 떼면 중지 된다는 것입니다. 정상적인 스크롤은 정상적으로 작동합니다. 내 활동 코드가 변경되지 않았습니다 => 자동 생성 된 빈 활동. (나는 방금 android studio에서 새로운 빈 활동 만들기를 클릭하고 아직 XML을 편집했습니다). 나는 여기에서 imageview 자체의 …


1
Android에서 Custom Collapsable Toolbar를 구현하는 방법은 무엇입니까?
이 튜토리얼 을 사용 하여 Flexible Space 패턴 (축소 도구 모음이있는 패턴)을 구현합니다. Lollipop 연락처 활동 에서와 유사한 효과를 얻으려고합니다. 활동을 시작하는 동안보기는 이미지 헤더의 일부일뿐입니다. 그런 다음 사용자는 이미지 아래의 레이아웃을 아래로 스크롤하여 최대 값에 도달 할 때까지 더 많이 표시 할 수 있습니다. 내 앱에서 작동하도록 관리 할 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.