Title fixing.

master
Tomasz Półgrabia 2016-09-17 11:26:42 +02:00
parent fdb62e6fca
commit 1f022a048e
3 changed files with 2 additions and 2 deletions

View File

@ -199,13 +199,11 @@ public class MainActivity extends ActionBarActivity {
switch (currentFragmentId) { switch (currentFragmentId) {
case HOME_FRAGMENT_ID: case HOME_FRAGMENT_ID:
// switch to home fragment // switch to home fragment
setTitle("Panoramio search");
Log.d(CLASS_TAG, "Switching to home fragment"); Log.d(CLASS_TAG, "Switching to home fragment");
final HomeFragment fragment = new HomeFragment(); final HomeFragment fragment = new HomeFragment();
switchFragment(fragment, HomeFragment.TAG); switchFragment(fragment, HomeFragment.TAG);
break; break;
case WIKI_FRAGMENT_ID: case WIKI_FRAGMENT_ID:
setTitle("Wiki search");
// switch to wiki fragment // switch to wiki fragment
Log.d(CLASS_TAG, "Switching to wiki fragment"); Log.d(CLASS_TAG, "Switching to wiki fragment");
switchFragment(new WikiLocationsFragment(), WikiLocationsFragment.TAG); switchFragment(new WikiLocationsFragment(), WikiLocationsFragment.TAG);

View File

@ -324,6 +324,7 @@ public class HomeFragment extends Fragment {
@Override @Override
public void onResume() { public void onResume() {
super.onResume(); super.onResume();
getActivity().setTitle("Panoramio search");
Log.v(CLASS_TAG, "onResume"); Log.v(CLASS_TAG, "onResume");
updateLocationInfo(); updateLocationInfo();
} }

View File

@ -144,6 +144,7 @@ public class WikiLocationsFragment extends Fragment {
@Override @Override
public void onResume() { public void onResume() {
super.onResume(); super.onResume();
getActivity().setTitle("Wiki search");
updateLocationInfo(); updateLocationInfo();
fetchWikiLocations(); fetchWikiLocations();
} }