Fan Zhang
6b88c9c1b7
Use public API to launch search UI.
...
Test: manual
Change-Id: I5527dd6de5990aed365b6e78a9492ced00b99565
2018-10-18 16:26:59 -07:00
Fan Zhang
3181e1aceb
Change search fab to search bar.
...
- Remove search fab from layout xml
- Change RelativeLayout to CoordinatorLayout so we can use prebuilt
scrolling behavior
- Minor update to theme so search bar background works in dark mode for
the homepage activity.
Change-Id: If7408c12684be65137e04ae3bb4137204c2d77e0
Fixes: 117508596
Test: robotests, visual
2018-10-10 16:29:22 -07:00
TreeHugger Robot
95d2822734
Merge "Remove DeviceIndex feature/service."
2018-10-08 22:11:24 +00:00
Fan Zhang
6632529ba1
Remove DeviceIndex feature/service.
...
Change-Id: I8444101669aef013183842c2d13cf3960c756398
Fixes: 112587202
Test: rerun all tests
2018-10-08 13:47:07 -07:00
Fan Zhang
b5835a729a
Log open search action in metrics.
...
Change-Id: I80ab40d0767a9e6e561690f31bd092b384095b6e
Fixes: 117341899
Test: robotests
2018-10-08 12:22:50 -07:00
Fan Zhang
6acbc9337e
Move search resources to settingslib-search
...
Bug: 113128828
Test: manual
Change-Id: I2c513dd22e84d5f86bd282e10d0b0df19f9ce407
2018-09-28 16:38:23 -07:00
Fan Zhang
d9e1871fde
Don't persist device index job across reboot
...
Change-Id: I9bd25c7f266dded730918ec517e842c2b6ee9b1a
Fixes: 115930605
Test: manual
2018-09-19 16:08:56 -07:00
Raff Tsai
43a7b18f21
Modify Settings homepage layout
...
- Add BottomNavigationView which has two tabs
- Remove BottomSheet in layout files
Change-Id: I493290fa9dee0566c73c5c9d7fbba10b71b4e2b4
Fixes: 113266753
Test: visual
2018-09-05 11:55:16 +08:00
Raff Tsai
4778a9afbd
Close searchActivity doesn't go back to previous activity
...
When requestCode is 0, we will not finish activity.
Change-Id: Ib630951739031b05c83efe189875a4a41c8e51ec
Fixes: 113372155
Test: make RunSettingsRoboTests ROBOTEST_FILTER="com.android.settings.password"
2018-08-29 23:31:42 +08:00
Fan Zhang
c21f4a512a
Merge "Sort imports"
2018-08-29 00:19:53 +00:00
Fan Zhang
23f8d59d02
Sort imports
...
Having consistent import order will reduce chance of merge
conflict between internal and external master
Test: rebuild
Change-Id: I0b1a170967ddcce7f388603fd521f6ed1eeba30b
2018-08-28 22:13:15 +00:00
Fan Zhang
44a12fc5ee
Turn down app indexing for slices.
...
Bug: 112587202
Test: robotests
Change-Id: Ice84173bd9617f58689438c460522104776c46ce
2018-08-28 13:43:08 -07:00
TreeHugger Robot
3df19f92b0
Merge "Fix indexing after slices api changes"
2018-08-17 19:15:23 +00:00
Fan Zhang
a79c377fbc
Declare "searchable" attribute for preferences.
...
Now we can easily mark a preference nonIndexable in xml instead of
adding key into searchIndexProvider.
Bug: 112608186
Test: robotests
Change-Id: I0ff16d44bb7b6ad148d3d35f09ca0da0163f73f4
2018-08-16 09:06:39 -07:00
Mady Mellor
ef724a9f87
Fix indexing after slices api changes
...
Test: make -j40 RunSettingsGoogleRoboTests
make -j40 RunSettingsRoboTests ROBOTEST_FILTER="Slice"
Change-Id: Ib599a8c814942a80d7b60fc3b40b284ce2b55775
2018-08-15 22:30:56 +00:00
Fan Zhang
60243e6873
Remove custom tintable check.
...
Make a bunch keys private in tile and DashboardCategory
Bug: 77600770
Test: robotests
Change-Id: I4693e6bb71bd50cc664f578c7f8e25e67da20b67
2018-08-03 16:38:36 -07:00
Doris Ling
882bef3962
Disable changing lock when device is not provisioned.
...
When the device is not yet provisioned and settings is launched:
- disable the entry point for changing device lock
- remove the search panel from settings home page
- remove the search menu
Bug: 110034419
Test: make RunSettingsRoboTests
Change-Id: Ieb7eb0e8699229ec0824ccc19d7b958ac44965a2
2018-08-01 10:18:01 -07:00
Fan Zhang
176ccd0c35
Clean up: fix incorrect @VisibleForTesting imports
...
Test: rebuild and robotests
Change-Id: I33d7ee1c0622c01f592920baaf01d44ad19d9a13
2018-07-13 13:08:53 -07:00
tmfang
27c84de325
Settings Fragment Migration (Build pass app)
...
This patch focused on fixing compile errors and some runtime errors.
Test: We can't test it now. But we will have an integration test later.
Bug: 110259478
Change-Id: I16c471ddcd0fa1460c665b7f74d86fcace5ee67b
2018-07-11 18:24:51 -07:00
tmfang
99cc23d0da
Settings Fragment Migration (Change imports)
...
This commit *only* changes imports and optimize imports.
We don't do anything else.
This patch can't compile pass and run test case.
We will update other patches to fix these problem.
Change list.
1. import android.app.Fragment; ->
import androidx.fragment.app.Fragment;
2. import android.app.DialogFragment; ->
import androidx.fragment.app.DialogFragment;
3. import android.app.ListFragment; ->
import androidx.fragment.app.ListFragment;
4. import android.app.LoaderManager; ->
import androidx.loader.app.LoaderManager;
5. import android.content.AsyncTaskLoader; ->
import androidx.loader.content.AsyncTaskLoader;
6. import android.content.Loader; ->
import androidx.loader.content.Loader;
7. import android.app.FragmentTransaction; ->
import androidx.fragment.app.FragmentTransaction;
8. import android.app.FragmentManager; ->
import androidx.fragment.app.FragmentManager;
9. import android.app.LoaderManager.LoaderCallbacks; ->
import androidx.loader.app.LoaderManager.LoaderCallbacks;
Bug: 110259478
Test: Can't test it.
Change-Id: I0a3f98fff34a3494a839c3c42aeabcec3df2c8b3
2018-07-11 18:23:51 -07:00
Fan Zhang
7431c91de6
Remove search indexing pipeline from Settings
...
Index is already handled by SettingsIntelligenec. No longer needed in
Settings.
Change-Id: Id43fb3100dc2759185744441cff8cb9cd2d2da20
Fixes: 69808376
Test: robotests
2018-06-21 09:38:36 -07:00
Fan Zhang
a5f68f9c3c
Keep methods from SearchIndexProvider
...
Bug: 110403709
Test: rebuild
Change-Id: Iae39d0a50337c60f732fa54c61f4ff5982fcbd8e
2018-06-20 15:34:43 -07:00
Fan Zhang
c7162cd24d
Reorder and clean up imports.
...
Test: rebuild
Change-Id: I178485c84ae7146f991fd77b6d7504b029942a68
2018-06-18 15:45:09 -07:00
Fan Zhang
74ba1a51d7
Skip device index job if caller is not Settings app.
...
Change-Id: I96184f111e83477b46ddf321ec74917bab330048
Fixes: 80437512
Test: robotests
2018-05-30 10:38:58 -07:00
Fan Zhang
0b5f345e87
Merge "Fix a bug where device index is not skipped correct." into pi-dev am: 75b3e6f302
...
am: 9bc1f54268
Change-Id: Id2979eaf1f08bd2c67bd6bba31a62eb5d0acf8e2
2018-05-29 12:53:47 -07:00
TreeHugger Robot
75b3e6f302
Merge "Fix a bug where device index is not skipped correct." into pi-dev
2018-05-29 18:48:24 +00:00
Fan Zhang
548485336f
Fix a bug where device index is not skipped correct.
...
When checking language/build fingerprint to skip reindex, language check
was comparing Locale object and String object, so they would never be
equal, so we accidentally reindex every time.
- Switched Objects.equal to TextUtils.equal, this catches the error at
compiler level.
Bug: 80065409
Test: compile/robotest
Change-Id: I2b3c68bb1c2fd876338f42321605567d7e64d64b
2018-05-25 16:25:14 -07:00
Jason Monk
7c3c3b1154
Merge "Follow SliceManager API changes" into pi-dev am: d68ed5c92c
...
am: 667d662d85
Change-Id: I42f6774aed0638e9c6574c0f5332c3c235ac07f2
2018-05-24 23:51:44 -07:00
Matthew Fritze
e656ffd83c
Merge "Clear indexing before adding all Slices" into pi-dev am: 842ea91baa
...
am: 6f8bfd5fec
Change-Id: I4a56f4af28b980480c17b4de918b3aeb052f40e5
2018-05-23 16:02:00 -07:00
Jason Monk
20495a8c36
Follow SliceManager API changes
...
Test: make
Bug: 78898947
Change-Id: I5a46ccafe36ad2e0fdac745606d9907f07a86d0c
2018-05-23 17:09:03 -04:00
Matthew Fritze
4b26969839
Clear indexing before adding all Slices
...
Before we index, add a call to clear indexed data before
indexing again. It's an optional call.
Fixes: 80065409
Test: robotests
Change-Id: Iddb0ce02c50d84b51fbf6fc2be0bdc9aa1f5987a
2018-05-22 20:02:20 -07:00
Fan Zhang
fc6ce6de32
Merge "Do not perform device index before device provision." into pi-dev am: 1fe4512596
...
am: 8a8b58d381
Change-Id: Ie111e38c79735090a0cedae253d97d638f974209
2018-05-17 12:56:44 -07:00
Fan Zhang
4b04ba5903
Do not perform device index before device provision.
...
Bug: 79841744
Test: robotests
Change-Id: I74243b6f31364220156e91fe63b56138a0240714
2018-05-16 13:26:24 -07:00
Jeff Gaston
72f57a7c99
Merge "Update for support library prebuilt drop" into pi-dev
2018-05-15 16:37:55 +00:00
Jeff Gaston
3e76e17c15
Update for support library prebuilt drop
...
Bug: 79267345
Test: m -j checkbuild
Change-Id: I086a2253a1c94af6f7c4dca04d2644a4f9e54ef5
2018-05-15 11:21:26 -04:00
Jason Monk
70fd54b770
Merge "Delay index job a little bit" into pi-dev am: 5530329da2
...
am: 2d462ea467
Change-Id: I40bd038c46ed428096d8b6e17ba0326d2e98c827
2018-05-15 06:25:26 -07:00
TreeHugger Robot
5530329da2
Merge "Delay index job a little bit" into pi-dev
2018-05-15 13:18:42 +00:00
Jeff Gaston
45bb1257de
Merge "Update for support library prebuilt drop"
2018-05-14 19:32:28 +00:00
Jason Monk
d68a164747
Merge "Protect against multiple starts of device index job" into pi-dev am: 15700cb779
...
am: 679ad8e041
Change-Id: Ie7e29bc63d5f1f2f57d6a55225e14faf85d64b18
2018-05-14 11:48:31 -07:00
Jason Monk
ee3142cc87
Delay index job a little bit
...
Make sure it doesn't cause jank while launching settings.
Test: existing
Change-Id: I410315469319b2156495f2d8b296fc164c475cb9
Fixes: 78787416
2018-05-14 14:40:01 -04:00
Jason Monk
2e76a9ba54
Protect against multiple starts of device index job
...
Its rare, but can happen.
Test: existing tests pass
Change-Id: Ie7aaa47902741d5f7fdd954f35e8f13e9466e07c
Fixes: 78898947
2018-05-14 11:14:19 -04:00
Jeff Gaston
7f09e00df3
Update for support library prebuilt drop
...
Bug: 79267345
Test: m -j checkbuild
Change-Id: I086a2253a1c94af6f7c4dca04d2644a4f9e54ef5
2018-05-11 10:42:55 -04:00
Fan Zhang
93d3b5174d
Fix a strict mode violation in SystemUpdatePrefController
...
Change-Id: I4770b878b6f69318f08f8974c5c4d2690c5611d4
Bug: 78626509
Test: robotests
2018-05-11 03:45:48 +00:00
Fan Zhang
4ca363470b
Fix a strict mode violation in SystemUpdatePrefController
...
Change-Id: I4770b878b6f69318f08f8974c5c4d2690c5611d4
Merged-In: I4770b878b6f69318f08f8974c5c4d2690c5611d4
Fixes: 78626509
Test: robotests
2018-05-11 00:32:01 +00:00
Fan Zhang
4979f434fc
Merge "Fix a typo in AndroidManifest.xml" into pi-dev am: 3a9fbac582
...
am: e50f5effa0
Change-Id: I68689c03344b1987b905b32f95f91d82b5a9e129
2018-05-10 11:32:23 -07:00
Fan Zhang
66156d68e7
Fix a typo in AndroidManifest.xml
...
And some drive-by clean up.
Change-Id: Ic036f8f5bec8064a5d55e0e032ce45e483323b14
Fixes: 78889604
Test: atest
2018-05-09 18:06:27 -07:00
hjchangliao
e86eec0c07
Rename SubSettingLauncher.setTitle, add java doc
...
For make this method usage more clear,
setTitle(charSequence) rename as setTitleText,
add java doc: it is only for user generated string
setTitle(int) rename as setTitleRes.
Change-Id: I972cb6a8ff90873dfdc25c23f6dc3d68103c8e4e
Fixes: 78347436
Test: make RunSettingsRoboTests
2018-05-09 10:00:05 +08:00
Julia Reynolds
cb6fe394d0
DO NOT MERGE DND settings redesign
...
Test: robotests
Change-Id: I7b980218feea28e945994c8b7f8a934df6bc11f9
Bug: 78447976
2018-05-04 14:45:43 -04:00
Julia Reynolds
ea360d687d
Merge "Redesign zen visual effects screens" into pi-dev
2018-04-27 12:41:58 +00:00
Julia Reynolds
4cf8bfd5b2
Redesign zen visual effects screens
...
Test: robotests
Bug: 78448988
Change-Id: I3040c1103d76c75601e82e3660a2ace202837ec2
Merged-In: I3040c1103d76c75601e82e3660a2ace202837ec2
2018-04-27 11:12:34 +00:00