1 /* 2 * Copyright (C) 2007 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; 18 19 import android.app.ActivityManagerNative; 20 import android.app.IActivityManager; 21 import android.app.ListActivity; 22 import android.content.res.Configuration; 23 import android.os.Bundle; 24 import android.os.RemoteException; 25 import android.os.SystemProperties; 26 import android.util.Log; 27 import android.view.View; 28 import android.widget.ArrayAdapter; 29 import android.widget.ListView; 30 31 import java.io.BufferedWriter; 32 import java.io.FileOutputStream; 33 import java.util.Arrays; 34 import java.util.Locale; 35 36 public class LocalePickerInSetupWizard extends LocalePicker { 37 38 @Override 39 int getContentView() { 40 return R.layout.locale_picker_in_setupwizard; 41 } 42 43 } 44