«navigationview» 태그된 질문

7
NavigationView get / find 헤더 레이아웃
내 NavigationView에는 활성 버튼이있는 ID가 'viewId'인 헤더 레이아웃이 있습니다. 해당 버튼을 설정하려면 활동에서 다음을 수행하십시오 onPostCreate. final View panel = findViewById(R.id.viewId); panel.setOnClickListener(new View.OnClickListener() { ... setup goes here ... }); 새로운 버전의 안드로이드 지원 라이브러리 ( 23.1.0 )에서는 뷰를 찾을 수 없으며 null을 반환합니다. 이전 버전에서는 잘 작동했습니다. 버그입니까, 아니면이 …

13
새로운 NavigationView에서 간단한 디바이더를 만드는 방법은 무엇입니까?
Google NavigationView은 메뉴 리소스를 사용하여 서랍을 매우 쉽게 만들 수있는 디자인 지원 라이브러리 버전 22.2.0을 도입했습니다 . 두 항목 사이에 간단한 구분선을 만들려면 어떻게해야합니까? 항목을 그룹화하지 못했습니다. 하위 항목 섹션을 만들면 구분선이 만들어 지지만 원하지 않는 제목이 필요합니다. 도움을 주시면 감사하겠습니다.

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

3
SwiftUI NavigationLink 숨기기 화살표
탐색 링크보기의 오른쪽에있는 화살표를 자동으로 추가하는 방법이 있습니까? NavigationView-> List-> HStack-> NavigationLink_1-NavigationLink_2를 사용하여 이미지 그리드를 표시하고 싶습니다. NavigationLinks에 화살표가 있으며 이상하게 보입니다.
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.