Move date/time prefs to PreferenceController and add tests.

Bug: 32996243
Test: RunSettingsRoboTests
Change-Id: Ie537bbcc35a96a63251e46f84b57c0a861b9d013
This commit is contained in:
Fan Zhang
2016-11-18 11:10:05 -08:00
parent 9a35bc6552
commit beddff82b0
17 changed files with 1155 additions and 263 deletions

View File

@@ -19,6 +19,8 @@ package com.android.settings.datetime;
import android.content.Context;
public interface UpdateTimeAndDateCallback {
// Minimum time is Nov 5, 2007, 0:00.
long MIN_DATE = 1194220800000L;
void updateTimeAndDateDisplay(Context context);
}