mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
Fix contacts accent display
This commit is contained in:
parent
7375ba5e7c
commit
74618f8da9
2 changed files with 2 additions and 2 deletions
|
|
@ -381,7 +381,7 @@ public class ChatActivity extends FragmentActivity implements OnClickListener, S
|
|||
}
|
||||
|
||||
public void dispayMessageList() {
|
||||
adapter = new ChatMessageAdapter(this, chatRoom.getHistory());
|
||||
adapter = new ChatMessageAdapter(this.getApplicationContext(), chatRoom.getHistory());
|
||||
messagesList.setAdapter(adapter);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ public class ApiFivePlus {
|
|||
String[] projection = new String[] { Data.CONTACT_ID, Data.DISPLAY_NAME };
|
||||
|
||||
String query = Data.DISPLAY_NAME + " IS NOT NULL AND (" + select + ")";
|
||||
Cursor cursor = cr.query(Data.CONTENT_URI, projection, query, null, Data.DISPLAY_NAME + " COLLATE NOCASE ASC");
|
||||
Cursor cursor = cr.query(Data.CONTENT_URI, projection, query, null, Data.DISPLAY_NAME + " COLLATE UNICODE ASC");
|
||||
|
||||
if (!shouldGroupBy || cursor == null) {
|
||||
return cursor;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue