«androiddesignsupport» 태그된 질문

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"/> 내 …

6
탐색 창에서 선택한 메뉴 항목의 색상 변경
새로운 Android 디자인 지원 라이브러리를 사용하여 내 애플리케이션에서 탐색 창을 구현하고 있습니다. 선택한 항목의 색상을 변경하는 방법을 모르겠어요! 다음은 메뉴의 xml입니다. <menu xmlns:android="http://schemas.android.com/apk/res/android"> <group android:checkableBehavior="single"> <item android:id="@+id/navigation_item_1" android:icon="@drawable/ic_1" android:title="@string/navigation_item_1"/> <item android:id="@+id/navigation_item_2" android:icon="@drawable/ic_2" android:title="@string/navigation_item_2"/> </group> 그리고 다음은 내부에 위치한 navigationview xml입니다 android.support.v4.widget.DrawerLayout. <android.support.design.widget.NavigationView android:id="@+id/activity_main_navigationview" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="start" app:headerLayout="@layout/drawer_header" app:itemIconTint="@color/black" app:itemTextColor="@color/primary_text" app:menu="@menu/menu_drawer"> …


25
상태 표시 줄이 흰색으로 바뀌고 뒤에 콘텐츠가 표시되지 않습니다.
Marshmallow에서 AppCompat을 사용해보고 있습니다. 투명 상태 표시 줄을 원하지만 흰색으로 바뀝니다. 몇 가지 솔루션을 시도했지만 저를 위해 작동하지 않았습니다 ( 투명 상태 표시 줄이 windowTranslucentNavigation = "false"와 함께 작동하지 않음 , Lollipop : 색상이 투명으로 설정된 상태 바 뒤에 그리기 ). 다음은 관련 코드입니다. 내 styles.xml <style name="Bacon" parent="Theme.Bacon"/> <style …

25
android.support.design.widget.NavigationView 클래스 확장 오류
Support Design Library 의 새 구성 요소 NavigationView 에 대한 자습서를 따랐는데이 오류 메시지가 표시되지 않습니다. Error inflating class android.support.design.widget.NavigationView 여기에서 모든 해결 방법을 시도했습니다. Android 디자인 지원 라이브러리 요소 사용시 오류 그러나 오류 메시지는 여전히 존재합니다. xml <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_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" > …



16
Android에서 클래스 파일에서 프로그래밍 방식으로 탐색 서랍 헤더 이미지와 이름을 설정하는 방법은 무엇입니까?
안드로이드 스튜디오 1.4.1에서 기본적으로 새로운 Navigation Drawer 프로젝트를 생성했는데,이 프로젝트에는 네비게이션 헤더 이미지와 이름을위한 nav_header_main.xml 파일이 있습니다. 이 이미지와 이름은 기본 수업 활동에서 프로그래밍 방식으로 설정되어야합니다. 이렇게하는 방법을 많이 시도했지만 앱이 충돌합니다. nav_header_main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout android:layout_width="match_parent" android:id="@+id/headerView" android:layout_height="@dimen/nav_header_height" android:background="@drawable/side_nav_bar" android:gravity="bottom" android:orientation="vertical" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" android:theme="@style/ThemeOverlay.AppCompat.Dark"> <ImageView android:id="@+id/imageView" …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.