(Bundle savedInstanceState)
| 128 | } |
| 129 | |
| 130 | @Override |
| 131 | public void onTaskDone(Bundle savedInstanceState) { |
| 132 | initTouchListener(); |
| 133 | initDrawerControls(); |
| 134 | if (findViewById(R.id.fragment_detail_container) != null) { |
| 135 | findViewById(R.id.fragment_detail_container).setVisibility( |
| 136 | View.GONE); |
| 137 | mTwoPane = true; |
| 138 | } |
| 139 | if (savedInstanceState != null) { |
| 140 | mDrawerItemSelectedPosition = savedInstanceState |
| 141 | .getInt("current_drawer_item"); |
| 142 | if (OdooAccountManager.isAnyUser(mContext)) { |
| 143 | setDrawerItems(); |
| 144 | initDrawerListeners(); |
| 145 | } |
| 146 | return; |
| 147 | } |
| 148 | init(); |
| 149 | } |
| 150 | |
| 151 | private void checkForRateApplication() { |
| 152 | OEAppRater.app_launched(this); |
no test coverage detected