Home
last modified time | relevance | path

Searched refs:WallpaperSuggestionActivity (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/wallpaper/
DWallpaperSuggestionActivityTest.java82 assertThat(WallpaperSuggestionActivity.isSuggestionComplete(mContext)).isTrue(); in wallpaperServiceEnabled_no_shouldReturnTrue()
90 assertThat(WallpaperSuggestionActivity.isSuggestionComplete(RuntimeEnvironment.application)) in hasWallpaperSet_no_shouldReturnFalse()
99 assertThat(WallpaperSuggestionActivity.isSuggestionComplete(RuntimeEnvironment.application)) in hasWallpaperSet_yes_shouldReturnTrue()
105 WallpaperSuggestionActivity activity = in addExtras_intentFromSetupWizard_extrasHasWallpaperOnlyAndLaunchedSuw()
106 Robolectric.buildActivity(WallpaperSuggestionActivity.class, new Intent( in addExtras_intentFromSetupWizard_extrasHasWallpaperOnlyAndLaunchedSuw()
122 WallpaperSuggestionActivity activity = Robolectric.buildActivity( in addExtras_intentNotFromSetupWizard_extrasHasFocusWallpaper()
123 WallpaperSuggestionActivity.class, new Intent(Intent.ACTION_MAIN).setComponent( in addExtras_intentNotFromSetupWizard_extrasHasFocusWallpaper()
/packages/apps/Settings/src/com/android/settings/dashboard/suggestions/
DSuggestionFeatureProviderImpl.java36 import com.android.settings.wallpaper.WallpaperSuggestionActivity;
65 if (className.equals(WallpaperSuggestionActivity.class.getName())) { in isSuggestionComplete()
66 return WallpaperSuggestionActivity.isSuggestionComplete(context); in isSuggestionComplete()
/packages/apps/Settings/tests/robotests/src/com/android/settings/suggestions/
DSettingsSuggestionsTest.java33 import com.android.settings.wallpaper.WallpaperSuggestionActivity;
47 WallpaperSuggestionActivity.class.getName(), in wallpaperSuggestion_isValid()
/packages/apps/Settings/src/com/android/settings/wallpaper/
DWallpaperSuggestionActivity.java39 public class WallpaperSuggestionActivity extends StyleSuggestionActivityBase implements Indexable { class