Make Merge option in IMS conference call invisible after max participants being reached












-1















I am trying to grey out the merge button after the maximum participants being reached in an IMS conference call, Currently merge button visible after maximum participants reached and it will throw a toast error message of unable to conference can anyone suggest how to grey out merge option after reached maximum participants?










share|improve this question

























  • What is the maximum number of participants and do you have any way of checking how many participants there are? If you can get both numbers, then what you can do is check if they are equal and then change the button color by doing button.setBackgroundColor(Color.GREY); Then, you can restrict additional participants from merging into the call.

    – Ishaan Javali
    Nov 22 '18 at 0:14













  • grey out in the sense it should be invisible after 6 calls for 7th participant merge button should not be there

    – Ajay Bhat
    Nov 22 '18 at 0:19











  • you can do button.setVisibility(View.INVISIBLE);

    – Ishaan Javali
    Nov 22 '18 at 0:24











  • maybe better at android.stackexchange.com

    – Tilo
    Nov 22 '18 at 3:16
















-1















I am trying to grey out the merge button after the maximum participants being reached in an IMS conference call, Currently merge button visible after maximum participants reached and it will throw a toast error message of unable to conference can anyone suggest how to grey out merge option after reached maximum participants?










share|improve this question

























  • What is the maximum number of participants and do you have any way of checking how many participants there are? If you can get both numbers, then what you can do is check if they are equal and then change the button color by doing button.setBackgroundColor(Color.GREY); Then, you can restrict additional participants from merging into the call.

    – Ishaan Javali
    Nov 22 '18 at 0:14













  • grey out in the sense it should be invisible after 6 calls for 7th participant merge button should not be there

    – Ajay Bhat
    Nov 22 '18 at 0:19











  • you can do button.setVisibility(View.INVISIBLE);

    – Ishaan Javali
    Nov 22 '18 at 0:24











  • maybe better at android.stackexchange.com

    – Tilo
    Nov 22 '18 at 3:16














-1












-1








-1








I am trying to grey out the merge button after the maximum participants being reached in an IMS conference call, Currently merge button visible after maximum participants reached and it will throw a toast error message of unable to conference can anyone suggest how to grey out merge option after reached maximum participants?










share|improve this question
















I am trying to grey out the merge button after the maximum participants being reached in an IMS conference call, Currently merge button visible after maximum participants reached and it will throw a toast error message of unable to conference can anyone suggest how to grey out merge option after reached maximum participants?







android






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 22 '18 at 1:24







Ajay Bhat

















asked Nov 22 '18 at 0:04









Ajay BhatAjay Bhat

11




11













  • What is the maximum number of participants and do you have any way of checking how many participants there are? If you can get both numbers, then what you can do is check if they are equal and then change the button color by doing button.setBackgroundColor(Color.GREY); Then, you can restrict additional participants from merging into the call.

    – Ishaan Javali
    Nov 22 '18 at 0:14













  • grey out in the sense it should be invisible after 6 calls for 7th participant merge button should not be there

    – Ajay Bhat
    Nov 22 '18 at 0:19











  • you can do button.setVisibility(View.INVISIBLE);

    – Ishaan Javali
    Nov 22 '18 at 0:24











  • maybe better at android.stackexchange.com

    – Tilo
    Nov 22 '18 at 3:16



















  • What is the maximum number of participants and do you have any way of checking how many participants there are? If you can get both numbers, then what you can do is check if they are equal and then change the button color by doing button.setBackgroundColor(Color.GREY); Then, you can restrict additional participants from merging into the call.

    – Ishaan Javali
    Nov 22 '18 at 0:14













  • grey out in the sense it should be invisible after 6 calls for 7th participant merge button should not be there

    – Ajay Bhat
    Nov 22 '18 at 0:19











  • you can do button.setVisibility(View.INVISIBLE);

    – Ishaan Javali
    Nov 22 '18 at 0:24











  • maybe better at android.stackexchange.com

    – Tilo
    Nov 22 '18 at 3:16

















What is the maximum number of participants and do you have any way of checking how many participants there are? If you can get both numbers, then what you can do is check if they are equal and then change the button color by doing button.setBackgroundColor(Color.GREY); Then, you can restrict additional participants from merging into the call.

– Ishaan Javali
Nov 22 '18 at 0:14







What is the maximum number of participants and do you have any way of checking how many participants there are? If you can get both numbers, then what you can do is check if they are equal and then change the button color by doing button.setBackgroundColor(Color.GREY); Then, you can restrict additional participants from merging into the call.

– Ishaan Javali
Nov 22 '18 at 0:14















grey out in the sense it should be invisible after 6 calls for 7th participant merge button should not be there

– Ajay Bhat
Nov 22 '18 at 0:19





grey out in the sense it should be invisible after 6 calls for 7th participant merge button should not be there

– Ajay Bhat
Nov 22 '18 at 0:19













you can do button.setVisibility(View.INVISIBLE);

– Ishaan Javali
Nov 22 '18 at 0:24





you can do button.setVisibility(View.INVISIBLE);

– Ishaan Javali
Nov 22 '18 at 0:24













maybe better at android.stackexchange.com

– Tilo
Nov 22 '18 at 3:16





maybe better at android.stackexchange.com

– Tilo
Nov 22 '18 at 3:16












1 Answer
1






active

oldest

votes


















0














I'm guessing you want to disable the button as well and prevent more people from joining in the call.
Try to create a selector drawable in your resources with the button state:



<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:color="#D3D3D3" />
<item android:color="#000"/> <!--default color-->
</selector>


set that as your button background:



android:background="@drawable/the_above_drawable"


Once you hit the maximum users just disable the button:



yourButton.setEnabled(false); 





share|improve this answer
























  • Hi Nikos I have to do changes in the framework side not in android studio and for the specific operators which uses IMS for conference , operators using IMS only has this problem for other operators it is working fine

    – Ajay Bhat
    Nov 22 '18 at 0:26













  • basically its google open source code and you can check in androidxref.com/7.1.2_r36/xref/packages/services/Telephony/src/…

    – Ajay Bhat
    Nov 22 '18 at 0:29













  • but where is the merge button? Aren't you in control of the layout?

    – Nikos Hidalgo
    Nov 22 '18 at 9:39











  • we should disable it by logic

    – Ajay Bhat
    Nov 22 '18 at 16:51











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53422144%2fmake-merge-option-in-ims-conference-call-invisible-after-max-participants-being%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









0














I'm guessing you want to disable the button as well and prevent more people from joining in the call.
Try to create a selector drawable in your resources with the button state:



<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:color="#D3D3D3" />
<item android:color="#000"/> <!--default color-->
</selector>


set that as your button background:



android:background="@drawable/the_above_drawable"


Once you hit the maximum users just disable the button:



yourButton.setEnabled(false); 





share|improve this answer
























  • Hi Nikos I have to do changes in the framework side not in android studio and for the specific operators which uses IMS for conference , operators using IMS only has this problem for other operators it is working fine

    – Ajay Bhat
    Nov 22 '18 at 0:26













  • basically its google open source code and you can check in androidxref.com/7.1.2_r36/xref/packages/services/Telephony/src/…

    – Ajay Bhat
    Nov 22 '18 at 0:29













  • but where is the merge button? Aren't you in control of the layout?

    – Nikos Hidalgo
    Nov 22 '18 at 9:39











  • we should disable it by logic

    – Ajay Bhat
    Nov 22 '18 at 16:51
















0














I'm guessing you want to disable the button as well and prevent more people from joining in the call.
Try to create a selector drawable in your resources with the button state:



<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:color="#D3D3D3" />
<item android:color="#000"/> <!--default color-->
</selector>


set that as your button background:



android:background="@drawable/the_above_drawable"


Once you hit the maximum users just disable the button:



yourButton.setEnabled(false); 





share|improve this answer
























  • Hi Nikos I have to do changes in the framework side not in android studio and for the specific operators which uses IMS for conference , operators using IMS only has this problem for other operators it is working fine

    – Ajay Bhat
    Nov 22 '18 at 0:26













  • basically its google open source code and you can check in androidxref.com/7.1.2_r36/xref/packages/services/Telephony/src/…

    – Ajay Bhat
    Nov 22 '18 at 0:29













  • but where is the merge button? Aren't you in control of the layout?

    – Nikos Hidalgo
    Nov 22 '18 at 9:39











  • we should disable it by logic

    – Ajay Bhat
    Nov 22 '18 at 16:51














0












0








0







I'm guessing you want to disable the button as well and prevent more people from joining in the call.
Try to create a selector drawable in your resources with the button state:



<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:color="#D3D3D3" />
<item android:color="#000"/> <!--default color-->
</selector>


set that as your button background:



android:background="@drawable/the_above_drawable"


Once you hit the maximum users just disable the button:



yourButton.setEnabled(false); 





share|improve this answer













I'm guessing you want to disable the button as well and prevent more people from joining in the call.
Try to create a selector drawable in your resources with the button state:



<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:color="#D3D3D3" />
<item android:color="#000"/> <!--default color-->
</selector>


set that as your button background:



android:background="@drawable/the_above_drawable"


Once you hit the maximum users just disable the button:



yourButton.setEnabled(false); 






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 22 '18 at 0:22









Nikos HidalgoNikos Hidalgo

1,0751317




1,0751317













  • Hi Nikos I have to do changes in the framework side not in android studio and for the specific operators which uses IMS for conference , operators using IMS only has this problem for other operators it is working fine

    – Ajay Bhat
    Nov 22 '18 at 0:26













  • basically its google open source code and you can check in androidxref.com/7.1.2_r36/xref/packages/services/Telephony/src/…

    – Ajay Bhat
    Nov 22 '18 at 0:29













  • but where is the merge button? Aren't you in control of the layout?

    – Nikos Hidalgo
    Nov 22 '18 at 9:39











  • we should disable it by logic

    – Ajay Bhat
    Nov 22 '18 at 16:51



















  • Hi Nikos I have to do changes in the framework side not in android studio and for the specific operators which uses IMS for conference , operators using IMS only has this problem for other operators it is working fine

    – Ajay Bhat
    Nov 22 '18 at 0:26













  • basically its google open source code and you can check in androidxref.com/7.1.2_r36/xref/packages/services/Telephony/src/…

    – Ajay Bhat
    Nov 22 '18 at 0:29













  • but where is the merge button? Aren't you in control of the layout?

    – Nikos Hidalgo
    Nov 22 '18 at 9:39











  • we should disable it by logic

    – Ajay Bhat
    Nov 22 '18 at 16:51

















Hi Nikos I have to do changes in the framework side not in android studio and for the specific operators which uses IMS for conference , operators using IMS only has this problem for other operators it is working fine

– Ajay Bhat
Nov 22 '18 at 0:26







Hi Nikos I have to do changes in the framework side not in android studio and for the specific operators which uses IMS for conference , operators using IMS only has this problem for other operators it is working fine

– Ajay Bhat
Nov 22 '18 at 0:26















basically its google open source code and you can check in androidxref.com/7.1.2_r36/xref/packages/services/Telephony/src/…

– Ajay Bhat
Nov 22 '18 at 0:29







basically its google open source code and you can check in androidxref.com/7.1.2_r36/xref/packages/services/Telephony/src/…

– Ajay Bhat
Nov 22 '18 at 0:29















but where is the merge button? Aren't you in control of the layout?

– Nikos Hidalgo
Nov 22 '18 at 9:39





but where is the merge button? Aren't you in control of the layout?

– Nikos Hidalgo
Nov 22 '18 at 9:39













we should disable it by logic

– Ajay Bhat
Nov 22 '18 at 16:51





we should disable it by logic

– Ajay Bhat
Nov 22 '18 at 16:51




















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53422144%2fmake-merge-option-in-ims-conference-call-invisible-after-max-participants-being%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Setting WPF background Opacity programmatically

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith