Android: Change color of navigationView selected item programatically
I created a drawer with a navigation view. In an other part of the activity, I have a button. When I click on this button, I want the selected item of the navigation view to change its color.
Do you know how to do that?
Edit:
For now I tried this:
private void changeNavigationColor(int resColor){
int state = new int {
new int {android.R.attr.state_checked} // unchecked
};
int color = new int {
getResources().getColor(resColor)
};
ColorStateList colorStateList= new ColorStateList(state, color);
navigationView.setItemTextColor(colorStateList.getColorForState());
navigationView.setItemIconTintList(colorStateList);
}
But it is changing the whole colorListState whereas I just want to change it the check state
android navigationview
add a comment |
I created a drawer with a navigation view. In an other part of the activity, I have a button. When I click on this button, I want the selected item of the navigation view to change its color.
Do you know how to do that?
Edit:
For now I tried this:
private void changeNavigationColor(int resColor){
int state = new int {
new int {android.R.attr.state_checked} // unchecked
};
int color = new int {
getResources().getColor(resColor)
};
ColorStateList colorStateList= new ColorStateList(state, color);
navigationView.setItemTextColor(colorStateList.getColorForState());
navigationView.setItemIconTintList(colorStateList);
}
But it is changing the whole colorListState whereas I just want to change it the check state
android navigationview
please include code what you have tried so far to achieve this
– Basil jose
Nov 27 '18 at 9:10
I have just edited my comment :)
– Adrien Boukobza
Nov 27 '18 at 9:16
add a comment |
I created a drawer with a navigation view. In an other part of the activity, I have a button. When I click on this button, I want the selected item of the navigation view to change its color.
Do you know how to do that?
Edit:
For now I tried this:
private void changeNavigationColor(int resColor){
int state = new int {
new int {android.R.attr.state_checked} // unchecked
};
int color = new int {
getResources().getColor(resColor)
};
ColorStateList colorStateList= new ColorStateList(state, color);
navigationView.setItemTextColor(colorStateList.getColorForState());
navigationView.setItemIconTintList(colorStateList);
}
But it is changing the whole colorListState whereas I just want to change it the check state
android navigationview
I created a drawer with a navigation view. In an other part of the activity, I have a button. When I click on this button, I want the selected item of the navigation view to change its color.
Do you know how to do that?
Edit:
For now I tried this:
private void changeNavigationColor(int resColor){
int state = new int {
new int {android.R.attr.state_checked} // unchecked
};
int color = new int {
getResources().getColor(resColor)
};
ColorStateList colorStateList= new ColorStateList(state, color);
navigationView.setItemTextColor(colorStateList.getColorForState());
navigationView.setItemIconTintList(colorStateList);
}
But it is changing the whole colorListState whereas I just want to change it the check state
android navigationview
android navigationview
edited Nov 27 '18 at 9:15
Adrien Boukobza
asked Nov 27 '18 at 9:08
Adrien BoukobzaAdrien Boukobza
1108
1108
please include code what you have tried so far to achieve this
– Basil jose
Nov 27 '18 at 9:10
I have just edited my comment :)
– Adrien Boukobza
Nov 27 '18 at 9:16
add a comment |
please include code what you have tried so far to achieve this
– Basil jose
Nov 27 '18 at 9:10
I have just edited my comment :)
– Adrien Boukobza
Nov 27 '18 at 9:16
please include code what you have tried so far to achieve this
– Basil jose
Nov 27 '18 at 9:10
please include code what you have tried so far to achieve this
– Basil jose
Nov 27 '18 at 9:10
I have just edited my comment :)
– Adrien Boukobza
Nov 27 '18 at 9:16
I have just edited my comment :)
– Adrien Boukobza
Nov 27 '18 at 9:16
add a comment |
1 Answer
1
active
oldest
votes
Do this :
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header_dashboard"
app:itemIconTint="@drawable/drawer_item" // add this
app:itemTextColor="@drawable/drawer_item" // add this
app:menu="@menu/activity_dashboard_drawer" />
drawer_item.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="AFTER_CLICK_CHANGE_COLOR_TEXT" android:state_checked="true" />
<item android:color="NAVIGATION_DRAWER_TEXT_COLOR" />
</selector>
Yes but in this xml code the color will change when I click on the item. Or I want the color of the current clicked item to change when I click on an other button in the activity
– Adrien Boukobza
Nov 27 '18 at 10:09
replace this NAVIGATION_DRAWER_TEXT_COLOR to #AEAEAE for default text color and then replace this AFTER_CLICK_CHANGE_COLOR_TEXT to #000000 for selected color. when you click on item text color will change to black.
– Abhinav Gupta
Nov 27 '18 at 10:12
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53496104%2fandroid-change-color-of-navigationview-selected-item-programatically%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Do this :
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header_dashboard"
app:itemIconTint="@drawable/drawer_item" // add this
app:itemTextColor="@drawable/drawer_item" // add this
app:menu="@menu/activity_dashboard_drawer" />
drawer_item.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="AFTER_CLICK_CHANGE_COLOR_TEXT" android:state_checked="true" />
<item android:color="NAVIGATION_DRAWER_TEXT_COLOR" />
</selector>
Yes but in this xml code the color will change when I click on the item. Or I want the color of the current clicked item to change when I click on an other button in the activity
– Adrien Boukobza
Nov 27 '18 at 10:09
replace this NAVIGATION_DRAWER_TEXT_COLOR to #AEAEAE for default text color and then replace this AFTER_CLICK_CHANGE_COLOR_TEXT to #000000 for selected color. when you click on item text color will change to black.
– Abhinav Gupta
Nov 27 '18 at 10:12
add a comment |
Do this :
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header_dashboard"
app:itemIconTint="@drawable/drawer_item" // add this
app:itemTextColor="@drawable/drawer_item" // add this
app:menu="@menu/activity_dashboard_drawer" />
drawer_item.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="AFTER_CLICK_CHANGE_COLOR_TEXT" android:state_checked="true" />
<item android:color="NAVIGATION_DRAWER_TEXT_COLOR" />
</selector>
Yes but in this xml code the color will change when I click on the item. Or I want the color of the current clicked item to change when I click on an other button in the activity
– Adrien Boukobza
Nov 27 '18 at 10:09
replace this NAVIGATION_DRAWER_TEXT_COLOR to #AEAEAE for default text color and then replace this AFTER_CLICK_CHANGE_COLOR_TEXT to #000000 for selected color. when you click on item text color will change to black.
– Abhinav Gupta
Nov 27 '18 at 10:12
add a comment |
Do this :
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header_dashboard"
app:itemIconTint="@drawable/drawer_item" // add this
app:itemTextColor="@drawable/drawer_item" // add this
app:menu="@menu/activity_dashboard_drawer" />
drawer_item.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="AFTER_CLICK_CHANGE_COLOR_TEXT" android:state_checked="true" />
<item android:color="NAVIGATION_DRAWER_TEXT_COLOR" />
</selector>
Do this :
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header_dashboard"
app:itemIconTint="@drawable/drawer_item" // add this
app:itemTextColor="@drawable/drawer_item" // add this
app:menu="@menu/activity_dashboard_drawer" />
drawer_item.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:color="AFTER_CLICK_CHANGE_COLOR_TEXT" android:state_checked="true" />
<item android:color="NAVIGATION_DRAWER_TEXT_COLOR" />
</selector>
answered Nov 27 '18 at 9:56
Abhinav GuptaAbhinav Gupta
1,386621
1,386621
Yes but in this xml code the color will change when I click on the item. Or I want the color of the current clicked item to change when I click on an other button in the activity
– Adrien Boukobza
Nov 27 '18 at 10:09
replace this NAVIGATION_DRAWER_TEXT_COLOR to #AEAEAE for default text color and then replace this AFTER_CLICK_CHANGE_COLOR_TEXT to #000000 for selected color. when you click on item text color will change to black.
– Abhinav Gupta
Nov 27 '18 at 10:12
add a comment |
Yes but in this xml code the color will change when I click on the item. Or I want the color of the current clicked item to change when I click on an other button in the activity
– Adrien Boukobza
Nov 27 '18 at 10:09
replace this NAVIGATION_DRAWER_TEXT_COLOR to #AEAEAE for default text color and then replace this AFTER_CLICK_CHANGE_COLOR_TEXT to #000000 for selected color. when you click on item text color will change to black.
– Abhinav Gupta
Nov 27 '18 at 10:12
Yes but in this xml code the color will change when I click on the item. Or I want the color of the current clicked item to change when I click on an other button in the activity
– Adrien Boukobza
Nov 27 '18 at 10:09
Yes but in this xml code the color will change when I click on the item. Or I want the color of the current clicked item to change when I click on an other button in the activity
– Adrien Boukobza
Nov 27 '18 at 10:09
replace this NAVIGATION_DRAWER_TEXT_COLOR to #AEAEAE for default text color and then replace this AFTER_CLICK_CHANGE_COLOR_TEXT to #000000 for selected color. when you click on item text color will change to black.
– Abhinav Gupta
Nov 27 '18 at 10:12
replace this NAVIGATION_DRAWER_TEXT_COLOR to #AEAEAE for default text color and then replace this AFTER_CLICK_CHANGE_COLOR_TEXT to #000000 for selected color. when you click on item text color will change to black.
– Abhinav Gupta
Nov 27 '18 at 10:12
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53496104%2fandroid-change-color-of-navigationview-selected-item-programatically%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
please include code what you have tried so far to achieve this
– Basil jose
Nov 27 '18 at 9:10
I have just edited my comment :)
– Adrien Boukobza
Nov 27 '18 at 9:16