0
I am developing a chat. I have a Mainactivity in which I invoke a Fragment (which extend baseAdapter), where I list all contacts in a listview. By clicking on a contact, I want to open a new fragment that will represent the sms sending/receiving window.
My problem is to invoke the second Fragment (within onClickListener), is it possible/correct to invoke a Fragment already inside a Fragment? if yes, how can I get around this situation?
Activity should manage Fragments. The Fragment that has the contact list should inform Activity that another Fragment should be opened. Look at this reply.
– ramaral