forked from organicmaps/organicmaps
[android] Hide "Support us" button
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
parent
9b39ebfd09
commit
6f360f4a70
1 changed files with 10 additions and 1 deletions
|
@ -65,7 +65,16 @@ public class HelpFragment extends BaseMwmFragment implements View.OnClickListene
|
|||
setupItem(R.id.twitter, false, root);
|
||||
setupItem(R.id.faq, true, root);
|
||||
setupItem(R.id.report, true, root);
|
||||
setupItem(R.id.support_us, true, root);
|
||||
//noinspection ConstantConditions
|
||||
if ("google".equalsIgnoreCase(BuildConfig.FLAVOR))
|
||||
{
|
||||
TextView view = root.findViewById(R.id.support_us);
|
||||
view.setVisibility(View.GONE);
|
||||
}
|
||||
else
|
||||
{
|
||||
setupItem(R.id.support_us, true, root);
|
||||
}
|
||||
setupItem(R.id.rate, true, root);
|
||||
setupItem(R.id.copyright, false, root);
|
||||
View termOfUseView = root.findViewById(R.id.term_of_use_link);
|
||||
|
|
Loading…
Add table
Reference in a new issue