Package com.adyen.threeds2.customization
Class ScreenCustomization
-
- All Implemented Interfaces:
-
java.io.Serializable
public final class ScreenCustomization extends Customization
This class provides methods for the App to pass screen customization parameters to the 3DS SDK.
Created by Ran Haveshush on 04/10/2018.
-
-
Constructor Summary
Constructors Constructor Description ScreenCustomization()
-
Method Summary
Modifier and Type Method Description StringgetStatusBarColor()voidsetStatusBarColor(String hexColorCode)Sets the color of the statue bar. StringgetBackgroundColor()voidsetBackgroundColor(String hexColorCode)Sets the background color of the challenge Activity. -
Methods inherited from class com.adyen.threeds2.customization.Customization
getTextColor, getTextFontName, getTextFontSize, parseHexColorCode, parseTypeface, setTextColor, setTextFontName, setTextFontSize -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getStatusBarColor
String getStatusBarColor()
- Returns:
The color code of the status bar.
-
setStatusBarColor
@Deprecated(message = "Deprecated in Android. Has no effect starting from Android 15.") void setStatusBarColor(String hexColorCode)
Sets the color of the statue bar.
- Parameters:
hexColorCode- The color code in Hex format.
-
getBackgroundColor
String getBackgroundColor()
- Returns:
The color code of the challenge Activity's background.
-
setBackgroundColor
void setBackgroundColor(String hexColorCode)
Sets the background color of the challenge Activity.
- Parameters:
hexColorCode- The colour code in Hex format.
-
-
-
-