Title fixing.
parent
fdb62e6fca
commit
1f022a048e
|
@ -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);
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue