summaryrefslogtreecommitdiffstats
path: root/res/layout-xlarge
Commit message (Collapse)AuthorAgeFilesLines
...
* UI refreshDaisuke Miyakawa2010-10-191-19/+38
| | | | | Bug: 3110575 Change-Id: Ia6ffef6de8882920b89372052b5e29968bedfe5f
* Disable buttons during first scan.Daisuke Miyakawa2010-10-061-9/+12
| | | | | | | Also remove status manager code, as they should not be here. Bug: 3069020 Change-Id: I6fcf8470066f96b7f608ceb519b0783e44307846
* Disable Auto-timezone in SetupWizardDaisuke Miyakawa2010-10-011-2/+3
| | | | | | | Also remove status bar code, as we shouldn't touch it here. Bug: 3008295 Change-Id: I1ae3f118eae2cacd135d3ec61f1c27993fe2e166
* keep screen on in setup wizard datetime and wifi settings activitiesFreeman Ng2010-09-302-0/+2
| | | | | | bug: 3052067 Change-Id: I5378a5f9afd90e6aaadb25e0284188c25dce6b2a
* Modify title color.Daisuke Miyakawa2010-09-241-1/+1
| | | | Change-Id: I3b0ab29ec33aadc5940ed2d8aa54dfffea2d55e6
* Modify implementation around SetupWizard XLDaisuke Miyakawa2010-09-241-16/+17
| | | | | Bug: 3005211 Change-Id: Ia01957725956d570370aceeab01750d77069001a
* Modify layout for DateTimeSettings for SetupWizardDaisuke Miyakawa2010-09-161-73/+86
| | | | Change-Id: I58abf66746f6bbebb19e9a67cd6d4678e3c9a424
* Implement DateTimeSetings for Setup Wizard XL.Daisuke Miyakawa2010-09-091-0/+133
| | | | | | | | | | Make the orientation "behind", as XL would require landscape. TODO: - Automatic Time Zone should be available. - Layout is immature: need to have better theme and layout xml. Change-Id: Iafe141223a227643ca774f4df5e5b7fde9520d31
* Add modifications which should have been in the changeDaisuke Miyakawa2010-09-011-128/+111
| | | | | | I520d690d3301837d32f91dad54a973a379ce1989 Change-Id: Iecca6b4fef2ec42a62273035b096ccedcea94d78
* Add Wifi Setup screen for Setup Wizard with XL size screen.Daisuke Miyakawa2010-09-012-0/+178
| | | | | | | | | | | | | | | | | | | | | | | | | * Add WifiSettingsForSetupWizardXL as a new Activity The activity has WifiSettings fragment in it. It also contains several buttons, texts around the fragment. * Making configuration UI part of Preference list. In Wifi Setup for Setup Wizard XL, WifiSettings fragment lets a UI for configuring access points shown inside a PregerenceCategory object, while it has been shown as Dialog. To achieve this action, WifiDialog is decomposed into two parts: - WifiConfigUiBase (Mainly UI part) - WifiConfigController (Mainly Wifi controller part) All codes for wifi configuration in WifiDialog is now in WifiConfigController, which is reused from WifiConfigPreference. * Misc stuff - Remove AccessPoint#compareTo(). Instead, AccessPoint.AccessPointComparater should be used when needed. Change-Id: I520d690d3301837d32f91dad54a973a379ce1989
* Refactor settings top level activities to use fragments.Amith Yamasani2010-08-181-0/+33
Added a base class SettingsPreferenceFragment from which the settings activities should be derived so that they can behave like fragments. It contains some commonly called utility methods and dialog conversion to DialogFragment. Some of the top-level activities can be launched directly without the left pane. Settings.java acts as a proxy activity that contains just that settings fragment without the left pane. There are still a lot of second and third level activities that need to be fragmentized. This is just the first pass to test the 2-pane layout.