«android-design-library» 태그된 질문

디자인 패키지는 앱에 머티리얼 디자인 구성 요소 및 패턴 추가를 지원하는 API를 제공합니다.

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> …

16
사용자가 그것에 초점을 맞추기 전에 TextInputLayout에 EditText 힌트가 표시되지 않음
최근에 출시 된 Android 디자인 지원 라이브러리 를 사용하여 EditTexts로 플로팅 레이블을 표시하고 있습니다. 하지만 UI가 렌더링 될 때 EditText의 힌트가 표시되지 않는 문제에 직면했지만 EditTexts에 초점을 맞춘 후에 힌트가 표시됩니다. 내 레이아웃은 다음과 같습니다. <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent"> <ScrollView android:id="@+id/ScrollView01" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="vertical"> …

7
CoordinatorLayout이란 무엇입니까?
새로운 Android 지원 디자인 라이브러리의 데모 앱을 살펴 보았습니다. Chris Banes가 github 에서 제공합니다 . 앱을 통해 CoordinatorLayout무겁게 사용됩니다. 또한, 예컨대 상기지지 설계 라이브러리 많은 클래스 FloatingActionButton, SnackBar, AppBarLayout등을 다르게 행동한다 때 사용되는 내부 CoordinatorLayout. 누군가 가 안드로이드의 CoordinatorLayout다른 것들 과 어떻게 다른지 에 대해 조명을 비추 ViewGroup거나 적어도 학습을 …

22
지원 라이브러리 스낵바 텍스트 색상을 android : textColor가 아닌 다른 색상으로 설정하는 방법은 무엇입니까?
그래서 디자인 지원 라이브러리에서 새로운 Snackbar를 사용하기 시작했지만 테마에서 "android : textColor"를 정의하면 스낵바의 텍스트 색상에 적용된다는 것을 알았습니다. 기본 텍스트 색상이 어두우면 분명히 문제가됩니다. 누구든지 이것에 대한 방법을 알고 있거나 텍스트에 색상을 지정하는 방법에 대한 조언이 있습니까? 2017 년 1 월 수정 : (답변 후) 아래에 문제를 해결하기위한 몇 …


16
Android Multiline Snackbar
http://www.google.com/design/spec/components/snackbars-toasts.html#snackbars-toasts-specs에Snackbar 표시된대로 Android 디자인 지원 라이브러리의 새로운 기능을 활용 하여 여러 줄 스낵바를 표시 하려고합니다 . import android.support.design.widget.Snackbar; final String snack = "First line\nSecond line\nThird line"; Snackbar.make(mView, snack, Snackbar.LENGTH_LONG).show(); First line...내 Nexus 7 에만 표시됩니다. 모든 행을 표시하려면 어떻게해야합니까? 추신 : 시도했는데 Toast모든 라인이 표시되었습니다.

2
NavigationView 및 사용자 지정 레이아웃
다음 NavigationView과 같은 Designs Support Libraries를 사용하고 있습니다 . <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/drawer_layout" android:layout_height="match_parent" android:layout_width="match_parent" android:fitsSystemWindows="true"> <!-- put your main layout here --> <include layout="@layout/drawer_main_layout"/> <android.support.design.widget.NavigationView android:id="@+id/nav_view" android:layout_height="match_parent" android:layout_width="wrap_content" android:layout_gravity="start" android:fitsSystemWindows="true" app:headerLayout="@layout/nav_header" app:menu="@menu/drawer_view"/> </android.support.v4.widget.DrawerLayout> 그리고이 메뉴를 설정했습니다. <menu xmlns:android="http://schemas.android.com/apk/res/android"> <group android:checkableBehavior="single"> <item android:id="@+id/nav_home" android:icon="@drawable/ic_dashboard" android:title="Home" /> <item android:id="@+id/nav_messages" android:icon="@drawable/ic_event" android:title="Messages" …

12
스낵바가 자동으로 종료되었을 때 어떻게 알림을받을 수 있습니까?
com.android.support:design:22.2.0도서관 에서 스낵바를 사용하고 있습니다. 삭제를 취소하는 데 사용하고 있습니다. 내 삶을 더 쉽게 만들기 위해 UI를 실제로 데이터 소스에서 삭제 된 것처럼 보이게 만들고 스낵바의 실행 취소 버튼을 누르지 않으면 실제로 데이터 소스에서 삭제를 수행합니다. 따라서 Snackbar가 더 이상 표시되지 않는시기를 알고 싶으므로 항목을 삭제하는 것이 안전합니다. Snackbar에서 getView …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.