Update the initialization timeline for the Godot fragment to be more consistent with the previous activity based timeline.
(cherry picked from commit 3ce7678374
)
This commit is contained in:
parent
9fb5215db5
commit
65eb5fdf1e
1 changed files with 26 additions and 16 deletions
|
@ -575,7 +575,9 @@ public class Godot extends Fragment implements SensorEventListener, IDownloaderC
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle icicle) {
|
public void onCreate(Bundle icicle) {
|
||||||
|
super.onCreate(icicle);
|
||||||
|
|
||||||
final Activity activity = getActivity();
|
final Activity activity = getActivity();
|
||||||
Window window = activity.getWindow();
|
Window window = activity.getWindow();
|
||||||
window.addFlags(WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON);
|
window.addFlags(WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON);
|
||||||
|
@ -687,24 +689,11 @@ public class Godot extends Fragment implements SensorEventListener, IDownloaderC
|
||||||
|
|
||||||
if (startResult != DownloaderClientMarshaller.NO_DOWNLOAD_REQUIRED) {
|
if (startResult != DownloaderClientMarshaller.NO_DOWNLOAD_REQUIRED) {
|
||||||
// This is where you do set up to display the download
|
// This is where you do set up to display the download
|
||||||
// progress (next step)
|
// progress (next step in onCreateView)
|
||||||
mDownloaderClientStub = DownloaderClientMarshaller.CreateStub(this,
|
mDownloaderClientStub = DownloaderClientMarshaller.CreateStub(this,
|
||||||
GodotDownloaderService.class);
|
GodotDownloaderService.class);
|
||||||
|
|
||||||
View downloadingExpansionView =
|
return;
|
||||||
inflater.inflate(R.layout.downloading_expansion, container, false);
|
|
||||||
mPB = (ProgressBar)downloadingExpansionView.findViewById(R.id.progressBar);
|
|
||||||
mStatusText = (TextView)downloadingExpansionView.findViewById(R.id.statusText);
|
|
||||||
mProgressFraction = (TextView)downloadingExpansionView.findViewById(R.id.progressAsFraction);
|
|
||||||
mProgressPercent = (TextView)downloadingExpansionView.findViewById(R.id.progressAsPercentage);
|
|
||||||
mAverageSpeed = (TextView)downloadingExpansionView.findViewById(R.id.progressAverageSpeed);
|
|
||||||
mTimeRemaining = (TextView)downloadingExpansionView.findViewById(R.id.progressTimeRemaining);
|
|
||||||
mDashboard = downloadingExpansionView.findViewById(R.id.downloaderDashboard);
|
|
||||||
mCellMessage = downloadingExpansionView.findViewById(R.id.approveCellular);
|
|
||||||
mPauseButton = (Button)downloadingExpansionView.findViewById(R.id.pauseButton);
|
|
||||||
mWiFiSettingsButton = (Button)downloadingExpansionView.findViewById(R.id.wifiSettingsButton);
|
|
||||||
|
|
||||||
return downloadingExpansionView;
|
|
||||||
}
|
}
|
||||||
} catch (NameNotFoundException e) {
|
} catch (NameNotFoundException e) {
|
||||||
// TODO Auto-generated catch block
|
// TODO Auto-generated catch block
|
||||||
|
@ -715,6 +704,27 @@ public class Godot extends Fragment implements SensorEventListener, IDownloaderC
|
||||||
mCurrentIntent = activity.getIntent();
|
mCurrentIntent = activity.getIntent();
|
||||||
|
|
||||||
initializeGodot();
|
initializeGodot();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle icicle) {
|
||||||
|
if (mDownloaderClientStub != null) {
|
||||||
|
View downloadingExpansionView =
|
||||||
|
inflater.inflate(R.layout.downloading_expansion, container, false);
|
||||||
|
mPB = (ProgressBar)downloadingExpansionView.findViewById(R.id.progressBar);
|
||||||
|
mStatusText = (TextView)downloadingExpansionView.findViewById(R.id.statusText);
|
||||||
|
mProgressFraction = (TextView)downloadingExpansionView.findViewById(R.id.progressAsFraction);
|
||||||
|
mProgressPercent = (TextView)downloadingExpansionView.findViewById(R.id.progressAsPercentage);
|
||||||
|
mAverageSpeed = (TextView)downloadingExpansionView.findViewById(R.id.progressAverageSpeed);
|
||||||
|
mTimeRemaining = (TextView)downloadingExpansionView.findViewById(R.id.progressTimeRemaining);
|
||||||
|
mDashboard = downloadingExpansionView.findViewById(R.id.downloaderDashboard);
|
||||||
|
mCellMessage = downloadingExpansionView.findViewById(R.id.approveCellular);
|
||||||
|
mPauseButton = (Button)downloadingExpansionView.findViewById(R.id.pauseButton);
|
||||||
|
mWiFiSettingsButton = (Button)downloadingExpansionView.findViewById(R.id.wifiSettingsButton);
|
||||||
|
|
||||||
|
return downloadingExpansionView;
|
||||||
|
}
|
||||||
|
|
||||||
return containerLayout;
|
return containerLayout;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue