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
b0140a88
Commit
b0140a88
authored
May 29, 2015
by
Grigory Fedorov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ContactList: ContactListFragment getting fixed.
parent
b0ac3a7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
ContactList.java
app/src/main/java/com/xabber/android/ui/ContactList.java
+4
-8
No files found.
app/src/main/java/com/xabber/android/ui/ContactList.java
View file @
b0140a88
...
...
@@ -25,7 +25,6 @@ import android.graphics.Bitmap;
import
android.net.Uri
;
import
android.os.Bundle
;
import
android.os.Handler
;
import
android.support.v4.app.Fragment
;
import
android.support.v4.view.MenuItemCompat
;
import
android.support.v4.view.ViewPager
;
import
android.support.v7.app.ActionBarDrawerToggle
;
...
...
@@ -91,8 +90,6 @@ public class ContactList extends ChatIntentActivity implements OnAccountChangedL
private
static
final
int
DIALOG_CLOSE_APPLICATION_ID
=
0x57
;
private
static
final
String
CONTACT_LIST_TAG
=
"CONTACT_LIST"
;
/**
* Current action.
*/
...
...
@@ -394,8 +391,7 @@ public class ContactList extends ChatIntentActivity implements OnAccountChangedL
@Override
public
boolean
onQueryTextChange
(
String
newText
)
{
Fragment
fragmentById
=
getSupportFragmentManager
().
findFragmentById
(
R
.
id
.
container
);
((
ContactListFragment
)
fragmentById
).
getFilterableAdapter
().
getFilter
().
filter
(
newText
);
getContactListFragment
().
getFilterableAdapter
().
getFilter
().
filter
(
newText
);
return
true
;
}
});
...
...
@@ -492,7 +488,7 @@ public class ContactList extends ChatIntentActivity implements OnAccountChangedL
}
private
ContactListFragment
getContactListFragment
()
{
return
(
ContactListFragment
)
getSupportFragmentManager
().
findFragmentBy
Tag
(
CONTACT_LIST_TAG
);
return
(
ContactListFragment
)
getSupportFragmentManager
().
findFragmentBy
Id
(
R
.
id
.
container
);
}
@Override
...
...
@@ -602,7 +598,7 @@ public class ContactList extends ChatIntentActivity implements OnAccountChangedL
@Override
public
void
onAccountsChanged
(
Collection
<
String
>
accounts
)
{
((
ContactListFragment
)
getSupportFragmentManager
().
findFragmentById
(
R
.
id
.
container
)
).
onAccountsChanged
();
getContactListFragment
(
).
onAccountsChanged
();
barPainter
.
setDefaultColor
();
}
...
...
@@ -612,7 +608,7 @@ public class ContactList extends ChatIntentActivity implements OnAccountChangedL
}
private
void
rebuildAccountToggle
()
{
((
ContactListFragment
)
getSupportFragmentManager
().
findFragmentById
(
R
.
id
.
container
)
).
rebuild
();
getContactListFragment
(
).
rebuild
();
}
@Override
...
...
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