I have spent a little while trying to research the differences between Fragment and Activities but haven't found any conclusion. this thread seems to recommend fragments Are Fragments and Fragment Activities inherently faster than Activities?
while this one Activities (for Phones) Android Fragments and Activities
I'm developing an App where the user will first be presented with a search screen, on which he will set up search details and then after clicking search, he will be shown another screen, with a list of the search results. I can't judge which solution to go with. A) should I go with activity or Fragments. I am not going to be using the actionbar on either screen.
It might be relevant to make a tablet version of the app in the future in which case I imagine fragments will be useful but B) is it a major headache to redesign from activies to using fragments instead?
C) when using fragments, can you have screen-A be your main activity and Screen-B your fragment-#1 or do you have to make both screens as a fragment with the main activity as parent.