mirror of
https://github.com/pierre42100/ComunicAndroid
synced 2025-07-06 10:02:54 +00:00
Can create private conversations from friends list
This commit is contained in:
17
app/src/main/res/layout/dialog_loading.xml
Normal file
17
app/src/main/res/layout/dialog_loading.xml
Normal file
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="horizontal" android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<ProgressBar
|
||||
android:layout_gravity="center"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
<TextView
|
||||
android:layout_gravity="center"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/dialog_loading_msg"/>
|
||||
|
||||
</LinearLayout>
|
@ -1,6 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<!-- Start private conversation -->
|
||||
<item
|
||||
android:id="@+id/menu_fragment_friendslist_private_conversation"
|
||||
android:title="@string/action_friends_start_private_conversation" />
|
||||
|
||||
<!-- Delete the friend -->
|
||||
<item
|
||||
android:id="@+id/menu_fragment_friendslist_delete_friend"
|
||||
|
@ -92,4 +92,7 @@
|
||||
<string name="fragment_update_conversation_members_menu_delete">Remove</string>
|
||||
<string name="err_get_conversation_info">Could not get information about the conversation !</string>
|
||||
<string name="err_conversation_update">Could not update conversation !</string>
|
||||
<string name="action_friends_start_private_conversation">Private conversation</string>
|
||||
<string name="err_get_private_conversation">Could not get a private conversation !</string>
|
||||
<string name="dialog_loading_msg">Loading…</string>
|
||||
</resources>
|
||||
|
Reference in New Issue
Block a user