Fix setSplashScreenTheme documentation

Test: N/A
Fixes: 186611969

Change-Id: I192aac4422ffcd8a2eafec2b7cd0325360dfb7e8
This commit is contained in:
Vadim Caen
2021-11-25 18:18:19 +00:00
parent 6dcb9e28be
commit 4df0a65468

View File

@@ -93,8 +93,12 @@ public interface SplashScreen {
* <p>
* To reset to the default theme, set this the themeId to {@link Resources#ID_NULL}.
* <p>
* <b>Note:</b> The theme name must be stable across versions, otherwise it won't be found
* after your application is updated.
* <b>Note:</b> Internally, the theme name is resolved and persisted. This means that the theme
* name must be stable across versions, otherwise it won't be found after your application is
* updated.
*
* @param themeId The ID of the splashscreen theme to be used in place of the one defined in
* the manifest.
*/
void setSplashScreenTheme(@StyleRes int themeId);