1 /* 2 * Copyright (C) 2015 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.settings.deviceinfo; 18 19 import android.os.Bundle; 20 import android.os.storage.VolumeInfo; 21 22 import com.android.settings.R; 23 24 public class StorageWizardReady extends StorageWizardBase { 25 @Override onCreate(Bundle savedInstanceState)26 protected void onCreate(Bundle savedInstanceState) { 27 super.onCreate(savedInstanceState); 28 if (mDisk == null) { 29 finish(); 30 return; 31 } 32 setContentView(R.layout.storage_wizard_generic); 33 34 setHeaderText(R.string.storage_wizard_ready_title, mDisk.getDescription()); 35 36 // TODO: handle mixed partition cases instead of just guessing based on 37 // first volume type we encounter 38 final VolumeInfo publicVol = findFirstVolume(VolumeInfo.TYPE_PUBLIC); 39 final VolumeInfo privateVol = findFirstVolume(VolumeInfo.TYPE_PRIVATE); 40 if (publicVol != null) { 41 setIllustrationType(ILLUSTRATION_PORTABLE); 42 setBodyText(R.string.storage_wizard_ready_external_body, 43 mDisk.getDescription()); 44 } else if (privateVol != null) { 45 setIllustrationType(ILLUSTRATION_INTERNAL); 46 setBodyText(R.string.storage_wizard_ready_internal_body, 47 mDisk.getDescription()); 48 } 49 50 getNextButton().setText(R.string.done); 51 } 52 53 @Override onNavigateNext()54 public void onNavigateNext() { 55 finishAffinity(); 56 } 57 } 58