Change ColorDrawable selected state color/ Tablayout background color programmatically
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I've a tab_color_selector.xml drawable, I'm using it in TabLayout.
I want to change it's selected state color on onTabSelected.
tab_color_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/medicine_green"
android:state_selected="true" />
<item android:drawable="@color/base_gray" />
</selector>
Tablayout xml:
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/c_white"
app:tabBackground="@drawable/tab_color_selector"
app:tabIndicatorColor="@color/summary_blue"
app:tabIndicatorHeight="5px"
app:tabMode="fixed"
app:tabSelectedTextColor="@color/c_white"
app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
app:tabTextColor="@color/c_white" />
Here I want to change ColorDrawable android:state_selected="true" color programmatically.
tabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
switch (tab.getPosition()) {
case 0:
((ColorDrawable)tabLayout.getBackground()).setColor(getResources().getColor(R.color.material_yellow400));
tabLayout.setSelectedTabIndicatorColor(getResources().getColor(R.color.color_17));
break;
case 1:
((ColorDrawable)tabLayout.getBackground()).setColor(getResources().getColor(R.color.material_pink400));
tabLayout.setSelectedTabIndicatorColor(getResources().getColor(R.color.out_pat_green));
break;
}
}
@Override
public void onTabUnselected(TabLayout.Tab tab) {
}
@Override
public void onTabReselected(TabLayout.Tab tab) {
}
});
I tried both setColor() and setColorFilter() and also setBackground()
colors tabs background-color android-tablayout colordrawable
add a comment |
I've a tab_color_selector.xml drawable, I'm using it in TabLayout.
I want to change it's selected state color on onTabSelected.
tab_color_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/medicine_green"
android:state_selected="true" />
<item android:drawable="@color/base_gray" />
</selector>
Tablayout xml:
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/c_white"
app:tabBackground="@drawable/tab_color_selector"
app:tabIndicatorColor="@color/summary_blue"
app:tabIndicatorHeight="5px"
app:tabMode="fixed"
app:tabSelectedTextColor="@color/c_white"
app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
app:tabTextColor="@color/c_white" />
Here I want to change ColorDrawable android:state_selected="true" color programmatically.
tabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
switch (tab.getPosition()) {
case 0:
((ColorDrawable)tabLayout.getBackground()).setColor(getResources().getColor(R.color.material_yellow400));
tabLayout.setSelectedTabIndicatorColor(getResources().getColor(R.color.color_17));
break;
case 1:
((ColorDrawable)tabLayout.getBackground()).setColor(getResources().getColor(R.color.material_pink400));
tabLayout.setSelectedTabIndicatorColor(getResources().getColor(R.color.out_pat_green));
break;
}
}
@Override
public void onTabUnselected(TabLayout.Tab tab) {
}
@Override
public void onTabReselected(TabLayout.Tab tab) {
}
});
I tried both setColor() and setColorFilter() and also setBackground()
colors tabs background-color android-tablayout colordrawable
add a comment |
I've a tab_color_selector.xml drawable, I'm using it in TabLayout.
I want to change it's selected state color on onTabSelected.
tab_color_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/medicine_green"
android:state_selected="true" />
<item android:drawable="@color/base_gray" />
</selector>
Tablayout xml:
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/c_white"
app:tabBackground="@drawable/tab_color_selector"
app:tabIndicatorColor="@color/summary_blue"
app:tabIndicatorHeight="5px"
app:tabMode="fixed"
app:tabSelectedTextColor="@color/c_white"
app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
app:tabTextColor="@color/c_white" />
Here I want to change ColorDrawable android:state_selected="true" color programmatically.
tabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
switch (tab.getPosition()) {
case 0:
((ColorDrawable)tabLayout.getBackground()).setColor(getResources().getColor(R.color.material_yellow400));
tabLayout.setSelectedTabIndicatorColor(getResources().getColor(R.color.color_17));
break;
case 1:
((ColorDrawable)tabLayout.getBackground()).setColor(getResources().getColor(R.color.material_pink400));
tabLayout.setSelectedTabIndicatorColor(getResources().getColor(R.color.out_pat_green));
break;
}
}
@Override
public void onTabUnselected(TabLayout.Tab tab) {
}
@Override
public void onTabReselected(TabLayout.Tab tab) {
}
});
I tried both setColor() and setColorFilter() and also setBackground()
colors tabs background-color android-tablayout colordrawable
I've a tab_color_selector.xml drawable, I'm using it in TabLayout.
I want to change it's selected state color on onTabSelected.
tab_color_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/medicine_green"
android:state_selected="true" />
<item android:drawable="@color/base_gray" />
</selector>
Tablayout xml:
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/c_white"
app:tabBackground="@drawable/tab_color_selector"
app:tabIndicatorColor="@color/summary_blue"
app:tabIndicatorHeight="5px"
app:tabMode="fixed"
app:tabSelectedTextColor="@color/c_white"
app:tabTextAppearance="@android:style/TextAppearance.Widget.TabWidget"
app:tabTextColor="@color/c_white" />
Here I want to change ColorDrawable android:state_selected="true" color programmatically.
tabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() {
@Override
public void onTabSelected(TabLayout.Tab tab) {
switch (tab.getPosition()) {
case 0:
((ColorDrawable)tabLayout.getBackground()).setColor(getResources().getColor(R.color.material_yellow400));
tabLayout.setSelectedTabIndicatorColor(getResources().getColor(R.color.color_17));
break;
case 1:
((ColorDrawable)tabLayout.getBackground()).setColor(getResources().getColor(R.color.material_pink400));
tabLayout.setSelectedTabIndicatorColor(getResources().getColor(R.color.out_pat_green));
break;
}
}
@Override
public void onTabUnselected(TabLayout.Tab tab) {
}
@Override
public void onTabReselected(TabLayout.Tab tab) {
}
});
I tried both setColor() and setColorFilter() and also setBackground()
colors tabs background-color android-tablayout colordrawable
colors tabs background-color android-tablayout colordrawable
edited Jan 3 at 11:30
Hamza Khan
asked Jan 3 at 11:23
Hamza KhanHamza Khan
19319
19319
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Create a style and add it as a tag in your TabLayout widget
I want to change the selected tab background color on Run Time in tabLayout.addOnTabSelectedListener callback.
– Hamza Khan
Jan 4 at 5: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%2f54021344%2fchange-colordrawable-selected-state-color-tablayout-background-color-programmat%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
Create a style and add it as a tag in your TabLayout widget
I want to change the selected tab background color on Run Time in tabLayout.addOnTabSelectedListener callback.
– Hamza Khan
Jan 4 at 5:12
add a comment |
Create a style and add it as a tag in your TabLayout widget
I want to change the selected tab background color on Run Time in tabLayout.addOnTabSelectedListener callback.
– Hamza Khan
Jan 4 at 5:12
add a comment |
Create a style and add it as a tag in your TabLayout widget
Create a style and add it as a tag in your TabLayout widget
answered Jan 3 at 14:04
MUHAMMAD HUMZA KhanMUHAMMAD HUMZA Khan
132
132
I want to change the selected tab background color on Run Time in tabLayout.addOnTabSelectedListener callback.
– Hamza Khan
Jan 4 at 5:12
add a comment |
I want to change the selected tab background color on Run Time in tabLayout.addOnTabSelectedListener callback.
– Hamza Khan
Jan 4 at 5:12
I want to change the selected tab background color on Run Time in tabLayout.addOnTabSelectedListener callback.
– Hamza Khan
Jan 4 at 5:12
I want to change the selected tab background color on Run Time in tabLayout.addOnTabSelectedListener callback.
– Hamza Khan
Jan 4 at 5: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%2f54021344%2fchange-colordrawable-selected-state-color-tablayout-background-color-programmat%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