Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xabber-android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
xabber-android
Commits
84793835
Commit
84793835
authored
Feb 13, 2015
by
Grigory Fedorov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ContactList: activity's title shown when account panel off.
parent
a7b38df5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
ContactList.java
app/src/main/java/com/xabber/android/ui/ContactList.java
+2
-0
No files found.
app/src/main/java/com/xabber/android/ui/ContactList.java
View file @
84793835
...
@@ -539,9 +539,11 @@ public class ContactList extends ManagedActivity implements OnAccountChangedList
...
@@ -539,9 +539,11 @@ public class ContactList extends ManagedActivity implements OnAccountChangedList
private
void
rebuildAccountToggle
()
{
private
void
rebuildAccountToggle
()
{
accountToggleAdapter
.
rebuild
();
accountToggleAdapter
.
rebuild
();
if
(
SettingsManager
.
contactsShowPanel
()
&&
accountToggleAdapter
.
getCount
()
>
0
)
{
if
(
SettingsManager
.
contactsShowPanel
()
&&
accountToggleAdapter
.
getCount
()
>
0
)
{
getSupportActionBar
().
setDisplayShowTitleEnabled
(
false
);
actionBarView
.
setVisibility
(
View
.
VISIBLE
);
actionBarView
.
setVisibility
(
View
.
VISIBLE
);
}
else
{
}
else
{
actionBarView
.
setVisibility
(
View
.
GONE
);
actionBarView
.
setVisibility
(
View
.
GONE
);
getSupportActionBar
().
setDisplayShowTitleEnabled
(
true
);
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment