«android-coordinatorlayout» 태그된 질문

10
두 위젯 / 레이아웃 사이에 새로운 "플로팅 액션 버튼"을 추가하는 방법
새로운 '플로팅 액션 버튼'(일명 'FAB')과 함께 새로운 Android 디자인 가이드 라인을 본 것 같습니다. 예를 들어이 분홍색 버튼 : 내 질문은 어리석은 소리로 들리지만 이미 많은 것을 시도했지만이 레이아웃을 두 레이아웃의 교차점에 놓는 가장 좋은 방법은 무엇입니까? 위의 예에서이 버튼은 ImageView와 relativeLayout이라고 상상할 수있는 것 사이에 완벽하게 배치되어 있습니다. 나는 …

4
CoordinatorLayout의 도구 모음 아래에보기 추가
다음과 같은 레이아웃이 있습니다. <android.support.design.widget.CoordinatorLayout android:id="@+id/main_content" 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.support.design.widget.AppBarLayout android:id="@+id/appBar" android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/ThemeOverlay.AppCompat.ActionBar"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" app:layout_scrollFlags="scroll|enterAlways" app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/> </android.support.design.widget.AppBarLayout> <FrameLayout android:id="@+id/content" android:layout_width="match_parent" android:layout_height="match_parent" /> </android.support.design.widget.CoordinatorLayout> 나는 추가 Fragment에들 FrameLayout을 대체. 내 중 하나는 Fragment다음과 같은 레이아웃을 가진 목록입니다. <android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/recyclerView" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior"/> 내 …

22
오류 : 프로그램 유형이 이미 있습니다 : android.support.design.widget.CoordinatorLayout $ Behavior
프로젝트를 빌드하는 동안 다음 오류가 발생합니다. 이 프로젝트에서 CoordinatorLayout을 사용하지 않았습니다. build.gradle에 종속성으로 추가되었습니다. Android Studio 3.2 Canary 4를 사용하고 있습니다. LogCat AGPBI : { "kind": "error", "text": "프로그램 유형이 이미 있습니다 : android.support.design.widget.CoordinatorLayout $ Behavior", "sources": [{}], "tool": "D8" } : app : transformDexArchiveWithExternalLibsDexMergerForDebug 실패 : 실패로 빌드가 실패했습니다. …

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

7
CoordinatorLayout이란 무엇입니까?
새로운 Android 지원 디자인 라이브러리의 데모 앱을 살펴 보았습니다. Chris Banes가 github 에서 제공합니다 . 앱을 통해 CoordinatorLayout무겁게 사용됩니다. 또한, 예컨대 상기지지 설계 라이브러리 많은 클래스 FloatingActionButton, SnackBar, AppBarLayout등을 다르게 행동한다 때 사용되는 내부 CoordinatorLayout. 누군가 가 안드로이드의 CoordinatorLayout다른 것들 과 어떻게 다른지 에 대해 조명을 비추 ViewGroup거나 적어도 학습을 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.