-1
탐색보기 대신 조각을 사용하고 있습니다. 조각 항목을 클릭 할 때 맞춤 색상 강조 표시를 설정하고 싶습니다. 이 목록의 항목에 대한 사용하고있는네비게이션 조각 아이템을 사용자 정의 색상으로 검사하는 방법은 무엇입니까?
탐색보기 대신 조각을 사용하고 있습니다. 조각 항목을 클릭 할 때 맞춤 색상 강조 표시를 설정하고 싶습니다. 이 목록의 항목에 대한 사용하고있는네비게이션 조각 아이템을 사용자 정의 색상으로 검사하는 방법은 무엇입니까?
MY scuode code:---
use within Navitaionview--app:itemBackground="@drawable/nav_item_background"
like Example:--
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:background="@color/nav.background"
app:menu="@menu/menu_drawer"
app:itemBackground="@drawable/nav_item_background"
nav_item_background.xml:---
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@color/nav.item.background" />
<item android:state_checked="true" android:drawable="@color/nav.item.background" />
<item android:state_focused="true" android:drawable="@color/nav.item.background" />
<item android:state_activated="true" android:drawable="@color/nav.item.background" />
<item android:drawable="@color/nav.item.background.default" />
pls 내 탐색보기를 사용하지 않습니다. –
? 나는 Listview 또는 Recycler보기를 의미합니다. –
listview 또는 Recycler view.i m을 사용하지 않고 사용자 정의 단편 레이아웃을 사용하고 해당보기에서 clickListener를 설정하십시오. –
xml 파일을 게시 할 수 있습니까? –