Skip to content
Snippets Groups Projects
Commit 4d20c813 authored by Alexandre Lision's avatar Alexandre Lision
Browse files

refresh screen titles properly

parent f02190dd
No related branches found
No related tags found
No related merge requests found
......@@ -102,9 +102,6 @@ public class HomeActivity extends Activity implements DialingFragment.Callbacks,
private boolean mBound = false;
private ISipService service;
private CharSequence mDrawerTitle;
private CharSequence mTitle;
public static final int REQUEST_CODE_PREFERENCES = 1;
private static final int REQUEST_CODE_CALL = 2;
......@@ -187,7 +184,6 @@ public class HomeActivity extends Activity implements DialingFragment.Callbacks,
}
});
mTitle = mDrawerTitle = getTitle();
mNavigationDrawer = (DrawerLayout) findViewById(R.id.drawer_layout);
// set a custom shadow that overlays the main content when the drawer opens
......@@ -204,13 +200,12 @@ public class HomeActivity extends Activity implements DialingFragment.Callbacks,
) {
@Override
public void onDrawerClosed(View view) {
getActionBar().setTitle(mTitle);
invalidateOptionsMenu(); // creates call to onPrepareOptionsMenu()
}
@Override
public void onDrawerOpened(View drawerView) {
getActionBar().setTitle(mDrawerTitle);
// getActionBar().setTitle(mDrawerTitle);
invalidateOptionsMenu(); // creates call to onPrepareOptionsMenu()
}
};
......
......@@ -146,7 +146,8 @@ public class AccountsManagementFragment extends ListFragment implements LoaderCa
accountReceiver = new AccountsReceiver(this);
mShortAnimationDuration = getResources().getInteger(android.R.integer.config_shortAnimTime);
Log.i(TAG,"anim time: "+ mShortAnimationDuration);
Log.i(TAG, "anim time: " + mShortAnimationDuration);
getActivity().getActionBar().setTitle(R.string.menu_item_accounts);
}
......@@ -188,7 +189,6 @@ public class AccountsManagementFragment extends ListFragment implements LoaderCa
}
});
mLoadingView = view.findViewById(R.id.loading_spinner);
}
......@@ -225,7 +225,7 @@ public class AccountsManagementFragment extends ListFragment implements LoaderCa
mAccountsAdapter.addAll(tmp);
mIP2IPAdapter.removeAll();
mIP2IPAdapter.insert(ip2ip, 0);
if(mAccountsAdapter.isEmpty()){
if (mAccountsAdapter.isEmpty()) {
mDnDListView.setEmptyView(getView().findViewById(R.id.empty_account_list));
}
crossfade();
......@@ -402,7 +402,7 @@ public class AccountsManagementFragment extends ListFragment implements LoaderCa
String id = accountState.getStringExtra("Account");
String newState = accountState.getStringExtra("state");
Log.i(TAG, "updateAccount:"+newState);
Log.i(TAG, "updateAccount:" + newState);
for (Account a : accounts) {
if (a.getAccountID().contentEquals(id)) {
a.setRegistered_state(newState);
......
......@@ -35,8 +35,11 @@ public class HomeFragment extends Fragment {
@Override
public void onCreate(Bundle savedBundle){
super.onCreate(savedBundle);
mSectionsPagerAdapter = new SectionsPagerAdapter(getActivity(), getFragmentManager());
//FIXME : getFragmentManager does not handle nested fragments, pages are not saved!
mSectionsPagerAdapter = new SectionsPagerAdapter(getActivity(), getFragmentManager());
getActivity().getActionBar().setTitle(R.string.menu_item_home);
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment