mirror of
https://github.com/pierre42100/ComunicAndroid
synced 2024-11-27 15:59:29 +00:00
Fragments can update the title of the activity.
This commit is contained in:
parent
624c30c5cc
commit
f3a49693a2
@ -122,6 +122,13 @@ public class ConversationsListFragment extends Fragment implements AdapterView.O
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
|
||||||
|
getActivity().setTitle(R.string.fragment_conversationslist_title);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process the conversation list
|
* Process the conversation list
|
||||||
*
|
*
|
||||||
|
@ -103,6 +103,14 @@ public class FriendsListFragment extends Fragment {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
|
||||||
|
//Update the title of the application
|
||||||
|
getActivity().setTitle(R.string.fragment_friendslist_title);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onStart() {
|
public void onStart() {
|
||||||
super.onStart();
|
super.onStart();
|
||||||
|
@ -83,4 +83,12 @@ public class UserInfosFragment extends Fragment {
|
|||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
|
||||||
|
//Update the title
|
||||||
|
getActivity().setTitle(R.string.fragment_userinfos_title);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -62,4 +62,7 @@
|
|||||||
<string name="conversation_message_remove_image_popup_message">Do you want to remove selected image ?</string>
|
<string name="conversation_message_remove_image_popup_message">Do you want to remove selected image ?</string>
|
||||||
<string name="conversation_message_remove_image_popup_confirm">Yes</string>
|
<string name="conversation_message_remove_image_popup_confirm">Yes</string>
|
||||||
<string name="conversation_message_remove_image_popup_cancel">No</string>
|
<string name="conversation_message_remove_image_popup_cancel">No</string>
|
||||||
|
<string name="fragment_friendslist_title">Friends</string>
|
||||||
|
<string name="fragment_conversationslist_title">Conversations</string>
|
||||||
|
<string name="fragment_userinfos_title">About me</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
Loading…
Reference in New Issue
Block a user