diff --git a/app/src/main/java/com/verygoodsecurity/demoapp/collect_activity/CollectActivity.kt b/app/src/main/java/com/verygoodsecurity/demoapp/collect_activity/CollectActivity.kt index 1ae1b8be2..398707225 100644 --- a/app/src/main/java/com/verygoodsecurity/demoapp/collect_activity/CollectActivity.kt +++ b/app/src/main/java/com/verygoodsecurity/demoapp/collect_activity/CollectActivity.kt @@ -93,7 +93,7 @@ class CollectActivity : AppCompatActivity(), VgsCollectResponseListener, } override fun onOptionsItemSelected(item: MenuItem): Boolean = when (item.itemId) { - R.id.scan_card -> true.also { scan() } // TODO: @Endorf, check this line, what you think? + R.id.scan_card -> true.also { scan() } else -> super.onOptionsItemSelected(item) } diff --git a/docs/images/homepage.svg b/docs/images/homepage.svg new file mode 100644 index 000000000..e3c83b1ce --- /dev/null +++ b/docs/images/homepage.svg @@ -0,0 +1,3 @@ + + + diff --git a/docs/scripts/platform-content-handler.js b/docs/scripts/platform-content-handler.js index 8c4ca5383..811c47888 100644 --- a/docs/scripts/platform-content-handler.js +++ b/docs/scripts/platform-content-handler.js @@ -18,8 +18,6 @@ const samplesLightThemeName = 'idea' window.addEventListener('load', () => { document.querySelectorAll("div[data-platform-hinted]") .forEach(elem => elem.addEventListener('click', (event) => togglePlatformDependent(event, elem))) - document.querySelectorAll("div[tabs-section]") - .forEach(elem => elem.addEventListener('click', (event) => toggleSectionsEventHandler(event))) const filterSection = document.getElementById('filter-section') if (filterSection) { filterSection.addEventListener('click', (event) => filterButtonHandler(event)) @@ -177,19 +175,30 @@ function handleAnchor() { } function initTabs() { - document.querySelectorAll("div[tabs-section]") - .forEach(element => { - showCorrespondingTabBody(element) - element.addEventListener('click', (event) => toggleSectionsEventHandler(event)) - }) - let cached = localStorage.getItem("active-tab") - if (cached) { - let parsed = JSON.parse(cached) - let tab = document.querySelector('div[tabs-section] > button[data-togglable="' + parsed + '"]') - if (tab) { - toggleSections(tab) - } - } + // we could have only a single type of data - classlike or package + const mainContent = document.querySelector('.main-content'); + const type = mainContent ? mainContent.getAttribute("data-page-type") : null; + const localStorageKey = "active-tab-" + type; + document.querySelectorAll('div[tabs-section]').forEach(element => { + showCorrespondingTabBody(element); + element.addEventListener('click', ({target}) => { + const togglable = target ? target.getAttribute("data-togglable") : null; + if (!togglable) return; + + localStorage.setItem(localStorageKey, JSON.stringify(togglable)); + toggleSections(target); + }); + }); + + const cached = localStorage.getItem(localStorageKey); + if (!cached) return; + + const tab = document.querySelector( + 'div[tabs-section] > button[data-togglable="' + JSON.parse(cached) + '"]' + ); + if (!tab) return; + + toggleSections(tab); } function showCorrespondingTabBody(element) { @@ -293,12 +302,6 @@ function toggleSections(target) { activateTabsBody("tabs-section-body") } -function toggleSectionsEventHandler(evt) { - if (!evt.target.getAttribute("data-togglable")) return - localStorage.setItem('active-tab', JSON.stringify(evt.target.getAttribute("data-togglable"))) - toggleSections(evt.target) -} - function togglePlatformDependent(e, container) { let target = e.target if (target.tagName != 'BUTTON') return; diff --git a/docs/styles/main.css b/docs/styles/main.css index ebe1ce12f..5f7781ec8 100644 --- a/docs/styles/main.css +++ b/docs/styles/main.css @@ -1,6 +1,6 @@ /*! * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. - */#pages-search{cursor:pointer;border:none;border-radius:50%;background:transparent;fill:#fff;fill:var(--dark-mode-and-search-icon-color)}#pages-search:focus{outline:none}#pages-search:hover{background:var(--white-10)}.search,.search [data-test=ring-select],.search [data-test=ring-tooltip],.search [data-test=ring-select_focus],.search #pages-search{display:inline-block;padding:0;margin:0;font-size:0;line-height:0}.search-hotkey-popup{background-color:var(--background-color) !important;padding:4px}.popup-wrapper{min-width:calc(100% - 322px) !important;border:1px solid rgba(255,255,255,.2) !important;background-color:#27282c !important}.popup-wrapper [class^=filterWrapper]{border-bottom:1px solid rgba(255,255,255,.2)}.popup-wrapper input{color:rgba(255,255,255,.8) !important;font-weight:normal !important}.popup-wrapper span[data-test-custom=ring-select-popup-filter-icon]{color:#fff}.popup-wrapper button[data-test=ring-input-clear]{color:#fff !important}@media screen and (max-width: 759px){.popup-wrapper{min-width:100% !important}}.template-wrapper{display:grid;height:32px;grid-template-columns:auto auto}.template-wrapper strong{color:rgba(255,255,255,.8)}.template-wrapper span{color:rgba(255,255,255,.8);line-height:32px}.template-wrapper span.template-description{color:rgba(255,255,255,.6);justify-self:end}@media screen and (max-width: 759px){.template-wrapper{display:flex;flex-direction:column;height:auto}.template-wrapper span{line-height:unset}}.template-name{justify-self:start}[class^=fade]{display:none}[class*=hover]{background-color:rgba(255,255,255,.1) !important} + */#pages-search{cursor:pointer;border:none;border-radius:50%;background:transparent;fill:#fff;fill:var(--dark-mode-and-search-icon-color)}#pages-search:hover{background:var(--white-10)}.search,.search [data-test=ring-select],.search [data-test=ring-tooltip],.search [data-test=ring-select_focus],.search #pages-search{display:inline-block;padding:0;margin:0;font-size:0;line-height:0}.search-hotkey-popup{background-color:var(--background-color) !important;padding:4px}.popup-wrapper{min-width:calc(100% - 322px) !important;border:1px solid rgba(255,255,255,.2) !important;background-color:#27282c !important;color:rgba(255,255,255,.8)}.popup-wrapper [class^=filterWrapper]{border-bottom:1px solid rgba(255,255,255,.2)}.popup-wrapper input{color:rgba(255,255,255,.8) !important;font-weight:normal !important}.popup-wrapper span[data-test-custom=ring-select-popup-filter-icon]{color:#fff}.popup-wrapper button[data-test=ring-input-clear]{color:#fff !important}@media screen and (max-width: 759px){.popup-wrapper{min-width:100% !important}}.template-wrapper{display:grid;height:32px;grid-template-columns:auto auto}.template-wrapper strong{color:rgba(255,255,255,.8)}.template-wrapper span{color:rgba(255,255,255,.8);line-height:32px}.template-wrapper span.template-description{color:rgba(255,255,255,.6);justify-self:end}@media screen and (max-width: 759px){.template-wrapper{display:flex;flex-direction:column;height:auto}.template-wrapper span{line-height:unset}}.template-name{justify-self:start}[class^=fade]{display:none}[class*=hover]{background-color:rgba(255,255,255,.1) !important} /* stylelint-disable color-no-hex */ :root { diff --git a/docs/styles/style.css b/docs/styles/style.css index 67a899a59..fc2b84d26 100644 --- a/docs/styles/style.css +++ b/docs/styles/style.css @@ -342,6 +342,7 @@ td:first-child { /* --- Navigation controls --- */ .navigation-controls { display: flex; + margin-left: 4px; } @media (min-width: 760px) { @@ -354,45 +355,50 @@ td:first-child { display: none; } -/* --- Navigation THEME --- */ -.navigation-controls--search { +.navigation-controls--btn { display: inline-flex; - font-size: 0; - line-height: 0; -} - -.navigation-controls--theme { - display: block; + align-items: center; + justify-content: center; + width: 40px; + height: 40px; border-radius: 50%; background-color: inherit; - margin-left: 4px; + background-position: 50% 50%; padding: 0; border: none; cursor: pointer; font-size: 0; line-height: 0; + transition: background-color 200ms ease-in-out; + will-change: background-color; } -.navigation-controls--theme::before { - height: 40px; - width: 40px; +.navigation-controls--btn:hover { + background-color: var(--white-10); +} + +.navigation-controls--theme { + background-image: url("../images/theme-toggle.svg"); + background-repeat: no-repeat; } -.navigation-controls--theme:hover { - background: var(--white-10); +@media (max-width: 759px) { + .navigation-controls--theme { + display: none; + } } -.navigation-controls--theme::before { - display: block; - content: url("../images/theme-toggle.svg"); +.navigation-controls--homepage { + background-image: url("../images/homepage.svg"); + background-repeat: no-repeat; + background-size: 24px 24px; } @media (max-width: 759px) { - .navigation-controls--theme { + .navigation-controls--homepage { display: none; } } -/* /--- Navigation THEME --- */ .navigation .platform-selector:not([data-active]) { color: #fff; @@ -656,6 +662,26 @@ code.paragraph { text-decoration: line-through; } +/* Workaround for Firefox https://github.com/Kotlin/dokka/issues/3156 */ +@-moz-document url-prefix() { + .strikethrough { + position: relative; + text-decoration: none; + } + + /* complex selectors here are required to handle multiline cases */ + .strikethrough::after, .strikethrough span:after { + content: ''; + position: absolute; + top: 7px; + left: 0; + right: 0; + height: 1px; + background-color: currentColor; + z-index: 1; + } +} + .symbol:empty { padding: 0; } @@ -684,7 +710,7 @@ code { code:not(.block) { display: inline-block; - vertical-align: middle; + vertical-align: bottom; } .symbol > a { diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-c-l-o-s-e/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-c-l-o-s-e/index.html index 1e14199aa..b36463f55 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-c-l-o-s-e/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-c-l-o-s-e/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

-
val raw: String
+
val raw: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-f-a-i-l-e-d/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-f-a-i-l-e-d/index.html index 1bd126fa3..a5e37a592 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-f-a-i-l-e-d/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-f-a-i-l-e-d/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

-
val raw: String
+
val raw: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-s-u-c-c-e-s-s/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-s-u-c-c-e-s-s/index.html index a8dfc489e..ea51377ed 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-s-u-c-c-e-s-s/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/-s-u-c-c-e-s-s/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

-
val raw: String
+
val raw: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/entries.html index 5fa2522a0..44e495df0 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

Status

-
+
@@ -131,7 +131,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -146,7 +146,7 @@

Properties

- +
@@ -161,7 +161,7 @@

Properties

- +
@@ -176,7 +176,7 @@

Properties

-
val raw: String
+
val raw: String
@@ -195,7 +195,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -210,7 +210,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/raw.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/raw.html index 4f49d7f8f..4e839cbc1 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/raw.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.app/-base-transmit-activity/-status/raw.html @@ -66,7 +66,7 @@

raw

-
val raw: String
+
val raw: String
-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

- +
@@ -289,7 +289,7 @@

Functions

- +
@@ -319,7 +319,7 @@

Functions

- +
@@ -334,7 +334,7 @@

Functions

- +
@@ -349,7 +349,7 @@

Functions

- +
@@ -364,7 +364,7 @@

Functions

- +
@@ -379,7 +379,7 @@

Functions

- +
@@ -394,7 +394,7 @@

Functions

- +
@@ -469,7 +469,7 @@

Functions

- +
@@ -514,7 +514,7 @@

Functions

-
open override fun checkCallingUriPermissions(p0: MutableList<Uri>, p1: Int): IntArray
+
open override fun checkCallingUriPermissions(p0: MutableList<Uri>, p1: Int): IntArray
@@ -574,7 +574,7 @@

Functions

-
open override fun checkUriPermissions(p0: MutableList<Uri>, p1: Int, p2: Int, p3: Int): IntArray
+
open override fun checkUriPermissions(p0: MutableList<Uri>, p1: Int, p2: Int, p3: Int): IntArray
@@ -589,7 +589,7 @@

Functions

- +
@@ -619,7 +619,7 @@

Functions

-
open fun closeContextMenu()
+
open fun closeContextMenu()
@@ -769,7 +769,7 @@

Functions

- +
@@ -799,7 +799,7 @@

Functions

-
open override fun databaseList(): Array<String>
+
open override fun databaseList(): Array<String>
@@ -859,7 +859,7 @@

Functions

- +
@@ -874,7 +874,7 @@

Functions

- +
@@ -979,7 +979,7 @@

Functions

-
open override fun dump(@NonNull p0: String, @Nullable p1: FileDescriptor?, @NonNull p2: PrintWriter, @Nullable p3: Array<String>?)
+
open override fun dump(@NonNull p0: String, @Nullable p1: FileDescriptor?, @NonNull p2: PrintWriter, @Nullable p3: Array<String>?)
@@ -1084,7 +1084,7 @@

Functions

- +
@@ -1099,7 +1099,7 @@

Functions

-
open override fun fileList(): Array<String>
+
open override fun fileList(): Array<String>
@@ -1114,7 +1114,7 @@

Functions

-
open override fun <T : View> findViewById(@IdRes p0: Int): T
+
open override fun <T : View> findViewById(@IdRes p0: Int): T
@@ -1129,7 +1129,7 @@

Functions

-
open fun finish()
+
open fun finish()
@@ -1144,7 +1144,7 @@

Functions

-
open fun finishActivity(p0: Int)
+
open fun finishActivity(p0: Int)
@@ -1159,7 +1159,7 @@

Functions

- +
@@ -1174,7 +1174,7 @@

Functions

-
open fun finishAffinity()
+
open fun finishAffinity()
@@ -1189,7 +1189,7 @@

Functions

- +
@@ -1204,7 +1204,7 @@

Functions

- +
@@ -1219,7 +1219,7 @@

Functions

- +
@@ -1234,7 +1234,7 @@

Functions

-
open fun getActionBar(): ActionBar?
+
open fun getActionBar(): ActionBar?
@@ -1249,7 +1249,7 @@

Functions

- +
@@ -1339,7 +1339,7 @@

Functions

- +
@@ -1369,7 +1369,7 @@

Functions

- +
@@ -1384,7 +1384,7 @@

Functions

- +
@@ -1399,7 +1399,7 @@

Functions

- +
@@ -1444,7 +1444,7 @@

Functions

-
fun getColor(p0: Int): Int
+
fun getColor(p0: Int): Int
@@ -1459,7 +1459,7 @@

Functions

- +
@@ -1474,7 +1474,7 @@

Functions

- +
@@ -1504,7 +1504,7 @@

Functions

- +
@@ -1519,7 +1519,7 @@

Functions

- +
@@ -1534,7 +1534,7 @@

Functions

-
open fun getCurrentFocus(): View?
+
open fun getCurrentFocus(): View?
@@ -1579,7 +1579,7 @@

Functions

- +
@@ -1639,7 +1639,7 @@

Functions

- +
@@ -1684,7 +1684,7 @@

Functions

-
open override fun getExternalCacheDirs(): Array<File>
+
open override fun getExternalCacheDirs(): Array<File>
@@ -1714,7 +1714,7 @@

Functions

-
open override fun getExternalFilesDirs(p0: String): Array<File>
+
open override fun getExternalFilesDirs(p0: String): Array<File>
@@ -1729,7 +1729,7 @@

Functions

-
open override fun getExternalMediaDirs(): Array<File>
+
open override fun getExternalMediaDirs(): Array<File>
@@ -1744,7 +1744,7 @@

Functions

- +
@@ -1789,7 +1789,7 @@

Functions

- +
@@ -1804,7 +1804,7 @@

Functions

-
open fun getIntent(): Intent
+
open fun getIntent(): Intent
@@ -1819,7 +1819,7 @@

Functions

- +
@@ -1834,7 +1834,7 @@

Functions

- +
@@ -1849,7 +1849,7 @@

Functions

- +
@@ -1864,7 +1864,7 @@

Functions

- +
@@ -1879,7 +1879,7 @@

Functions

- +
@@ -1894,7 +1894,7 @@

Functions

- +
@@ -1909,7 +1909,7 @@

Functions

- +
@@ -1954,7 +1954,7 @@

Functions

- +
@@ -1969,7 +1969,7 @@

Functions

- +
@@ -2029,7 +2029,7 @@

Functions

-
open override fun getObbDirs(): Array<File>
+
open override fun getObbDirs(): Array<File>
@@ -2044,7 +2044,7 @@

Functions

- +
@@ -2149,7 +2149,7 @@

Functions

- +
@@ -2164,7 +2164,7 @@

Functions

- +
@@ -2179,7 +2179,7 @@

Functions

- +
@@ -2194,7 +2194,7 @@

Functions

-
open fun getReferrer(): Uri?
+
open fun getReferrer(): Uri?
@@ -2209,7 +2209,7 @@

Functions

- +
@@ -2239,7 +2239,7 @@

Functions

- +
@@ -2269,7 +2269,7 @@

Functions

- +
@@ -2284,7 +2284,7 @@

Functions

-
fun getString(p0: Int): String
fun getString(p0: Int, vararg p1: Any): String
+
fun getString(p0: Int): String
fun getString(p0: Int, vararg p1: Any): String
@@ -2299,7 +2299,7 @@

Functions

- +
@@ -2314,7 +2314,7 @@

Functions

- +
@@ -2329,7 +2329,7 @@

Functions

- +
@@ -2359,7 +2359,7 @@

Functions

-
open override fun getSystemService(p0: String): Any
fun <T : Any> getSystemService(p0: Class<T>): T
+
open override fun getSystemService(p0: String): Any
fun <T : Any> getSystemService(p0: Class<T>): T
@@ -2389,7 +2389,7 @@

Functions

-
open fun getTaskId(): Int
+
open fun getTaskId(): Int
@@ -2404,7 +2404,7 @@

Functions

- +
@@ -2434,7 +2434,7 @@

Functions

- +
@@ -2449,7 +2449,7 @@

Functions

- +
@@ -2464,7 +2464,7 @@

Functions

- +
@@ -2479,7 +2479,7 @@

Functions

- +
@@ -2539,7 +2539,7 @@

Functions

-
open fun getWindow(): Window
+
open fun getWindow(): Window
@@ -2554,7 +2554,7 @@

Functions

- +
@@ -2584,7 +2584,7 @@

Functions

- +
@@ -2599,7 +2599,7 @@

Functions

- +
@@ -2614,7 +2614,7 @@

Functions

- +
@@ -2629,7 +2629,7 @@

Functions

- +
@@ -2674,7 +2674,7 @@

Functions

- +
@@ -2689,7 +2689,7 @@

Functions

- +
@@ -2704,7 +2704,7 @@

Functions

- +
@@ -2719,7 +2719,7 @@

Functions

- +
@@ -2734,7 +2734,7 @@

Functions

-
open fun isDestroyed(): Boolean
+
open fun isDestroyed(): Boolean
@@ -2764,7 +2764,7 @@

Functions

-
open fun isFinishing(): Boolean
+
open fun isFinishing(): Boolean
@@ -2779,7 +2779,7 @@

Functions

-
open fun isImmersive(): Boolean
+
open fun isImmersive(): Boolean
@@ -2794,7 +2794,7 @@

Functions

- +
@@ -2809,7 +2809,7 @@

Functions

- +
@@ -2824,7 +2824,7 @@

Functions

- +
@@ -2839,7 +2839,7 @@

Functions

- +
@@ -2869,7 +2869,7 @@

Functions

-
open fun isTaskRoot(): Boolean
+
open fun isTaskRoot(): Boolean
@@ -2899,7 +2899,7 @@

Functions

- +
@@ -2914,7 +2914,7 @@

Functions

- +
@@ -2929,7 +2929,7 @@

Functions

-
fun managedQuery(p0: Uri, p1: Array<String>, p2: String, p3: Array<String>, p4: String): Cursor
+
fun managedQuery(p0: Uri, p1: Array<String>, p2: String, p3: Array<String>, p4: String): Cursor
@@ -2974,7 +2974,7 @@

Functions

- +
@@ -2989,7 +2989,7 @@

Functions

-
open fun navigateUpTo(p0: Intent): Boolean
+
open fun navigateUpTo(p0: Intent): Boolean
@@ -3004,7 +3004,7 @@

Functions

- +
@@ -3019,7 +3019,7 @@

Functions

- +
@@ -3064,7 +3064,7 @@

Functions

-
open fun onActivityReenter(p0: Int, p1: Intent)
+
open fun onActivityReenter(p0: Int, p1: Intent)
@@ -3094,7 +3094,7 @@

Functions

- +
@@ -3154,7 +3154,7 @@

Functions

- +
@@ -3169,7 +3169,7 @@

Functions

- +
@@ -3184,7 +3184,7 @@

Functions

-
open fun onCreate(p0: Bundle?, p1: PersistableBundle?)
+
open fun onCreate(p0: Bundle?, p1: PersistableBundle?)
@@ -3214,7 +3214,7 @@

Functions

- +
@@ -3229,7 +3229,7 @@

Functions

- +
@@ -3244,7 +3244,7 @@

Functions

- +
@@ -3289,7 +3289,7 @@

Functions

- +
@@ -3304,7 +3304,7 @@

Functions

- +
@@ -3349,7 +3349,7 @@

Functions

- +
@@ -3364,7 +3364,7 @@

Functions

- +
@@ -3379,7 +3379,7 @@

Functions

- +
@@ -3439,7 +3439,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -3469,7 +3469,7 @@

Functions

- +
@@ -3484,7 +3484,7 @@

Functions

- +
@@ -3559,7 +3559,7 @@

Functions

-
open fun onNavigateUp(): Boolean
+
open fun onNavigateUp(): Boolean
@@ -3574,7 +3574,7 @@

Functions

- +
@@ -3589,7 +3589,7 @@

Functions

- +
@@ -3604,7 +3604,7 @@

Functions

- +
@@ -3634,7 +3634,7 @@

Functions

- +
@@ -3664,7 +3664,7 @@

Functions

- +
@@ -3679,7 +3679,7 @@

Functions

- +
@@ -3694,7 +3694,7 @@

Functions

- +
@@ -3709,7 +3709,7 @@

Functions

- +
@@ -3724,7 +3724,7 @@

Functions

- +
@@ -3739,7 +3739,7 @@

Functions

- +
@@ -3769,7 +3769,7 @@

Functions

- +
@@ -3784,7 +3784,7 @@

Functions

- +
@@ -3799,7 +3799,7 @@

Functions

- +
@@ -3814,7 +3814,7 @@

Functions

- +
@@ -3829,7 +3829,7 @@

Functions

- +
@@ -3844,7 +3844,7 @@

Functions

- +
@@ -3859,7 +3859,7 @@

Functions

- +
@@ -3874,7 +3874,7 @@

Functions

- +
@@ -3904,7 +3904,7 @@

Functions

- +
@@ -3979,7 +3979,7 @@

Functions

- +
@@ -3994,7 +3994,7 @@

Functions

- +
@@ -4009,7 +4009,7 @@

Functions

- +
@@ -4024,7 +4024,7 @@

Functions

- +
@@ -4039,7 +4039,7 @@

Functions

- +
@@ -4069,7 +4069,7 @@

Functions

- +
@@ -4084,7 +4084,7 @@

Functions

- +
@@ -4159,7 +4159,7 @@

Functions

-
open fun openContextMenu(p0: View)
+
open fun openContextMenu(p0: View)
@@ -4234,7 +4234,7 @@

Functions

-
open fun overrideActivityTransition(p0: Int, p1: Int, p2: Int)
open fun overrideActivityTransition(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun overrideActivityTransition(p0: Int, p1: Int, p2: Int)
open fun overrideActivityTransition(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4249,7 +4249,7 @@

Functions

-
open fun overridePendingTransition(p0: Int, p1: Int)
open fun overridePendingTransition(p0: Int, p1: Int, p2: Int)
+
open fun overridePendingTransition(p0: Int, p1: Int)
open fun overridePendingTransition(p0: Int, p1: Int, p2: Int)
@@ -4294,7 +4294,7 @@

Functions

- +
@@ -4309,7 +4309,7 @@

Functions

- +
@@ -4324,7 +4324,7 @@

Functions

-
open fun recreate()
+
open fun recreate()
@@ -4339,7 +4339,7 @@

Functions

- +
@@ -4384,7 +4384,7 @@

Functions

- +
@@ -4399,7 +4399,7 @@

Functions

- +
@@ -4429,7 +4429,7 @@

Functions

- +
@@ -4444,7 +4444,7 @@

Functions

- +
@@ -4459,7 +4459,7 @@

Functions

-
fun removeDialog(p0: Int)
+
fun removeDialog(p0: Int)
@@ -4489,7 +4489,7 @@

Functions

- +
@@ -4519,7 +4519,7 @@

Functions

- +
@@ -4534,7 +4534,7 @@

Functions

- +
@@ -4549,7 +4549,7 @@

Functions

- +
@@ -4564,7 +4564,7 @@

Functions

- +
@@ -4624,7 +4624,7 @@

Functions

- +
@@ -4639,7 +4639,7 @@

Functions

- +
@@ -4654,7 +4654,7 @@

Functions

- +
@@ -4669,7 +4669,7 @@

Functions

- +
@@ -4684,7 +4684,7 @@

Functions

- +
@@ -4699,7 +4699,7 @@

Functions

- +
@@ -4714,7 +4714,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -4729,7 +4729,7 @@

Functions

- +
@@ -4744,7 +4744,7 @@

Functions

- +
@@ -4774,7 +4774,7 @@

Functions

- +
@@ -4819,7 +4819,7 @@

Functions

- +
@@ -4834,7 +4834,7 @@

Functions

-
open override fun sendOrderedBroadcast(p0: Intent, p1: String?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: Bundle?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: BroadcastReceiver?, p3: Handler?, p4: Int, p5: String?, p6: Bundle?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: Bundle?, p3: BroadcastReceiver?, p4: Handler?, p5: Int, p6: String?, p7: Bundle?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: String?, p3: BroadcastReceiver?, p4: Handler?, p5: Int, p6: String?, p7: Bundle?)
open fun sendOrderedBroadcast(p0: Intent, p1: Int, p2: String?, p3: String?, p4: BroadcastReceiver?, p5: Handler?, p6: String?, p7: Bundle?, p8: Bundle?)
+
open override fun sendOrderedBroadcast(p0: Intent, p1: String?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: Bundle?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: BroadcastReceiver?, p3: Handler?, p4: Int, p5: String?, p6: Bundle?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: Bundle?, p3: BroadcastReceiver?, p4: Handler?, p5: Int, p6: String?, p7: Bundle?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: String?, p3: BroadcastReceiver?, p4: Handler?, p5: Int, p6: String?, p7: Bundle?)
open fun sendOrderedBroadcast(p0: Intent, p1: Int, p2: String?, p3: String?, p4: BroadcastReceiver?, p5: Handler?, p6: String?, p7: Bundle?, p8: Bundle?)
@@ -4924,7 +4924,7 @@

Functions

-
open fun setActionBar(p0: Toolbar?)
+
open fun setActionBar(p0: Toolbar?)
@@ -4939,7 +4939,7 @@

Functions

- +
@@ -4969,7 +4969,7 @@

Functions

- +
@@ -4984,7 +4984,7 @@

Functions

- +
@@ -4999,7 +4999,7 @@

Functions

- +
@@ -5014,7 +5014,7 @@

Functions

- +
@@ -5029,7 +5029,7 @@

Functions

- +
@@ -5044,7 +5044,7 @@

Functions

- +
@@ -5059,7 +5059,7 @@

Functions

- +
@@ -5074,7 +5074,7 @@

Functions

- +
@@ -5089,7 +5089,7 @@

Functions

-
open fun setImmersive(p0: Boolean)
+
open fun setImmersive(p0: Boolean)
@@ -5104,7 +5104,7 @@

Functions

- +
@@ -5119,7 +5119,7 @@

Functions

-
open fun setIntent(p0: Intent)
+
open fun setIntent(p0: Intent)
@@ -5134,7 +5134,7 @@

Functions

-
open fun setLocusContext(p0: LocusId?, p1: Bundle?)
+
open fun setLocusContext(p0: LocusId?, p1: Bundle?)
@@ -5149,7 +5149,7 @@

Functions

- +
@@ -5164,7 +5164,7 @@

Functions

- +
@@ -5179,7 +5179,7 @@

Functions

-
fun setProgress(p0: Int)
+
fun setProgress(p0: Int)
@@ -5194,7 +5194,7 @@

Functions

- +
@@ -5209,7 +5209,7 @@

Functions

- +
@@ -5224,7 +5224,7 @@

Functions

- +
@@ -5239,7 +5239,7 @@

Functions

- +
@@ -5254,7 +5254,7 @@

Functions

- +
@@ -5269,7 +5269,7 @@

Functions

-
fun setResult(p0: Int)
fun setResult(p0: Int, p1: Intent)
+
fun setResult(p0: Int)
fun setResult(p0: Int, p1: Intent)
@@ -5284,7 +5284,7 @@

Functions

- +
@@ -5299,7 +5299,7 @@

Functions

- +
@@ -5314,7 +5314,7 @@

Functions

- +
@@ -5329,7 +5329,7 @@

Functions

- +
@@ -5344,7 +5344,7 @@

Functions

-
open fun setSupportProgress(p0: Int)
+
open fun setSupportProgress(p0: Int)
@@ -5359,7 +5359,7 @@

Functions

- +
@@ -5374,7 +5374,7 @@

Functions

- +
@@ -5389,7 +5389,7 @@

Functions

- +
@@ -5404,7 +5404,7 @@

Functions

- +
@@ -5419,7 +5419,7 @@

Functions

-
open fun setTheme(p0: Resources.Theme?)
open override fun setTheme(@StyleRes p0: Int)
+
open fun setTheme(p0: Resources.Theme?)
open override fun setTheme(@StyleRes p0: Int)
@@ -5434,7 +5434,7 @@

Functions

-
open fun setTitle(p0: CharSequence)
open fun setTitle(p0: Int)
+
open fun setTitle(p0: CharSequence)
open fun setTitle(p0: Int)
@@ -5449,7 +5449,7 @@

Functions

-
open fun setTitleColor(p0: Int)
+
open fun setTitleColor(p0: Int)
@@ -5464,7 +5464,7 @@

Functions

- +
@@ -5479,7 +5479,7 @@

Functions

-
open fun setTurnScreenOn(p0: Boolean)
+
open fun setTurnScreenOn(p0: Boolean)
@@ -5494,7 +5494,7 @@

Functions

-
open fun setVisible(p0: Boolean)
+
open fun setVisible(p0: Boolean)
@@ -5509,7 +5509,7 @@

Functions

- +
@@ -5524,7 +5524,7 @@

Functions

- +
@@ -5554,7 +5554,7 @@

Functions

- +
@@ -5569,7 +5569,7 @@

Functions

- +
@@ -5584,7 +5584,7 @@

Functions

- +
@@ -5599,7 +5599,7 @@

Functions

-
open fun showAssist(p0: Bundle): Boolean
+
open fun showAssist(p0: Bundle): Boolean
@@ -5614,7 +5614,7 @@

Functions

-
fun showDialog(p0: Int)
fun showDialog(p0: Int, p1: Bundle): Boolean
+
fun showDialog(p0: Int)
fun showDialog(p0: Int, p1: Bundle): Boolean
@@ -5629,7 +5629,7 @@

Functions

- +
@@ -5644,7 +5644,7 @@

Functions

- +
@@ -5659,7 +5659,7 @@

Functions

-
open override fun startActivities(p0: Array<Intent>)
open override fun startActivities(p0: Array<Intent>, p1: Bundle?)
+
open override fun startActivities(p0: Array<Intent>)
open override fun startActivities(p0: Array<Intent>, p1: Bundle?)
@@ -5704,7 +5704,7 @@

Functions

-
open fun startActivityFromChild(p0: Activity, p1: Intent, p2: Int)
open fun startActivityFromChild(p0: Activity, p1: Intent, p2: Int, p3: Bundle?)
+
open fun startActivityFromChild(p0: Activity, p1: Intent, p2: Int)
open fun startActivityFromChild(p0: Activity, p1: Intent, p2: Int, p3: Bundle?)
@@ -5719,7 +5719,7 @@

Functions

- +
@@ -5734,7 +5734,7 @@

Functions

- +
@@ -5809,7 +5809,7 @@

Functions

-
open fun startIntentSenderFromChild(p0: Activity, p1: IntentSender, p2: Int, p3: Intent, p4: Int, p5: Int, p6: Int)
open fun startIntentSenderFromChild(p0: Activity, p1: IntentSender, p2: Int, p3: Intent, p4: Int, p5: Int, p6: Int, p7: Bundle?)
+
open fun startIntentSenderFromChild(p0: Activity, p1: IntentSender, p2: Int, p3: Intent, p4: Int, p5: Int, p6: Int)
open fun startIntentSenderFromChild(p0: Activity, p1: IntentSender, p2: Int, p3: Intent, p4: Int, p5: Int, p6: Int, p7: Bundle?)
@@ -5824,7 +5824,7 @@

Functions

-
open fun startIntentSenderFromFragment(@NonNull p0: Fragment, p1: IntentSender, p2: Int, @Nullable p3: Intent?, p4: Int, p5: Int, p6: Int, @Nullable p7: Bundle?)
+
open fun startIntentSenderFromFragment(@NonNull p0: Fragment, p1: IntentSender, p2: Int, @Nullable p3: Intent?, p4: Int, p5: Int, p6: Int, @Nullable p7: Bundle?)
@@ -5839,7 +5839,7 @@

Functions

- +
@@ -5854,7 +5854,7 @@

Functions

-
open fun startLockTask()
+
open fun startLockTask()
@@ -5869,7 +5869,7 @@

Functions

- +
@@ -5884,7 +5884,7 @@

Functions

- +
@@ -5899,7 +5899,7 @@

Functions

- +
@@ -5914,7 +5914,7 @@

Functions

-
open fun startSearch(p0: String?, p1: Boolean, p2: Bundle?, p3: Boolean)
+
open fun startSearch(p0: String?, p1: Boolean, p2: Bundle?, p3: Boolean)
@@ -5944,7 +5944,7 @@

Functions

- +
@@ -5959,7 +5959,7 @@

Functions

- +
@@ -5974,7 +5974,7 @@

Functions

-
open fun stopLockTask()
+
open fun stopLockTask()
@@ -5989,7 +5989,7 @@

Functions

- +
@@ -6034,7 +6034,7 @@

Functions

- +
@@ -6064,7 +6064,7 @@

Functions

- +
@@ -6079,7 +6079,7 @@

Functions

- +
@@ -6094,7 +6094,7 @@

Functions

- +
@@ -6109,7 +6109,7 @@

Functions

- +
@@ -6124,7 +6124,7 @@

Functions

- +
@@ -6139,7 +6139,7 @@

Functions

-
open fun takeKeyEvents(p0: Boolean)
+
open fun takeKeyEvents(p0: Boolean)
@@ -6154,7 +6154,7 @@

Functions

-
open fun triggerSearch(p0: String, p1: Bundle?)
+
open fun triggerSearch(p0: String, p1: Bundle?)
@@ -6184,7 +6184,7 @@

Functions

- +
@@ -6229,7 +6229,7 @@

Functions

- +
@@ -6259,7 +6259,7 @@

Functions

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-action/get-attributes.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-action/get-attributes.html index d8b5c0562..7ab8bffef 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-action/get-attributes.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-action/get-attributes.html @@ -66,7 +66,7 @@

getAttributes

-
+
- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-attach-file-action/-attach-file-action.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-attach-file-action/-attach-file-action.html index 51bc64411..82fb4d714 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-attach-file-action/-attach-file-action.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-attach-file-action/-attach-file-action.html @@ -66,7 +66,7 @@

AttachFileAction

-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>

AttachFileAction

-
class AttachFileAction(val params: Map<String, Any>) : Action
+
class AttachFileAction(val params: Map<String, Any>) : Action
@@ -82,7 +82,7 @@

Constructors

-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
@@ -120,7 +120,7 @@

Properties

- +
@@ -139,7 +139,7 @@

Functions

-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-attach-file-action/params.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-attach-file-action/params.html index 715643877..e37b30d6c 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-attach-file-action/params.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-attach-file-action/params.html @@ -66,7 +66,7 @@

params

-
+
-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>

AutofillAction

-
class AutofillAction(val params: Map<String, Any>) : Action
+
class AutofillAction(val params: Map<String, Any>) : Action
@@ -82,7 +82,7 @@

Constructors

-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
@@ -120,7 +120,7 @@

Properties

- +
@@ -139,7 +139,7 @@

Functions

-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-autofill-action/params.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-autofill-action/params.html index 6143d17d2..047299d5e 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-autofill-action/params.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-autofill-action/params.html @@ -66,7 +66,7 @@

params

-
+
-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>

HostNameValidationAction

-
+
@@ -82,7 +82,7 @@

Constructors

-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
@@ -120,7 +120,7 @@

Properties

- +
@@ -139,7 +139,7 @@

Functions

-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-host-name-validation-action/params.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-host-name-validation-action/params.html index 977a4fe85..9d46e0f8c 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-host-name-validation-action/params.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-host-name-validation-action/params.html @@ -66,7 +66,7 @@

params

-
+
-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>

InitAction

-
data class InitAction(val params: Map<String, Any>) : Action
+
data class InitAction(val params: Map<String, Any>) : Action
@@ -82,7 +82,7 @@

Constructors

-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
@@ -120,7 +120,7 @@

Properties

- +
@@ -139,7 +139,7 @@

Functions

-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-init-action/params.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-init-action/params.html index 04e9dc57b..db803fcdd 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-init-action/params.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-init-action/params.html @@ -66,7 +66,7 @@

params

-
+
-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>

ResponseAction

-
class ResponseAction(val params: Map<String, Any>) : Action
+
class ResponseAction(val params: Map<String, Any>) : Action
@@ -82,7 +82,7 @@

Constructors

-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
@@ -120,7 +120,7 @@

Properties

- +
@@ -139,7 +139,7 @@

Functions

-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-response-action/params.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-response-action/params.html index 33a2be21f..fa4e67e67 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-response-action/params.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-response-action/params.html @@ -66,7 +66,7 @@

params

-
+
-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>

ScanAction

-
class ScanAction(val params: Map<String, Any>) : Action
+
class ScanAction(val params: Map<String, Any>) : Action
@@ -82,7 +82,7 @@

Constructors

-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
@@ -120,7 +120,7 @@

Properties

- +
@@ -139,7 +139,7 @@

Functions

-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-scan-action/params.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-scan-action/params.html index b30c449d0..8772f6727 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-scan-action/params.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-scan-action/params.html @@ -66,7 +66,7 @@

params

-
+
-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>

SubmitAction

-
class SubmitAction(val params: Map<String, Any>) : Action
+
class SubmitAction(val params: Map<String, Any>) : Action
@@ -82,7 +82,7 @@

Constructors

-
constructor(params: Map<String, Any>)
+
constructor(params: Map<String, Any>)
@@ -120,7 +120,7 @@

Properties

- +
@@ -139,7 +139,7 @@

Functions

-
open override fun getAttributes(): MutableMap<String, Any>
+
open override fun getAttributes(): MutableMap<String, Any>
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-submit-action/params.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-submit-action/params.html index 43b160a77..de3aa1f7a 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-submit-action/params.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.action/-submit-action/params.html @@ -66,7 +66,7 @@

params

-
+
-
class AttachFileAction(val params: Map<String, Any>) : Action
+
class AttachFileAction(val params: Map<String, Any>) : Action
@@ -111,7 +111,7 @@

Types

-
class AutofillAction(val params: Map<String, Any>) : Action
+
class AutofillAction(val params: Map<String, Any>) : Action
@@ -126,7 +126,7 @@

Types

- +
@@ -141,7 +141,7 @@

Types

-
data class InitAction(val params: Map<String, Any>) : Action
+
data class InitAction(val params: Map<String, Any>) : Action
@@ -156,7 +156,7 @@

Types

-
class ResponseAction(val params: Map<String, Any>) : Action
+
class ResponseAction(val params: Map<String, Any>) : Action
@@ -171,7 +171,7 @@

Types

-
class ScanAction(val params: Map<String, Any>) : Action
+
class ScanAction(val params: Map<String, Any>) : Action
@@ -186,7 +186,7 @@

Types

-
class SubmitAction(val params: Map<String, Any>) : Action
+
class SubmitAction(val params: Map<String, Any>) : Action
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.utils/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.utils/index.html index 07e23cd05..adc7406be 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.utils/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.utils/index.html @@ -72,7 +72,7 @@

Package-level declaratio

Functions

-
+
@@ -81,7 +81,7 @@

Functions

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.utils/to-analytic-status.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.utils/to-analytic-status.html index d9ef2e44a..4c79e29d0 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.utils/to-analytic-status.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc.utils/to-analytic-status.html @@ -66,7 +66,7 @@

toAnalyticStatus

- +

-
abstract var isEnabled: Boolean
+
abstract var isEnabled: Boolean
@@ -101,7 +101,7 @@

Functions

-
abstract fun logEvent(action: Action)
+
abstract fun logEvent(action: Action)
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc/-analytic-tracker/is-enabled.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc/-analytic-tracker/is-enabled.html index 9d025dc17..6de7d9353 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc/-analytic-tracker/is-enabled.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api.analityc/-analytic-tracker/is-enabled.html @@ -66,7 +66,7 @@

isEnabled

-
abstract var isEnabled: Boolean
+
abstract var isEnabled: Boolean
-
abstract fun logEvent(action: Action)
+
abstract fun logEvent(action: Action)
- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/-x_-w-w-w_-f-o-r-m_-u-r-l-e-n-c-o-d-e-d/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/-x_-w-w-w_-f-o-r-m_-u-r-l-e-n-c-o-d-e-d/index.html index fb9bc9870..19721f64d 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/-x_-w-w-w_-f-o-r-m_-u-r-l-e-n-c-o-d-e-d/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/-x_-w-w-w_-f-o-r-m_-u-r-l-e-n-c-o-d-e-d/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/entries.html index 02f8d2696..1a4521750 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

VGSHttpBodyFormat

-
+
@@ -131,7 +131,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -146,7 +146,7 @@

Properties

- +
@@ -161,7 +161,7 @@

Properties

- +
@@ -180,7 +180,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -195,7 +195,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/value-of.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/value-of.html index 20ee00541..3d0e26a3a 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/value-of.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.api/-v-g-s-http-body-format/value-of.html @@ -66,7 +66,7 @@

valueOf

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-flat-map/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-flat-map/index.html index 9470e40e9..3dc9b97de 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-flat-map/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-flat-map/index.html @@ -120,7 +120,7 @@

Properties

- +
@@ -139,7 +139,7 @@

Functions

-
fun set(key: String, value: Any): Any?
+
fun set(key: String, value: Any): Any?
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-flat-map/set.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-flat-map/set.html index cadb6cc88..76bd4d89f 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-flat-map/set.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-flat-map/set.html @@ -66,7 +66,7 @@

set

-
fun set(key: String, value: Any): Any?
+
fun set(key: String, value: Any): Any?
-
+
- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/-array-key/-companion/is-array-key.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/-array-key/-companion/is-array-key.html index e106863b6..4a4d3d992 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/-array-key/-companion/is-array-key.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/-array-key/-companion/is-array-key.html @@ -66,7 +66,7 @@

isArrayKey

-
+
- +
@@ -150,7 +150,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/-array-key/position.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/-array-key/position.html index 60f3a5294..b02a3b8cf 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/-array-key/position.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/-array-key/position.html @@ -66,7 +66,7 @@

position

-
+
-
+
-
fun create(key: String, allowParseArray: Boolean): Key
+
fun create(key: String, allowParseArray: Boolean): Key
-
fun create(key: String, allowParseArray: Boolean): Key
+
fun create(key: String, allowParseArray: Boolean): Key
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/index.html index b555acf12..9af9d2ca0 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/index.html @@ -131,7 +131,7 @@

Properties

-
abstract val isValid: Boolean
+
abstract val isValid: Boolean
@@ -146,7 +146,7 @@

Properties

-
abstract val value: String
+
abstract val value: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/is-valid.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/is-valid.html index 979f821e4..6fdede7ec 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/is-valid.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.map/-key/is-valid.html @@ -66,7 +66,7 @@

isValid

-
abstract val isValid: Boolean
+
abstract val isValid: Boolean
-
abstract val value: String
+
abstract val value: String
-

Creates a VGSRequest with the arguments supplied to this.

Return

VGSRequest instance

+

Creates a VGSRequest with the arguments supplied to this.

Return

VGSRequest instance

-

Ignore input's data in a request to the server.

Return

current builder instance

+

Ignore input's data in a request to the server.

Return

current builder instance

-

Ignore files in a request to the server.

Return

current builder instance

+

Ignore files in a request to the server.

Return

current builder instance

-

Creates a VGSRequest with the arguments supplied to this.

+

Creates a VGSRequest with the arguments supplied to this.

@@ -116,7 +116,7 @@

Functions

-

Ignore input's data in a request to the server.

+

Ignore input's data in a request to the server.

@@ -131,7 +131,7 @@

Functions

-

Ignore files in a request to the server.

+

Ignore files in a request to the server.

@@ -146,7 +146,7 @@

Functions

-

Specifies request timeout interval in milliseconds.

+

Specifies request timeout interval in milliseconds.

@@ -161,7 +161,7 @@

Functions

-

Defines route id for submitting data.

+

Defines route id for submitting data.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network.tokenization/-v-g-s-tokenization-request/-v-g-s-request-builder/set-request-timeout-interval.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network.tokenization/-v-g-s-tokenization-request/-v-g-s-request-builder/set-request-timeout-interval.html index 1064355fa..06e5492cb 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network.tokenization/-v-g-s-tokenization-request/-v-g-s-request-builder/set-request-timeout-interval.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network.tokenization/-v-g-s-tokenization-request/-v-g-s-request-builder/set-request-timeout-interval.html @@ -66,7 +66,7 @@

setRequestTimeoutInterval

-

Specifies request timeout interval in milliseconds.

Parameters

timeout

interval in milliseconds.

+

Specifies request timeout interval in milliseconds.

Parameters

timeout

interval in milliseconds.

-

Defines route id for submitting data.

Parameters

routeId

A vault route id

+

Defines route id for submitting data.

Parameters

routeId

A vault route id

-
open override val customData: Map<String, Any>
+
open override val customData: Map<String, Any>
-
open override val customHeader: Map<String, String>
+
open override val customHeader: Map<String, String>
-
open override val customData: Map<String, Any>

The Map to save for request.

+
open override val customData: Map<String, Any>

The Map to save for request.

@@ -116,7 +116,7 @@

Properties

-
open override val customHeader: Map<String, String>

The headers to save for request.

+
open override val customHeader: Map<String, String>

The headers to save for request.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-request/-network-request.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-request/-network-request.html index ecd567af2..1c6c093cd 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-request/-network-request.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-request/-network-request.html @@ -66,7 +66,7 @@

NetworkRequest

-
constructor(method: HTTPMethod, url: String, customHeader: Map<String, String>, customData: Any, fieldsIgnore: Boolean, fileIgnore: Boolean, format: VGSHttpBodyFormat, requestTimeoutInterval: Long, requiresTokenization: Boolean)
+
constructor(method: HTTPMethod, url: String, customHeader: Map<String, String>, customData: Any, fieldsIgnore: Boolean, fileIgnore: Boolean, format: VGSHttpBodyFormat, requestTimeoutInterval: Long, requiresTokenization: Boolean)
-
+
-
+
-
+
-
+
-
+

NetworkRequest

-
data class NetworkRequest(val method: HTTPMethod, var url: String, val customHeader: Map<String, String>, val customData: Any, val fieldsIgnore: Boolean, val fileIgnore: Boolean, val format: VGSHttpBodyFormat, val requestTimeoutInterval: Long, val requiresTokenization: Boolean)
+
data class NetworkRequest(val method: HTTPMethod, var url: String, val customHeader: Map<String, String>, val customData: Any, val fieldsIgnore: Boolean, val fileIgnore: Boolean, val format: VGSHttpBodyFormat, val requestTimeoutInterval: Long, val requiresTokenization: Boolean)
@@ -82,7 +82,7 @@

Constructors

-
constructor(method: HTTPMethod, url: String, customHeader: Map<String, String>, customData: Any, fieldsIgnore: Boolean, fileIgnore: Boolean, format: VGSHttpBodyFormat, requestTimeoutInterval: Long, requiresTokenization: Boolean)
+
constructor(method: HTTPMethod, url: String, customHeader: Map<String, String>, customData: Any, fieldsIgnore: Boolean, fileIgnore: Boolean, format: VGSHttpBodyFormat, requestTimeoutInterval: Long, requiresTokenization: Boolean)
@@ -101,7 +101,7 @@

Properties

- +
@@ -116,7 +116,7 @@

Properties

- +
@@ -131,7 +131,7 @@

Properties

- +
@@ -146,7 +146,7 @@

Properties

- +
@@ -161,7 +161,7 @@

Properties

- +
@@ -176,7 +176,7 @@

Properties

- +
@@ -191,7 +191,7 @@

Properties

- +
@@ -206,7 +206,7 @@

Properties

- +
@@ -221,7 +221,7 @@

Properties

-
var url: String
+
var url: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-request/method.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-request/method.html index a2cccd9c5..05f0124be 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-request/method.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-request/method.html @@ -66,7 +66,7 @@

method

-
+
-
+
-
+
-
var url: String
+
var url: String
-
val body: String? = null
+
val body: String? = null
-
val code: Int
+
val code: Int
-
val error: VGSError? = null
+
val error: VGSError? = null
-
val body: String? = null
+
val body: String? = null
@@ -116,7 +116,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -131,7 +131,7 @@

Properties

-
val error: VGSError? = null
+
val error: VGSError? = null
@@ -146,7 +146,7 @@

Properties

-
val isSuccessful: Boolean = false
+
val isSuccessful: Boolean = false
@@ -161,7 +161,7 @@

Properties

-
val message: String? = null
+
val message: String? = null
@@ -171,7 +171,7 @@

Properties

Functions

-
+
@@ -180,7 +180,7 @@

Functions

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-response/is-successful.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-response/is-successful.html index f2927cad1..3a1405e30 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-response/is-successful.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-network-response/is-successful.html @@ -66,7 +66,7 @@

isSuccessful

-
val isSuccessful: Boolean = false
+
val isSuccessful: Boolean = false
-
val message: String? = null
+
val message: String? = null
-
abstract val customData: Map<String, Any>
+
abstract val customData: Map<String, Any>
-
abstract val customHeader: Map<String, String>
+
abstract val customHeader: Map<String, String>
-
+
-
abstract val fieldsIgnore: Boolean
+
abstract val fieldsIgnore: Boolean
-
abstract val fileIgnore: Boolean
+
abstract val fileIgnore: Boolean
-
+
-
abstract val customData: Map<String, Any>

The Map to save for request.

+
abstract val customData: Map<String, Any>

The Map to save for request.

@@ -116,7 +116,7 @@

Properties

-
abstract val customHeader: Map<String, String>

The headers to save for request.

+
abstract val customHeader: Map<String, String>

The headers to save for request.

@@ -131,7 +131,7 @@

Properties

- +
@@ -146,7 +146,7 @@

Properties

-
abstract val fieldsIgnore: Boolean

contains true if need to skip data from input fields.

+
abstract val fieldsIgnore: Boolean

contains true if need to skip data from input fields.

@@ -161,7 +161,7 @@

Properties

-
abstract val fileIgnore: Boolean

contains true if need to skip files.

+
abstract val fileIgnore: Boolean

contains true if need to skip files.

@@ -176,7 +176,7 @@

Properties

- +
@@ -191,7 +191,7 @@

Properties

-
abstract val method: HTTPMethod

HTTP method

+
abstract val method: HTTPMethod

HTTP method

@@ -206,7 +206,7 @@

Properties

-
abstract val path: String

path for a request

+
abstract val path: String

path for a request

@@ -221,7 +221,7 @@

Properties

- +
@@ -236,7 +236,7 @@

Properties

-
abstract val routeId: String?
+
abstract val routeId: String?
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-base-request/method.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-base-request/method.html index d30bc8fb2..a4563f3c8 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-base-request/method.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-base-request/method.html @@ -66,7 +66,7 @@

method

-
abstract val method: HTTPMethod
+
abstract val method: HTTPMethod
-
abstract val path: String
+
abstract val path: String
-
+
-
abstract val routeId: String?
+
abstract val routeId: String?
-
val code: Int
+
val code: Int
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-n-o-t_-f-o-u-n-d/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-n-o-t_-f-o-u-n-d/index.html index 1b1dde446..63395b6d0 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-n-o-t_-f-o-u-n-d/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-n-o-t_-f-o-u-n-d/index.html @@ -82,7 +82,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-n-o-t_-s-u-p-p-o-r-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-n-o-t_-s-u-p-p-o-r-t/index.html index 6cf0d3a44..b724ae7de 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-n-o-t_-s-u-p-p-o-r-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-n-o-t_-s-u-p-p-o-r-t/index.html @@ -82,7 +82,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-s-i-z-e_-o-v-e-r_-l-i-m-i-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-s-i-z-e_-o-v-e-r_-l-i-m-i-t/index.html index 0524128fb..7328f00b7 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-s-i-z-e_-o-v-e-r_-l-i-m-i-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-f-i-l-e_-s-i-z-e_-o-v-e-r_-l-i-m-i-t/index.html @@ -82,7 +82,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-i-n-p-u-t_-d-a-t-a_-n-o-t_-v-a-l-i-d/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-i-n-p-u-t_-d-a-t-a_-n-o-t_-v-a-l-i-d/index.html index 33b1c00a1..d177a4492 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-i-n-p-u-t_-d-a-t-a_-n-o-t_-v-a-l-i-d/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-i-n-p-u-t_-d-a-t-a_-n-o-t_-v-a-l-i-d/index.html @@ -82,7 +82,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o-t_-a-c-t-i-v-i-t-y_-c-o-n-t-e-x-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o-t_-a-c-t-i-v-i-t-y_-c-o-n-t-e-x-t/index.html index dee9c063b..bd59a581c 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o-t_-a-c-t-i-v-i-t-y_-c-o-n-t-e-x-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o-t_-a-c-t-i-v-i-t-y_-c-o-n-t-e-x-t/index.html @@ -82,7 +82,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o_-i-n-t-e-r-n-e-t_-p-e-r-m-i-s-s-i-o-n-s/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o_-i-n-t-e-r-n-e-t_-p-e-r-m-i-s-s-i-o-n-s/index.html index 3cc21d120..8f7955a2d 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o_-i-n-t-e-r-n-e-t_-p-e-r-m-i-s-s-i-o-n-s/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o_-i-n-t-e-r-n-e-t_-p-e-r-m-i-s-s-i-o-n-s/index.html @@ -82,7 +82,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o_-n-e-t-w-o-r-k_-c-o-n-n-e-c-t-i-o-n-s/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o_-n-e-t-w-o-r-k_-c-o-n-n-e-c-t-i-o-n-s/index.html index d7482d78d..17d327be0 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o_-n-e-t-w-o-r-k_-c-o-n-n-e-c-t-i-o-n-s/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-n-o_-n-e-t-w-o-r-k_-c-o-n-n-e-c-t-i-o-n-s/index.html @@ -82,7 +82,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-t-i-m-e_-o-u-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-t-i-m-e_-o-u-t/index.html index 0d748d6ae..37ee940d0 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-t-i-m-e_-o-u-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-t-i-m-e_-o-u-t/index.html @@ -82,7 +82,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-u-r-l_-n-o-t_-v-a-l-i-d/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-u-r-l_-n-o-t_-v-a-l-i-d/index.html index 0fd7e96f6..6d57ec2e2 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-u-r-l_-n-o-t_-v-a-l-i-d/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/-u-r-l_-n-o-t_-v-a-l-i-d/index.html @@ -82,7 +82,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/code.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/code.html index 5864cbb8e..f9ee659cb 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/code.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/code.html @@ -66,7 +66,7 @@

code

-
val code: Int
+
val code: Int
-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

VGSError

-
+
@@ -236,7 +236,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -251,7 +251,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -266,7 +266,7 @@

Properties

- +
@@ -281,7 +281,7 @@

Properties

- +
@@ -296,7 +296,7 @@

Properties

- +
@@ -315,7 +315,7 @@

Functions

- +
@@ -330,7 +330,7 @@

Functions

-
fun valueOf(value: String): VGSError

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
fun valueOf(value: String): VGSError

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -345,7 +345,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/message-res-id.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/message-res-id.html index 67558a1e4..306e04111 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/message-res-id.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-error/message-res-id.html @@ -66,7 +66,7 @@

messageResId

-
+
-
fun valueOf(value: String): VGSError

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+
fun valueOf(value: String): VGSError

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-

Creates a VGSRequest with the arguments supplied to this.

Return

VGSRequest instance

+

Creates a VGSRequest with the arguments supplied to this.

Return

VGSRequest instance

-

Ignore input's data in a request to the server.

Return

current builder instance

Since

1.0.10

+

Ignore input's data in a request to the server.

Return

current builder instance

Since

1.0.10

-

Ignore files in a request to the server.

Return

current builder instance

Since

1.0.10

+

Ignore files in a request to the server.

Return

current builder instance

Since

1.0.10

-

Creates a VGSRequest with the arguments supplied to this.

+

Creates a VGSRequest with the arguments supplied to this.

@@ -116,7 +116,7 @@

Functions

-

Ignore input's data in a request to the server.

+

Ignore input's data in a request to the server.

@@ -131,7 +131,7 @@

Functions

-

Ignore files in a request to the server.

+

Ignore files in a request to the server.

@@ -146,7 +146,7 @@

Functions

-

It collect custom data which will be send to the server.

+

It collect custom data which will be send to the server.

@@ -161,7 +161,7 @@

Functions

-

It collect headers which will be send to the server.

+

It collect headers which will be send to the server.

@@ -176,7 +176,7 @@

Functions

-

Defines how to map fieldNames. Default is VGSCollectFieldNameMappingPolicy.NestedJson.

+

Defines how to map fieldNames. Default is VGSCollectFieldNameMappingPolicy.NestedJson.

@@ -191,7 +191,7 @@

Functions

-

Set the HTTP method using for a request to the server.

+

Set the HTTP method using for a request to the server.

@@ -206,7 +206,7 @@

Functions

-

Set the path using for a request to the server.

+

Set the path using for a request to the server.

@@ -221,7 +221,7 @@

Functions

-

Specifies request timeout interval in milliseconds.

+

Specifies request timeout interval in milliseconds.

@@ -236,7 +236,7 @@

Functions

-

Defines route id for submitting data.

+

Defines route id for submitting data.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-request/-v-g-s-request-builder/set-custom-data.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-request/-v-g-s-request-builder/set-custom-data.html index 43be864e2..2f4046334 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-request/-v-g-s-request-builder/set-custom-data.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-request/-v-g-s-request-builder/set-custom-data.html @@ -66,7 +66,7 @@

setCustomData

-

It collect custom data which will be send to the server.

Return

current builder instance

Parameters

customData

The Map to save for request.

+

It collect custom data which will be send to the server.

Return

current builder instance

Parameters

customData

The Map to save for request.

-

It collect headers which will be send to the server.

Return

current builder instance

Parameters

customHeader

The headers to save for request.

+

It collect headers which will be send to the server.

Return

current builder instance

Parameters

customHeader

The headers to save for request.

-

Defines how to map fieldNames. Default is VGSCollectFieldNameMappingPolicy.NestedJson.

Return

current builder instance

+

Defines how to map fieldNames. Default is VGSCollectFieldNameMappingPolicy.NestedJson.

Return

current builder instance

-

Set the HTTP method using for a request to the server.

Return

current builder instance

Parameters

method

HTTP method

+

Set the HTTP method using for a request to the server.

Return

current builder instance

Parameters

method

HTTP method

-

Set the path using for a request to the server.

Return

current builder instance

Parameters

path

path for a request

+

Set the path using for a request to the server.

Return

current builder instance

Parameters

path

path for a request

-

Specifies request timeout interval in milliseconds.

Parameters

timeout

interval in milliseconds.

+

Specifies request timeout interval in milliseconds.

Parameters

timeout

interval in milliseconds.

-

Defines route id for submitting data.

Parameters

routeId

A vault route id

+

Defines route id for submitting data.

Parameters

routeId

A vault route id

-
open override val customData: Map<String, Any>

Parameters

customData

The Map to save for request.

+
open override val customData: Map<String, Any>

Parameters

customData

The Map to save for request.

-
open override val customHeader: Map<String, String>

Parameters

customHeader

The headers to save for request.

+
open override val customHeader: Map<String, String>

Parameters

customHeader

The headers to save for request.

-
open override val customData: Map<String, Any>
+
open override val customData: Map<String, Any>
@@ -116,7 +116,7 @@

Properties

-
open override val customHeader: Map<String, String>
+
open override val customHeader: Map<String, String>
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-error-response/error-code.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-error-response/error-code.html index a1ce370a6..4cb761142 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-error-response/error-code.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-error-response/error-code.html @@ -66,7 +66,7 @@

errorCode

-

Parameters

errorCode

The response code from server.

+

Parameters

errorCode

The response code from server.

-
val body: String? = null
+
val body: String? = null
@@ -116,7 +116,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -131,7 +131,7 @@

Properties

- +
@@ -146,7 +146,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-error-response/localize-message.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-error-response/localize-message.html index 5e30d5462..c44d2f11d 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-error-response/localize-message.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-error-response/localize-message.html @@ -66,7 +66,7 @@

localizeMessage

-

Parameters

localizeMessage

The message of the error.

+

Parameters

localizeMessage

The message of the error.

-
constructor(response: Map<String, Any>? = null, successCode: Int = -1, rawResponse: String? = null)

Parameters

response

The response map from server.

rawResponse

The response string.

successCode

The response code from server.

+
constructor(response: Map<String, Any>? = null, successCode: Int = -1, rawResponse: String? = null)

Parameters

response

The response map from server.

rawResponse

The response string.

successCode

The response code from server.

SuccessResponse

-
data class SuccessResponse(val response: Map<String, Any>? = null, val successCode: Int = -1, val rawResponse: String? = null) : VGSResponse

The class definition for a success response state.

Parameters

response

The response map from server.

rawResponse

The response string.

successCode

The response code from server.

+
data class SuccessResponse(val response: Map<String, Any>? = null, val successCode: Int = -1, val rawResponse: String? = null) : VGSResponse

The class definition for a success response state.

Parameters

response

The response map from server.

rawResponse

The response string.

successCode

The response code from server.

@@ -82,7 +82,7 @@

Constructors

-
constructor(response: Map<String, Any>? = null, successCode: Int = -1, rawResponse: String? = null)
+
constructor(response: Map<String, Any>? = null, successCode: Int = -1, rawResponse: String? = null)
@@ -101,7 +101,7 @@

Properties

-
val body: String? = null
+
val body: String? = null
@@ -116,7 +116,7 @@

Properties

-
val code: Int
+
val code: Int
@@ -131,7 +131,7 @@

Properties

-
val rawResponse: String? = null
+
val rawResponse: String? = null
@@ -146,7 +146,7 @@

Properties

-
val response: Map<String, Any>? = null
+
val response: Map<String, Any>? = null
@@ -161,7 +161,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-success-response/raw-response.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-success-response/raw-response.html index e77e1ab02..2fb078db4 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-success-response/raw-response.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/-v-g-s-response/-success-response/raw-response.html @@ -66,7 +66,7 @@

rawResponse

-
val rawResponse: String? = null

Deprecated

body attribute better to use for response parsing

Parameters

rawResponse

The response string.

+
val rawResponse: String? = null

Deprecated

body attribute better to use for response parsing

Parameters

rawResponse

The response string.

-
val response: Map<String, Any>? = null

Deprecated

body attribute better to use for response parsing

Parameters

response

The response map from server.

+
val response: Map<String, Any>? = null

Deprecated

body attribute better to use for response parsing

Parameters

response

The response map from server.

-

Parameters

successCode

The response code from server.

+

Parameters

successCode

The response code from server.

-
val body: String? = null

Parameters

body

The response string.

+
val body: String? = null

Parameters

body

The response string.

-
val code: Int

Parameters

code

The response code from server.

+
val code: Int

Parameters

code

The response code from server.

-
data class SuccessResponse(val response: Map<String, Any>? = null, val successCode: Int = -1, val rawResponse: String? = null) : VGSResponse

The class definition for a success response state.

+
data class SuccessResponse(val response: Map<String, Any>? = null, val successCode: Int = -1, val rawResponse: String? = null) : VGSResponse

The class definition for a success response state.

@@ -116,7 +116,7 @@

Properties

-
val body: String? = null
+
val body: String? = null
@@ -131,7 +131,7 @@

Properties

-
val code: Int
+
val code: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/index.html index 9bcfd8822..24754e198 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/index.html @@ -81,7 +81,7 @@

Types

-
data class NetworkRequest(val method: HTTPMethod, var url: String, val customHeader: Map<String, String>, val customData: Any, val fieldsIgnore: Boolean, val fileIgnore: Boolean, val format: VGSHttpBodyFormat, val requestTimeoutInterval: Long, val requiresTokenization: Boolean)
+
data class NetworkRequest(val method: HTTPMethod, var url: String, val customHeader: Map<String, String>, val customData: Any, val fieldsIgnore: Boolean, val fileIgnore: Boolean, val format: VGSHttpBodyFormat, val requestTimeoutInterval: Long, val requiresTokenization: Boolean)
@@ -126,7 +126,7 @@

Types

- +
@@ -166,7 +166,7 @@

Types

Functions

-
+
@@ -175,7 +175,7 @@

Functions

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/to-v-g-s-response.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/to-v-g-s-response.html index 1e5159e04..569dfcb70 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/to-v-g-s-response.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.network/to-v-g-s-response.html @@ -66,7 +66,7 @@

toVGSResponse

- +
- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g_-s-i-x_-t_-f-o-u-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g_-s-i-x_-t_-f-o-u-r/index.html index dc52523ca..c8b3812a2 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g_-s-i-x_-t_-f-o-u-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g_-s-i-x_-t_-f-o-u-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g_-t_-f-o-u-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g_-t_-f-o-u-r/index.html index 48ed87392..e39549578 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g_-t_-f-o-u-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g_-t_-f-o-u-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-s-i-x_-t_-f-o-u-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-s-i-x_-t_-f-o-u-r/index.html index ef8ef5b53..8814ffa63 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-s-i-x_-t_-f-o-u-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-s-i-x_-t_-f-o-u-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-s-s-n_-t_-f-o-u-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-s-s-n_-t_-f-o-u-r/index.html index fd6e7f336..957c3e96d 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-s-s-n_-t_-f-o-u-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-a-l-p-h-a-n-u-m-e-r-i-c_-s-s-n_-t_-f-o-u-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-a-c-c_-n-u-m_-t_-f-o-u-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-a-c-c_-n-u-m_-t_-f-o-u-r/index.html index 0ef863aa2..568c7f71a 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-a-c-c_-n-u-m_-t_-f-o-u-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-a-c-c_-n-u-m_-t_-f-o-u-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-a-l-p-h-a-n-u-m-e-r-i-c_-a-c-c_-n-u-m_-t_-f-o-u-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-a-l-p-h-a-n-u-m-e-r-i-c_-a-c-c_-n-u-m_-t_-f-o-u-r/index.html index c9a73946a..8bbf702c7 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-a-l-p-h-a-n-u-m-e-r-i-c_-a-c-c_-n-u-m_-t_-f-o-u-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-a-l-p-h-a-n-u-m-e-r-i-c_-a-c-c_-n-u-m_-t_-f-o-u-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-s-i-x_-t_-f-o-u-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-s-i-x_-t_-f-o-u-r/index.html index 571efde54..8ff670c91 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-s-i-x_-t_-f-o-u-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-s-i-x_-t_-f-o-u-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-s-s-n_-t_-f-o-u-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-s-s-n_-t_-f-o-u-r/index.html index 6e0377aec..fe913c00e 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-s-s-n_-t_-f-o-u-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-s-s-n_-t_-f-o-u-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-t_-f-o-u-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-t_-f-o-u-r/index.html index aa602600c..5f0f1926c 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-t_-f-o-u-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-f-p-e_-t_-f-o-u-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-g-e-n-e-r-i-c_-t_-f-o-u-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-g-e-n-e-r-i-c_-t_-f-o-u-r/index.html index 51f387b4a..953e56278 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-g-e-n-e-r-i-c_-t_-f-o-u-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-g-e-n-e-r-i-c_-t_-f-o-u-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-n-u-m_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-n-u-m_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g/index.html index 07cfbf9b6..67f68789d 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-n-u-m_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-n-u-m_-l-e-n-g-t-h_-p-r-e-s-e-r-v-i-n-g/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-p-f-p-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-p-f-p-t/index.html index d37d1abf6..ea09e6a72 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-p-f-p-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-p-f-p-t/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-r-a-w_-u-u-i-d/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-r-a-w_-u-u-i-d/index.html index fbdeb4dbf..cddc51c02 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-r-a-w_-u-u-i-d/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-r-a-w_-u-u-i-d/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-u-u-i-d/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-u-u-i-d/index.html index 2fe28fcef..e56551185 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-u-u-i-d/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/-u-u-i-d/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/entries.html index 1f3b082bc..523665125 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

VGSVaultAliasFormat

-
+
@@ -311,7 +311,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -326,7 +326,7 @@

Properties

- +
@@ -341,7 +341,7 @@

Properties

- +
@@ -360,7 +360,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -375,7 +375,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/value-of.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/value-of.html index 5bff196c2..12ee5a4ee 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/value-of.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-alias-format/value-of.html @@ -66,7 +66,7 @@

valueOf

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/-v-o-l-a-t-i-l-e/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/-v-o-l-a-t-i-l-e/index.html index 599020fb5..c1f644d36 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/-v-o-l-a-t-i-l-e/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/-v-o-l-a-t-i-l-e/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/entries.html index ada5f1b3b..7775c4d7e 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

VGSVaultStorageType

-
+
@@ -116,7 +116,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -131,7 +131,7 @@

Properties

- +
@@ -146,7 +146,7 @@

Properties

- +
@@ -165,7 +165,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -180,7 +180,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/value-of.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/value-of.html index 060ef0a1e..ffea45319 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/value-of.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state.tokenization/-v-g-s-vault-storage-type/value-of.html @@ -66,7 +66,7 @@

valueOf

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

- +
@@ -96,7 +96,7 @@

Types

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-c-v-c-state/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-c-v-c-state/index.html index 1748c22fe..30407e94f 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-c-v-c-state/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-c-v-c-state/index.html @@ -101,7 +101,7 @@

Properties

-

The length of this character sequence inside input.

+

The length of this character sequence inside input.

@@ -116,7 +116,7 @@

Properties

-

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -131,7 +131,7 @@

Properties

-

The type of current VGS input field.

+

The type of current VGS input field.

@@ -146,7 +146,7 @@

Properties

-

The State is true if this input field has focus itself.

+

The State is true if this input field has focus itself.

@@ -161,7 +161,7 @@

Properties

-

The state is true if the input field has no input inside.

+

The state is true if the input field has no input inside.

@@ -176,7 +176,7 @@

Properties

-

The state is true if the input field may be skipped for submitting.

+

The state is true if the input field may be skipped for submitting.

@@ -191,7 +191,7 @@

Properties

-

The state is true if the content inside the input field is valid.

+

The state is true if the content inside the input field is valid.

@@ -206,7 +206,7 @@

Properties

-

List of errors.

+

List of errors.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-holder-name-state/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-holder-name-state/index.html index b195c6e12..e8cc66473 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-holder-name-state/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-holder-name-state/index.html @@ -101,7 +101,7 @@

Properties

-

The length of this character sequence inside input.

+

The length of this character sequence inside input.

@@ -116,7 +116,7 @@

Properties

-

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -131,7 +131,7 @@

Properties

-

The type of current VGS input field.

+

The type of current VGS input field.

@@ -146,7 +146,7 @@

Properties

-

The State is true if this input field has focus itself.

+

The State is true if this input field has focus itself.

@@ -161,7 +161,7 @@

Properties

-

The state is true if the input field has no input inside.

+

The state is true if the input field has no input inside.

@@ -176,7 +176,7 @@

Properties

-

The state is true if the input field may be skipped for submitting.

+

The state is true if the input field may be skipped for submitting.

@@ -191,7 +191,7 @@

Properties

-

The state is true if the content inside the input field is valid.

+

The state is true if the content inside the input field is valid.

@@ -206,7 +206,7 @@

Properties

-

List of errors.

+

List of errors.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-number-state/bin.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-number-state/bin.html index a38c49dd7..fd6813f29 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-number-state/bin.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-number-state/bin.html @@ -66,7 +66,7 @@

bin

-
var bin: String?

Bank Identification Number.

+
var bin: String?

Bank Identification Number.

-

The brand of the card.

+

The brand of the card.

-

The length of this character sequence inside input. Comparing with contentLength, the contentLengthRaw doesn't count divider symbol.

+

The length of this character sequence inside input. Comparing with contentLength, the contentLengthRaw doesn't count divider symbol.

-

The resource identifier of the detected card brand.

+

The resource identifier of the detected card brand.

-
var bin: String?

Bank Identification Number.

+
var bin: String?

Bank Identification Number.

@@ -116,7 +116,7 @@

Properties

-

The brand of the card.

+

The brand of the card.

@@ -131,7 +131,7 @@

Properties

-

The length of this character sequence inside input.

+

The length of this character sequence inside input.

@@ -146,7 +146,7 @@

Properties

-

The length of this character sequence inside input. Comparing with contentLength, the contentLengthRaw doesn't count divider symbol.

+

The length of this character sequence inside input. Comparing with contentLength, the contentLengthRaw doesn't count divider symbol.

@@ -161,7 +161,7 @@

Properties

-

The resource identifier of the detected card brand.

+

The resource identifier of the detected card brand.

@@ -176,7 +176,7 @@

Properties

-

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -191,7 +191,7 @@

Properties

-

The type of current VGS input field.

+

The type of current VGS input field.

@@ -206,7 +206,7 @@

Properties

-

The State is true if this input field has focus itself.

+

The State is true if this input field has focus itself.

@@ -221,7 +221,7 @@

Properties

-

The state is true if the input field has no input inside.

+

The state is true if the input field has no input inside.

@@ -236,7 +236,7 @@

Properties

-

The state is true if the input field may be skipped for submitting.

+

The state is true if the input field may be skipped for submitting.

@@ -251,7 +251,7 @@

Properties

-

The state is true if the content inside the input field is valid.

+

The state is true if the content inside the input field is valid.

@@ -266,7 +266,7 @@

Properties

-
var last: String?

The last numbers on card.

+
var last: String?

The last numbers on card.

@@ -281,7 +281,7 @@

Properties

-

The card number.

+

The card number.

@@ -296,7 +296,7 @@

Properties

-

List of errors.

+

List of errors.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-number-state/last.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-number-state/last.html index c0a982c28..60655abe7 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-number-state/last.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-card-number-state/last.html @@ -66,7 +66,7 @@

last

-
var last: String?

The last numbers on card.

+
var last: String?

The last numbers on card.

-

The card number.

+

The card number.

-

The length of this character sequence inside input.

+

The length of this character sequence inside input.

@@ -116,7 +116,7 @@

Properties

-

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -131,7 +131,7 @@

Properties

-

The type of current VGS input field.

+

The type of current VGS input field.

@@ -146,7 +146,7 @@

Properties

-

The State is true if this input field has focus itself.

+

The State is true if this input field has focus itself.

@@ -161,7 +161,7 @@

Properties

-

The state is true if the input field has no input inside.

+

The state is true if the input field has no input inside.

@@ -176,7 +176,7 @@

Properties

-

The state is true if the input field may be skipped for submitting.

+

The state is true if the input field may be skipped for submitting.

@@ -191,7 +191,7 @@

Properties

-

The state is true if the content inside the input field is valid.

+

The state is true if the content inside the input field is valid.

@@ -206,7 +206,7 @@

Properties

-

List of errors.

+

List of errors.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-info-state/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-info-state/index.html index 01f8a462a..640c757cd 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-info-state/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-info-state/index.html @@ -101,7 +101,7 @@

Properties

-

The length of this character sequence inside input.

+

The length of this character sequence inside input.

@@ -116,7 +116,7 @@

Properties

-

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -131,7 +131,7 @@

Properties

-

The type of current VGS input field.

+

The type of current VGS input field.

@@ -146,7 +146,7 @@

Properties

-

The State is true if this input field has focus itself.

+

The State is true if this input field has focus itself.

@@ -161,7 +161,7 @@

Properties

-

The state is true if the input field has no input inside.

+

The state is true if the input field has no input inside.

@@ -176,7 +176,7 @@

Properties

-

The state is true if the input field may be skipped for submitting.

+

The state is true if the input field may be skipped for submitting.

@@ -191,7 +191,7 @@

Properties

-

The state is true if the content inside the input field is valid.

+

The state is true if the content inside the input field is valid.

@@ -206,7 +206,7 @@

Properties

-

List of errors.

+

List of errors.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-s-s-n-number-state/content-length-raw.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-s-s-n-number-state/content-length-raw.html index e62434567..863c5ee2c 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-s-s-n-number-state/content-length-raw.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-s-s-n-number-state/content-length-raw.html @@ -66,7 +66,7 @@

contentLengthRaw

-

The length of this character sequence inside input. Comparing with contentLength, the contentLengthRaw doesn't count divider symbol.

+

The length of this character sequence inside input. Comparing with contentLength, the contentLengthRaw doesn't count divider symbol.

-

The length of this character sequence inside input.

+

The length of this character sequence inside input.

@@ -116,7 +116,7 @@

Properties

-

The length of this character sequence inside input. Comparing with contentLength, the contentLengthRaw doesn't count divider symbol.

+

The length of this character sequence inside input. Comparing with contentLength, the contentLengthRaw doesn't count divider symbol.

@@ -131,7 +131,7 @@

Properties

-

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -146,7 +146,7 @@

Properties

-

The type of current VGS input field.

+

The type of current VGS input field.

@@ -161,7 +161,7 @@

Properties

-

The State is true if this input field has focus itself.

+

The State is true if this input field has focus itself.

@@ -176,7 +176,7 @@

Properties

-

The state is true if the input field has no input inside.

+

The state is true if the input field has no input inside.

@@ -191,7 +191,7 @@

Properties

-

The state is true if the input field may be skipped for submitting.

+

The state is true if the input field may be skipped for submitting.

@@ -206,7 +206,7 @@

Properties

-

The state is true if the content inside the input field is valid.

+

The state is true if the content inside the input field is valid.

@@ -221,7 +221,7 @@

Properties

-
var last: String?

The last numbers on card.

+
var last: String?

The last numbers on card.

@@ -236,7 +236,7 @@

Properties

-

List of errors.

+

List of errors.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-s-s-n-number-state/last.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-s-s-n-number-state/last.html index aa27a48ea..4c3ddfa70 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-s-s-n-number-state/last.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/-s-s-n-number-state/last.html @@ -66,7 +66,7 @@

last

-
var last: String?

The last numbers on card.

+
var last: String?

The last numbers on card.

-

The length of this character sequence inside input.

+

The length of this character sequence inside input.

-

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

-

The type of current VGS input field.

+

The type of current VGS input field.

-

The State is true if this input field has focus itself.

+

The State is true if this input field has focus itself.

-

The length of this character sequence inside input.

+

The length of this character sequence inside input.

@@ -191,7 +191,7 @@

Properties

-

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -206,7 +206,7 @@

Properties

-

The type of current VGS input field.

+

The type of current VGS input field.

@@ -221,7 +221,7 @@

Properties

-

The State is true if this input field has focus itself.

+

The State is true if this input field has focus itself.

@@ -236,7 +236,7 @@

Properties

-

The state is true if the input field has no input inside.

+

The state is true if the input field has no input inside.

@@ -251,7 +251,7 @@

Properties

-

The state is true if the input field may be skipped for submitting.

+

The state is true if the input field may be skipped for submitting.

@@ -266,7 +266,7 @@

Properties

-

The state is true if the content inside the input field is valid.

+

The state is true if the content inside the input field is valid.

@@ -281,7 +281,7 @@

Properties

-

List of errors.

+

List of errors.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/is-empty.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/is-empty.html index 73ffc8727..9a0334bb0 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/is-empty.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-field-state/is-empty.html @@ -66,7 +66,7 @@

isEmpty

-

The state is true if the input field has no input inside.

+

The state is true if the input field has no input inside.

-

The state is true if the input field may be skipped for submitting.

+

The state is true if the input field may be skipped for submitting.

-

The state is true if the content inside the input field is valid.

+

The state is true if the content inside the input field is valid.

-

List of errors.

+

List of errors.

-

Parameters

fieldName

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+

Parameters

fieldName

The text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

- +
@@ -116,7 +116,7 @@

Properties

- +
@@ -131,7 +131,7 @@

Properties

-
val name: String?
+
val name: String?
@@ -146,7 +146,7 @@

Properties

-
val size: Long = 0
+
val size: Long = 0
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-file-state/mime-type.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-file-state/mime-type.html index 19feeb005..95bae6248 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-file-state/mime-type.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/-file-state/mime-type.html @@ -66,7 +66,7 @@

mimeType

-

Parameters

mimeType

The size of a file which it takes up on your device.

+

Parameters

mimeType

The size of a file which it takes up on your device.

-
val name: String?

Parameters

name

The name of the file.

+
val name: String?

Parameters

name

The name of the file.

-
val size: Long = 0

Parameters

size

The size of a file which it takes up on your device.

+
val size: Long = 0

Parameters

size

The size of a file which it takes up on your device.

-
fun prepareSSNState(isValid: Boolean, content: FieldContent.SSNContent?): FieldState.SSNNumberState
+
fun prepareSSNState(isValid: Boolean, content: FieldContent.SSNContent?): FieldState.SSNNumberState
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/prepare-s-s-n-state.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/prepare-s-s-n-state.html index 0b16ea043..2969b1b57 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/prepare-s-s-n-state.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model.state/prepare-s-s-n-state.html @@ -66,7 +66,7 @@

prepareSSNState

-
fun prepareSSNState(isValid: Boolean, content: FieldContent.SSNContent?): FieldState.SSNNumberState
+
fun prepareSSNState(isValid: Boolean, content: FieldContent.SSNContent?): FieldState.SSNNumberState
- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n/index.html index 3017250e7..4230f1e78 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n_-w-i-t-h_-a-r-r-a-y-s_-m-e-r-g-e/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n_-w-i-t-h_-a-r-r-a-y-s_-m-e-r-g-e/index.html index 02de5ad98..f7313722a 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n_-w-i-t-h_-a-r-r-a-y-s_-m-e-r-g-e/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n_-w-i-t-h_-a-r-r-a-y-s_-m-e-r-g-e/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n_-w-i-t-h_-a-r-r-a-y-s_-o-v-e-r-w-r-i-t-e/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n_-w-i-t-h_-a-r-r-a-y-s_-o-v-e-r-w-r-i-t-e/index.html index 6d9df66dd..f7e866003 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n_-w-i-t-h_-a-r-r-a-y-s_-o-v-e-r-w-r-i-t-e/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/-n-e-s-t-e-d_-j-s-o-n_-w-i-t-h_-a-r-r-a-y-s_-o-v-e-r-w-r-i-t-e/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/entries.html index 6814c70c0..b58c4c20b 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

VGSCollectFieldNameMappingPolicy

-
+
@@ -146,7 +146,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -161,7 +161,7 @@

Properties

- +
@@ -176,7 +176,7 @@

Properties

- +
@@ -195,7 +195,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -210,7 +210,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/value-of.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/value-of.html index 36b6e4d42..16193daac 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/value-of.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-collect-field-name-mapping-policy/value-of.html @@ -66,7 +66,7 @@

valueOf

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-
fun create(day: Int, month: Int, year: Int): VGSDate?
+
fun create(day: Int, month: Int, year: Int): VGSDate?
-
fun create(day: Int, month: Int, year: Int): VGSDate?
+
fun create(day: Int, month: Int, year: Int): VGSDate?
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-date/day.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-date/day.html index d7e9b3131..1e689ebf7 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-date/day.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-date/day.html @@ -66,7 +66,7 @@

day

-
val day: Int
+
val day: Int
-
val day: Int
+
val day: Int
@@ -116,7 +116,7 @@

Properties

-
val month: Int
+
val month: Int
@@ -131,7 +131,7 @@

Properties

- +
@@ -146,7 +146,7 @@

Properties

-
val year: Int
+
val year: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-date/month.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-date/month.html index b1929e22a..25366df79 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-date/month.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.model/-v-g-s-date/month.html @@ -66,7 +66,7 @@

month

-
val month: Int
+
val month: Int
-
+
-
val year: Int
+
val year: Int
- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage.content.file/-v-g-s-file-provider/attach-file.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage.content.file/-v-g-s-file-provider/attach-file.html index 318340864..834594929 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage.content.file/-v-g-s-file-provider/attach-file.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage.content.file/-v-g-s-file-provider/attach-file.html @@ -66,7 +66,7 @@

attachFile

-
abstract fun attachFile(activity: Activity, fieldName: String)

Mentioned below method allows to attach file to the temporary local file storage before its sending to the Server.

Parameters

activity

current Activity.

fieldName

is a key under which the file for JSON will be saved before sending.


abstract fun attachFile(fieldName: String)

Deprecated

Deprecated, overloaded function should be used.

Replace with

attachFile(activity, fieldName)

Mentioned below method allows to attach file to the temporary local file storage before its sending to the Server.

Parameters

fieldName

is a key under which the file for JSON will be saved before sending.

+
abstract fun attachFile(activity: Activity, fieldName: String)

Mentioned below method allows to attach file to the temporary local file storage before its sending to the Server.

Parameters

activity

current Activity.

fieldName

is a key under which the file for JSON will be saved before sending.


abstract fun attachFile(fieldName: String)

Deprecated

Deprecated, overloaded function should be used.

Replace with

attachFile(activity, fieldName)

Mentioned below method allows to attach file to the temporary local file storage before its sending to the Server.

Parameters

fieldName

is a key under which the file for JSON will be saved before sending.

-
abstract fun detachAll()

The method is used for detaching all previously attached files.

+
abstract fun detachAll()

The method is used for detaching all previously attached files.

-
abstract fun detachFile(file: FileState)

This method detaches only one separate file.

Parameters

FileState
+
abstract fun detachFile(file: FileState)

This method detaches only one separate file.

Parameters

FileState
-

Method is used to get attached files for reviewing them before their further sending.

Return

list of FileState

+

Method is used to get attached files for reviewing them before their further sending.

Return

list of FileState

-
abstract fun attachFile(fieldName: String)
abstract fun attachFile(activity: Activity, fieldName: String)

Mentioned below method allows to attach file to the temporary local file storage before its sending to the Server.

+
abstract fun attachFile(fieldName: String)
abstract fun attachFile(activity: Activity, fieldName: String)

Mentioned below method allows to attach file to the temporary local file storage before its sending to the Server.

@@ -97,7 +97,7 @@

Functions

-
abstract fun detachAll()

The method is used for detaching all previously attached files.

+
abstract fun detachAll()

The method is used for detaching all previously attached files.

@@ -112,7 +112,7 @@

Functions

-
abstract fun detachFile(file: FileState)

This method detaches only one separate file.

+
abstract fun detachFile(file: FileState)

This method detaches only one separate file.

@@ -127,7 +127,7 @@

Functions

-

Method is used to get attached files for reviewing them before their further sending.

+

Method is used to get attached files for reviewing them before their further sending.

@@ -142,7 +142,7 @@

Functions

-
abstract fun resize(cacheSize: Int)

Specify the maximum size of the cache for file stored before submit to the Proxy Server.

+
abstract fun resize(cacheSize: Int)

Specify the maximum size of the cache for file stored before submit to the Proxy Server.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage.content.file/-v-g-s-file-provider/resize.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage.content.file/-v-g-s-file-provider/resize.html index 41633cc2b..1b59b99a6 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage.content.file/-v-g-s-file-provider/resize.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage.content.file/-v-g-s-file-provider/resize.html @@ -66,7 +66,7 @@

resize

-
abstract fun resize(cacheSize: Int)

Specify the maximum size of the cache for file stored before submit to the Proxy Server.

Parameters

cacheSize

The new maximum size.

+
abstract fun resize(cacheSize: Int)

Specify the maximum size of the cache for file stored before submit to the Proxy Server.

Parameters

cacheSize

The new maximum size.

DependencyHandler

-
typealias DependencyHandler = (FieldType, Dependency) -> Unit
+
typealias DependencyHandler = (FieldType, Dependency) -> Unit
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage/-on-field-state-change-listener/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage/-on-field-state-change-listener/index.html index 2306188fd..d05ed790a 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage/-on-field-state-change-listener/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage/-on-field-state-change-listener/index.html @@ -82,7 +82,7 @@

Functions

-
abstract fun onStateChange(state: FieldState)

Called when new changes is detected

+
abstract fun onStateChange(state: FieldState)

Called when new changes is detected

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage/-on-field-state-change-listener/on-state-change.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage/-on-field-state-change-listener/on-state-change.html index 9571846f2..62c4f83ad 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage/-on-field-state-change-listener/on-state-change.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core.storage/-on-field-state-change-listener/on-state-change.html @@ -66,7 +66,7 @@

onStateChange

-
abstract fun onStateChange(state: FieldState)

Called when new changes is detected

Parameters

state

current state of input field

+
abstract fun onStateChange(state: FieldState)

Called when new changes is detected

Parameters

state

current state of input field

-
typealias DependencyHandler = (FieldType, Dependency) -> Unit
+
typealias DependencyHandler = (FieldType, Dependency) -> Unit
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/-l-i-v-e/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/-l-i-v-e/index.html index 8a8cbbf67..f16a73e59 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/-l-i-v-e/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/-l-i-v-e/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/-s-a-n-d-b-o-x/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/-s-a-n-d-b-o-x/index.html index fb719e0a0..ebd030d39 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/-s-a-n-d-b-o-x/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/-s-a-n-d-b-o-x/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/entries.html index 7c7aac82d..c0b14df8d 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

Environment

-

Define type of Vault for VGSCollect to communicate with. Please note, sensitive data cannot be used in the Sandbox environment. Therefore, it’s a risk-free and stress-free environment to test out VGS. You can easily modify your settings or even wipe the whole vault if you’d like.

Parameters

rawValue

Unique identifier.

+

Define type of Vault for VGSCollect to communicate with. Please note, sensitive data cannot be used in the Sandbox environment. Therefore, it’s a risk-free and stress-free environment to test out VGS. You can easily modify your settings or even wipe the whole vault if you’d like.

Parameters

rawValue

Unique identifier.

@@ -116,7 +116,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -131,7 +131,7 @@

Properties

- +
@@ -146,7 +146,7 @@

Properties

- +
@@ -161,7 +161,7 @@

Properties

- +
@@ -180,7 +180,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -195,7 +195,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/raw-value.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/raw-value.html index 6a33d7358..b40433a72 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/raw-value.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-environment/raw-value.html @@ -66,7 +66,7 @@

rawValue

-

Parameters

rawValue

Unique identifier.

+

Parameters

rawValue

Unique identifier.

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-g-e-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-g-e-t/index.html index f7a10481a..0acd8e9b9 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-g-e-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-g-e-t/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-a-t-c-h/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-a-t-c-h/index.html index dda8fc9e4..0494d6863 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-a-t-c-h/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-a-t-c-h/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-o-s-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-o-s-t/index.html index 6e94d0e7b..5deb0fada 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-o-s-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-o-s-t/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-u-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-u-t/index.html index 4e09dde5b..9af3fc7fe 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-u-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/-p-u-t/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/entries.html index 219b86e08..163d89286 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

HTTPMethod

-

The set of common methods for HTTP.

+

The set of common methods for HTTP.

@@ -161,7 +161,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -176,7 +176,7 @@

Properties

- +
@@ -191,7 +191,7 @@

Properties

- +
@@ -210,7 +210,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -225,7 +225,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/value-of.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/value-of.html index 6241306aa..f211f0140 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/value-of.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-h-t-t-p-method/value-of.html @@ -66,7 +66,7 @@

valueOf

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-

Creates an VGSCollect with the arguments supplied to this builder.

+

Creates an VGSCollect with the arguments supplied to this builder.

-

Creates an VGSCollect with the arguments supplied to this builder.

+

Creates an VGSCollect with the arguments supplied to this builder.

@@ -116,7 +116,7 @@

Functions

-

Specify Environment for the VGSCollect instance.

Specify Environment for the VGSCollect instance. Also, Environment could be used with region prefix ( sandbox-eu-0 ).

+

Specify Environment for the VGSCollect instance.

Specify Environment for the VGSCollect instance. Also, Environment could be used with region prefix ( sandbox-eu-0 ).

@@ -131,7 +131,7 @@

Functions

-

Sets the VGSCollect instance to use the custom hostname. Also, the localhost IP can be used for VGS-Satellite for local testing.

+

Sets the VGSCollect instance to use the custom hostname. Also, the localhost IP can be used for VGS-Satellite for local testing.

@@ -146,7 +146,7 @@

Functions

-
fun setPort(@IntRange(from = 1, to = 65353) port: Int): VGSCollect.Builder

Sets the VGSCollect instance to use the custom hostname port. Port can be used only with localhost with VGS-Satellite, otherwise, it will be ignored.

+
fun setPort(@IntRange(from = 1, to = 65353) port: Int): VGSCollect.Builder

Sets the VGSCollect instance to use the custom hostname port. Port can be used only with localhost with VGS-Satellite, otherwise, it will be ignored.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-v-g-s-collect/-builder/set-environment.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-v-g-s-collect/-builder/set-environment.html index b2e8546ee..6259357cf 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-v-g-s-collect/-builder/set-environment.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-v-g-s-collect/-builder/set-environment.html @@ -66,7 +66,7 @@

setEnvironment

-

Specify Environment for the VGSCollect instance.


Specify Environment for the VGSCollect instance. Also, Environment could be used with region prefix ( sandbox-eu-0 ).

+

Specify Environment for the VGSCollect instance.


Specify Environment for the VGSCollect instance. Also, Environment could be used with region prefix ( sandbox-eu-0 ).

-

Sets the VGSCollect instance to use the custom hostname. Also, the localhost IP can be used for VGS-Satellite for local testing.

Parameters

cname

where VGSCollect will send requests.

+

Sets the VGSCollect instance to use the custom hostname. Also, the localhost IP can be used for VGS-Satellite for local testing.

Parameters

cname

where VGSCollect will send requests.

-
fun setPort(@IntRange(from = 1, to = 65353) port: Int): VGSCollect.Builder

Sets the VGSCollect instance to use the custom hostname port. Port can be used only with localhost with VGS-Satellite, otherwise, it will be ignored.

Parameters

port

Integer value from 1 to 65353.

+
fun setPort(@IntRange(from = 1, to = 65353) port: Int): VGSCollect.Builder

Sets the VGSCollect instance to use the custom hostname port. Port can be used only with localhost with VGS-Satellite, otherwise, it will be ignored.

Parameters

port

Integer value from 1 to 65353.

-

This method adds a listener whose methods are called whenever VGS secure fields state changes.

Parameters

fieldStateListener

listener which will notify about changes inside input fields.

+

This method adds a listener whose methods are called whenever VGS secure fields state changes.

Parameters

fieldStateListener

listener which will notify about changes inside input fields.

-

Adds a listener to the list of those whose methods are called whenever the VGSCollect receive response from Server.

Parameters

onResponseListener

Interface definition for a receiving callback.

+

Adds a listener to the list of those whose methods are called whenever the VGSCollect receive response from Server.

Parameters

onResponseListener

Interface definition for a receiving callback.

-
fun asyncSubmit(path: String, method: HTTPMethod)

This method executes and send data on VGS Server.

Parameters

path

path for a request

method

HTTP method


fun asyncSubmit(request: VGSRequest)

This method executes and send data on VGS Server.

Parameters

request

data class with attributes for submit

+
fun asyncSubmit(path: String, method: HTTPMethod)

This method executes and send data on VGS Server.

Parameters

path

path for a request

method

HTTP method


fun asyncSubmit(request: VGSRequest)

This method executes and send data on VGS Server.

Parameters

request

data class with attributes for submit

-

Allows VGS secure fields to interact with VGSCollect and collect data from this source.

Parameters

view

base class for VGS secure fields.


fun bindView(vararg views: InputFieldView?)

Allows VGS secure fields to interact with VGSCollect and collect data from this source.

Parameters

views

VGS secure views.

+

Allows VGS secure fields to interact with VGSCollect and collect data from this source.

Parameters

view

base class for VGS secure fields.


fun bindView(vararg views: InputFieldView?)

Allows VGS secure fields to interact with VGSCollect and collect data from this source.

Parameters

views

VGS secure views.

-

Clear all response listeners attached before.

+

Clear all response listeners attached before.

-

Returns the states of all fields bound before to VGSCollect.

Return

the list of all input fields states, that were bound before.

+

Returns the states of all fields bound before to VGSCollect.

Return

the list of all input fields states, that were bound before.

-

Return instance for managing attached files to request.

Return

VGSFileProvider instance

+

Return instance for managing attached files to request.

Return

VGSFileProvider instance

-

This method adds a listener whose methods are called whenever VGS secure fields state changes.

+

This method adds a listener whose methods are called whenever VGS secure fields state changes.

@@ -135,7 +135,7 @@

Functions

-

Adds a listener to the list of those whose methods are called whenever the VGSCollect receive response from Server.

+

Adds a listener to the list of those whose methods are called whenever the VGSCollect receive response from Server.

@@ -150,7 +150,7 @@

Functions

-
fun asyncSubmit(request: VGSRequest)
fun asyncSubmit(path: String, method: HTTPMethod)

This method executes and send data on VGS Server.

+
fun asyncSubmit(request: VGSRequest)
fun asyncSubmit(path: String, method: HTTPMethod)

This method executes and send data on VGS Server.

@@ -165,7 +165,7 @@

Functions

-
fun bindView(vararg views: InputFieldView?)

Allows VGS secure fields to interact with VGSCollect and collect data from this source.

+
fun bindView(vararg views: InputFieldView?)

Allows VGS secure fields to interact with VGSCollect and collect data from this source.

@@ -180,7 +180,7 @@

Functions

-

Clear all response listeners attached before.

+

Clear all response listeners attached before.

@@ -195,7 +195,7 @@

Functions

-

Returns the states of all fields bound before to VGSCollect.

+

Returns the states of all fields bound before to VGSCollect.

@@ -210,7 +210,7 @@

Functions

-

Return instance for managing attached files to request.

+

Return instance for managing attached files to request.

@@ -225,7 +225,7 @@

Functions

-
fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?)

Called when an activity you launched exits, giving you the requestCode you started it with, the resultCode is returned, and any additional data for VGSCollect. Preferably call it inside onActivityResult system's callback.

+
fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?)

Called when an activity you launched exits, giving you the requestCode you started it with, the resultCode is returned, and any additional data for VGSCollect. Preferably call it inside onActivityResult system's callback.

@@ -240,7 +240,7 @@

Functions

-
fun onDestroy()

Clear all information collected before by VGSCollect. Preferably call it inside onDestroy system's callback.

+
fun onDestroy()

Clear all information collected before by VGSCollect. Preferably call it inside onDestroy system's callback.

@@ -255,7 +255,7 @@

Functions

-

Clear specific listener attached before.

+

Clear specific listener attached before.

@@ -270,7 +270,7 @@

Functions

-

Reset all static custom data which added before. This method has no impact on all custom data that were added with VGSRequest

+

Reset all static custom data which added before. This method has no impact on all custom data that were added with VGSRequest

@@ -285,7 +285,7 @@

Functions

-

Reset all static headers which added before. This method has no impact on all custom data that were added with VGSRequest

+

Reset all static headers which added before. This method has no impact on all custom data that were added with VGSRequest

@@ -300,7 +300,7 @@

Functions

-

If you want to disable collecting analytics from VGS Collect SDK, you can set the value to false. This helps us to understand which areas require improvements. No personal information is tracked.

+

If you want to disable collecting analytics from VGS Collect SDK, you can set the value to false. This helps us to understand which areas require improvements. No personal information is tracked.

@@ -315,7 +315,7 @@

Functions

-
fun setCustomData(data: Map<String, Any>?)

It collect custom data which will be send to server. This is static custom data that are stored and attach for all requests until resetCustomData method will be called.

+
fun setCustomData(data: Map<String, Any>?)

It collect custom data which will be send to server. This is static custom data that are stored and attach for all requests until resetCustomData method will be called.

@@ -330,7 +330,7 @@

Functions

-

It collects headers that will be sent to the server. This is static headers that are stored and attach for all requests until @resetCustomHeaders method will be called.

+

It collects headers that will be sent to the server. This is static headers that are stored and attach for all requests until @resetCustomHeaders method will be called.

@@ -345,7 +345,7 @@

Functions

-
fun submit(path: String, method: HTTPMethod = HTTPMethod.POST): VGSResponse

This method executes and send data on VGS Server. It could be useful if you want to handle multithreading by yourself. Do not use this method on the UI thread as this may crash.

+
fun submit(path: String, method: HTTPMethod = HTTPMethod.POST): VGSResponse

This method executes and send data on VGS Server. It could be useful if you want to handle multithreading by yourself. Do not use this method on the UI thread as this may crash.

@@ -375,7 +375,7 @@

Functions

-
fun tokenize()

The method sends data on VGS Server for tokenization.

+
fun tokenize()

The method sends data on VGS Server for tokenization.

@@ -390,7 +390,7 @@

Functions

-
fun unbindView(vararg views: InputFieldView?)

Allows to unsubscribe from a View updates.

+
fun unbindView(vararg views: InputFieldView?)

Allows to unsubscribe from a View updates.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-v-g-s-collect/on-activity-result.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-v-g-s-collect/on-activity-result.html index 412234d56..07b1220fc 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-v-g-s-collect/on-activity-result.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-v-g-s-collect/on-activity-result.html @@ -66,7 +66,7 @@

onActivityResult

-
fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?)

Called when an activity you launched exits, giving you the requestCode you started it with, the resultCode is returned, and any additional data for VGSCollect. Preferably call it inside onActivityResult system's callback.

Parameters

requestCode

The integer request code originally supplied to startActivityForResult(), allowing you to identify who this result came from.

resultCode

The integer result code returned by the child activity through its setResult().

data

An Intent, which can return result data to the caller (various data can be attached to Intent "extras").

+
fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?)

Called when an activity you launched exits, giving you the requestCode you started it with, the resultCode is returned, and any additional data for VGSCollect. Preferably call it inside onActivityResult system's callback.

Parameters

requestCode

The integer request code originally supplied to startActivityForResult(), allowing you to identify who this result came from.

resultCode

The integer result code returned by the child activity through its setResult().

data

An Intent, which can return result data to the caller (various data can be attached to Intent "extras").

-
fun onDestroy()

Clear all information collected before by VGSCollect. Preferably call it inside onDestroy system's callback.

+
fun onDestroy()

Clear all information collected before by VGSCollect. Preferably call it inside onDestroy system's callback.

-

Clear specific listener attached before.

Parameters

onResponseListener

Interface definition for a receiving callback.

+

Clear specific listener attached before.

Parameters

onResponseListener

Interface definition for a receiving callback.

-

Reset all static custom data which added before. This method has no impact on all custom data that were added with VGSRequest

+

Reset all static custom data which added before. This method has no impact on all custom data that were added with VGSRequest

-

Reset all static headers which added before. This method has no impact on all custom data that were added with VGSRequest

+

Reset all static headers which added before. This method has no impact on all custom data that were added with VGSRequest

-

If you want to disable collecting analytics from VGS Collect SDK, you can set the value to false. This helps us to understand which areas require improvements. No personal information is tracked.

Warning: if this option is set to false, it will increase resolving time for possible incidents.

+

If you want to disable collecting analytics from VGS Collect SDK, you can set the value to false. This helps us to understand which areas require improvements. No personal information is tracked.

Warning: if this option is set to false, it will increase resolving time for possible incidents.

-
fun setCustomData(data: Map<String, Any>?)

It collect custom data which will be send to server. This is static custom data that are stored and attach for all requests until resetCustomData method will be called.

Parameters

data

The Map to save for request.

+
fun setCustomData(data: Map<String, Any>?)

It collect custom data which will be send to server. This is static custom data that are stored and attach for all requests until resetCustomData method will be called.

Parameters

data

The Map to save for request.

-

It collects headers that will be sent to the server. This is static headers that are stored and attach for all requests until @resetCustomHeaders method will be called.

Parameters

headers

The headers to save for request.

+

It collects headers that will be sent to the server. This is static headers that are stored and attach for all requests until @resetCustomHeaders method will be called.

Parameters

headers

The headers to save for request.

-
fun submit(path: String, method: HTTPMethod = HTTPMethod.POST): VGSResponse

This method executes and send data on VGS Server. It could be useful if you want to handle multithreading by yourself. Do not use this method on the UI thread as this may crash.

Parameters

path

path for a request

method

HTTP method


This method executes and send data on VGS Server. It could be useful if you want to handle multithreading by yourself. Do not use this method on the UI thread as this may crash.

Parameters

request

data class with attributes for submit.

+
fun submit(path: String, method: HTTPMethod = HTTPMethod.POST): VGSResponse

This method executes and send data on VGS Server. It could be useful if you want to handle multithreading by yourself. Do not use this method on the UI thread as this may crash.

Parameters

path

path for a request

method

HTTP method


This method executes and send data on VGS Server. It could be useful if you want to handle multithreading by yourself. Do not use this method on the UI thread as this may crash.

Parameters

request

data class with attributes for submit.

-
fun tokenize()

The method sends data on VGS Server for tokenization.


The method sends data on VGS Server for tokenization.

Parameters

request

A tokenization request data.

+
fun tokenize()

The method sends data on VGS Server for tokenization.


The method sends data on VGS Server for tokenization.

Parameters

request

A tokenization request data.

-

Allows to unsubscribe from a View updates.

Parameters

view

base class for VGS secure fields.


fun unbindView(vararg views: InputFieldView?)

Allows to unsubscribe from a View updates.

Parameters

views

VGS secure views.

+

Allows to unsubscribe from a View updates.

Parameters

view

base class for VGS secure fields.


fun unbindView(vararg views: InputFieldView?)

Allows to unsubscribe from a View updates.

Parameters

views

VGS secure views.

-
abstract fun onResponse(response: VGSResponse?)

Called when some error is detected or received a response from Server.

+
abstract fun onResponse(response: VGSResponse?)

Called when some error is detected or received a response from Server.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-vgs-collect-response-listener/on-response.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-vgs-collect-response-listener/on-response.html index ac7cf5dcf..629fe0eea 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-vgs-collect-response-listener/on-response.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.core/-vgs-collect-response-listener/on-response.html @@ -66,7 +66,7 @@

onResponse

-
abstract fun onResponse(response: VGSResponse?)

Called when some error is detected or received a response from Server.

Parameters

response

The common Response class.

+
abstract fun onResponse(response: VGSResponse?)

Called when some error is detected or received a response from Server.

Parameters

response

The common Response class.

-

Define type of Vault for VGSCollect to communicate with. Please note, sensitive data cannot be used in the Sandbox environment. Therefore, it’s a risk-free and stress-free environment to test out VGS. You can easily modify your settings or even wipe the whole vault if you’d like.

+

Define type of Vault for VGSCollect to communicate with. Please note, sensitive data cannot be used in the Sandbox environment. Therefore, it’s a risk-free and stress-free environment to test out VGS. You can easily modify your settings or even wipe the whole vault if you’d like.

@@ -96,7 +96,7 @@

Types

-

The set of common methods for HTTP.

+

The set of common methods for HTTP.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.util.extension/except.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.util.extension/except.html index 678d230e5..932e662a1 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.util.extension/except.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.util.extension/except.html @@ -66,7 +66,7 @@

except

-
inline fun <T> Array<T>.except(item: T): Array<T>
+
inline fun <T> Array<T>.except(item: T): Array<T>
-
+
-
+
@@ -161,7 +161,7 @@

Functions

-
abstract fun setMask(mask: String)
+
abstract fun setMask(mask: String)
@@ -176,7 +176,7 @@

Functions

-
abstract fun setMode(mode: DatePickerMode)
+
abstract fun setMode(mode: DatePickerMode)
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.date/-date-picker-formatter/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.date/-date-picker-formatter/index.html index 9918a31c8..ae9cb06b1 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.date/-date-picker-formatter/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.date/-date-picker-formatter/index.html @@ -82,7 +82,7 @@

Functions

-
abstract fun getMask(): String
+
abstract fun getMask(): String
@@ -97,7 +97,7 @@

Functions

-
abstract fun setMask(mask: String)
+
abstract fun setMask(mask: String)
@@ -112,7 +112,7 @@

Functions

-
abstract fun setMode(mode: DatePickerMode)
+
abstract fun setMode(mode: DatePickerMode)
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.date/-date-picker-formatter/set-mode.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.date/-date-picker-formatter/set-mode.html index 7617d6f02..be56627ca 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.date/-date-picker-formatter/set-mode.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.date/-date-picker-formatter/set-mode.html @@ -66,7 +66,7 @@

setMode

-
abstract fun setMode(mode: DatePickerMode)
+
abstract fun setMode(mode: DatePickerMode)
- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/-s-t-r-i-c-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/-s-t-r-i-c-t/index.html index 21e63fec8..8349b4dc2 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/-s-t-r-i-c-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/-s-t-r-i-c-t/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/entries.html index adfc4b8e3..bf97dd2fc 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

FormatMode

-

Specifies rules on how to format the user input. Currently, it has an impact only on datePickerModes as input. By default, field apply strict mode.

+

Specifies rules on how to format the user input. Currently, it has an impact only on datePickerModes as input. By default, field apply strict mode.

@@ -116,7 +116,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -131,7 +131,7 @@

Properties

- +
@@ -146,7 +146,7 @@

Properties

- +
@@ -165,7 +165,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -180,7 +180,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/value-of.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/value-of.html index d4424616a..a637c415c 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/value-of.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter.rules/-format-mode/value-of.html @@ -66,7 +66,7 @@

valueOf

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-

Specifies rules on how to format the user input. Currently, it has an impact only on datePickerModes as input. By default, field apply strict mode.

+

Specifies rules on how to format the user input. Currently, it has an impact only on datePickerModes as input. By default, field apply strict mode.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter/-formatter/get-mask.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter/-formatter/get-mask.html index 65ded5b41..696229557 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter/-formatter/get-mask.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter/-formatter/get-mask.html @@ -66,7 +66,7 @@

getMask

-
abstract fun getMask(): String
+
abstract fun getMask(): String
-
abstract fun getMask(): String
+
abstract fun getMask(): String
@@ -97,7 +97,7 @@

Functions

-
abstract fun setMask(mask: String)
+
abstract fun setMask(mask: String)
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter/-formatter/set-mask.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter/-formatter/set-mask.html index 00c8d586f..fa35a1bc4 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter/-formatter/set-mask.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.formatter/-formatter/set-mask.html @@ -66,7 +66,7 @@

setMask

-
abstract fun setMask(mask: String)
+
abstract fun setMask(mask: String)
- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/-l-u-h-n/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/-l-u-h-n/index.html index d54026134..b78538ff8 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/-l-u-h-n/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/-l-u-h-n/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/-n-o-n-e/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/-n-o-n-e/index.html index 987f20a2a..7781f1443 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/-n-o-n-e/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/-n-o-n-e/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/entries.html index 0fa910701..59dc02379 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

ChecksumAlgorithm

-

The set of actions for checkSum validation.

+

The set of actions for checkSum validation.

@@ -131,7 +131,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -146,7 +146,7 @@

Properties

- +
@@ -161,7 +161,7 @@

Properties

- +
@@ -180,7 +180,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -195,7 +195,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/value-of.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/value-of.html index 8bf55e60f..498900020 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/value-of.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.payment/-checksum-algorithm/value-of.html @@ -66,7 +66,7 @@

valueOf

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-

The set of actions for checkSum validation.

+

The set of actions for checkSum validation.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-payment-card-number-rule/-validation-builder/build.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-payment-card-number-rule/-validation-builder/build.html index 0ab29d519..c94557081 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-payment-card-number-rule/-validation-builder/build.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-payment-card-number-rule/-validation-builder/build.html @@ -66,7 +66,7 @@

build

-

Creates a rule.

+

Creates a rule.

-

Creates a rule.

+

Creates a rule.

@@ -135,7 +135,7 @@

Functions

-
fun setAlgorithm(algorithm: ChecksumAlgorithm, errorMsg: String = CheckSumValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure behavior for validation checkSum.

+
fun setAlgorithm(algorithm: ChecksumAlgorithm, errorMsg: String = CheckSumValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure behavior for validation checkSum.

@@ -150,7 +150,7 @@

Functions

-

Configure maximum length which will support.

+

Configure maximum length which will support.

@@ -165,7 +165,7 @@

Functions

-

Configure minimum length which will support.

+

Configure minimum length which will support.

@@ -180,7 +180,7 @@

Functions

-
fun setAllowableNumberLength(length: IntArray, errorMsg: String = LengthMatchValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure the array of lengths which will support.

+
fun setAllowableNumberLength(length: IntArray, errorMsg: String = LengthMatchValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure the array of lengths which will support.

@@ -195,7 +195,7 @@

Functions

-

Determines whether the Collect SDK can override default validation rules.

+

Determines whether the Collect SDK can override default validation rules.

@@ -210,7 +210,7 @@

Functions

-
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure regex for validation input.

+
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure regex for validation input.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-payment-card-number-rule/-validation-builder/set-algorithm.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-payment-card-number-rule/-validation-builder/set-algorithm.html index d4694d04e..3b04400d0 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-payment-card-number-rule/-validation-builder/set-algorithm.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-payment-card-number-rule/-validation-builder/set-algorithm.html @@ -66,7 +66,7 @@

setAlgorithm

-
fun setAlgorithm(algorithm: ChecksumAlgorithm, errorMsg: String = CheckSumValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure behavior for validation checkSum.

+
fun setAlgorithm(algorithm: ChecksumAlgorithm, errorMsg: String = CheckSumValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure behavior for validation checkSum.

-

Determines whether the Collect SDK can override default validation rules.

+

Determines whether the Collect SDK can override default validation rules.

-

Configure maximum length which will support.

+

Configure maximum length which will support.

-

Configure minimum length which will support.

+

Configure minimum length which will support.

-
fun setAllowableNumberLength(length: IntArray, errorMsg: String = LengthMatchValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure the array of lengths which will support.

+
fun setAllowableNumberLength(length: IntArray, errorMsg: String = LengthMatchValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure the array of lengths which will support.

-
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure regex for validation input.

+
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): PaymentCardNumberRule.ValidationBuilder

Configure regex for validation input.

-

Creates a rule.

+

Creates a rule.

-

Creates a rule.

+

Creates a rule.

@@ -116,7 +116,7 @@

Functions

-

Configure maximum length which will support.

+

Configure maximum length which will support.

@@ -131,7 +131,7 @@

Functions

-

Configure minimum length which will support.

+

Configure minimum length which will support.

@@ -146,7 +146,7 @@

Functions

-
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): PersonNameRule.ValidationBuilder

Configure regex for validation input.

+
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): PersonNameRule.ValidationBuilder

Configure regex for validation input.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-person-name-rule/-validation-builder/set-allowable-max-length.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-person-name-rule/-validation-builder/set-allowable-max-length.html index 4c7c64e93..81b5db5bd 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-person-name-rule/-validation-builder/set-allowable-max-length.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-person-name-rule/-validation-builder/set-allowable-max-length.html @@ -66,7 +66,7 @@

setAllowableMaxLength

-

Configure maximum length which will support.

+

Configure maximum length which will support.

-

Configure minimum length which will support.

+

Configure minimum length which will support.

-
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): PersonNameRule.ValidationBuilder

Configure regex for validation input.

+
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): PersonNameRule.ValidationBuilder

Configure regex for validation input.

-

Creates a rule.

+

Creates a rule.

-

Creates a rule.

+

Creates a rule.

@@ -116,7 +116,7 @@

Functions

-

Configure maximum length which will support.

+

Configure maximum length which will support.

@@ -131,7 +131,7 @@

Functions

-

Configure minimum length which will support.

+

Configure minimum length which will support.

@@ -146,7 +146,7 @@

Functions

-
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): VGSInfoRule.ValidationBuilder

Configure regex for validation input.

+
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): VGSInfoRule.ValidationBuilder

Configure regex for validation input.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-v-g-s-info-rule/-validation-builder/set-allowable-max-length.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-v-g-s-info-rule/-validation-builder/set-allowable-max-length.html index 10040d026..f043fcb2e 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-v-g-s-info-rule/-validation-builder/set-allowable-max-length.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-v-g-s-info-rule/-validation-builder/set-allowable-max-length.html @@ -66,7 +66,7 @@

setAllowableMaxLength

-

Configure maximum length which will support.

+

Configure maximum length which will support.

-

Configure minimum length which will support.

+

Configure minimum length which will support.

-
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): VGSInfoRule.ValidationBuilder

Configure regex for validation input.

+
fun setRegex(regex: String, errorMsg: String = RegexValidator.DEFAULT_ERROR_MSG): VGSInfoRule.ValidationBuilder

Configure regex for validation input.

-
abstract fun onResult(isSuccessful: Boolean)

Invoke when validation complete.

+
abstract fun onResult(isSuccessful: Boolean)

Invoke when validation complete.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-v-g-s-validation-result-listener/on-result.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-v-g-s-validation-result-listener/on-result.html index 62005a667..0b20700d7 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-v-g-s-validation-result-listener/on-result.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation.rules/-v-g-s-validation-result-listener/on-result.html @@ -66,7 +66,7 @@

onResult

-
abstract fun onResult(isSuccessful: Boolean)

Invoke when validation complete.

+
abstract fun onResult(isSuccessful: Boolean)

Invoke when validation complete.

-
fun addRule(validator: VGSValidator)
+
fun addRule(validator: VGSValidator)
-
+
-
fun addRule(validator: VGSValidator)
+
fun addRule(validator: VGSValidator)
@@ -116,7 +116,7 @@

Functions

- +
@@ -131,7 +131,7 @@

Functions

-
fun removeRule(validator: VGSValidator)
+
fun removeRule(validator: VGSValidator)
@@ -146,7 +146,7 @@

Functions

-
fun validate(content: String): List<String>
+
fun validate(content: String): List<String>
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation/-composite-validator/remove-rule.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation/-composite-validator/remove-rule.html index 3fcbfb253..10d375da0 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation/-composite-validator/remove-rule.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card.validation/-composite-validator/remove-rule.html @@ -66,7 +66,7 @@

removeRule

-
fun removeRule(validator: VGSValidator)
+
fun removeRule(validator: VGSValidator)
-
fun validate(content: String): List<String>
+
fun validate(content: String): List<String>
-

The algorithm for validation checkSum.

+

The algorithm for validation checkSum.

-

The algorithm for validation checkSum.

+

The algorithm for validation checkSum.

@@ -116,7 +116,7 @@

Properties

-

Represents format of the current card's number.

+

Represents format of the current card's number.

@@ -131,7 +131,7 @@

Properties

-

The length of the card's CVC number which a brand supported.

+

The length of the card's CVC number which a brand supported.

@@ -146,7 +146,7 @@

Properties

-

The length of the card's number which a brand supported.

+

The length of the card's number which a brand supported.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-brand-params/mask.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-brand-params/mask.html index 718220a0c..fc03188fd 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-brand-params/mask.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-brand-params/mask.html @@ -66,7 +66,7 @@

mask

-

Represents format of the current card's number.

+

Represents format of the current card's number.

-

The length of the card's CVC number which a brand supported.

+

The length of the card's CVC number which a brand supported.

-

The length of the card's number which a brand supported.

+

The length of the card's number which a brand supported.

-

Parameters

cardBrandName
  • The name of current card brand. This name may be visible for users.

+

Parameters

cardBrandName
  • The name of current card brand. This name may be visible for users.

-

Parameters

drawableResId
  • The drawable resource represents credit card logo.

+

Parameters

drawableResId
  • The drawable resource represents credit card logo.

- +
@@ -116,7 +116,7 @@

Properties

- +
@@ -131,7 +131,7 @@

Properties

- +
@@ -146,7 +146,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-brand/params.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-brand/params.html index fca2ab3fa..fddfe6e4c 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-brand/params.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-brand/params.html @@ -66,7 +66,7 @@

params

-

Parameters

params
  • The set of parameters for card brand creation.

+

Parameters

params
  • The set of parameters for card brand creation.

-

Parameters

regex
  • The regex rules for detection card brand.

+

Parameters

regex
  • The regex rules for detection card brand.

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-a-n-k-o-r-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-a-n-k-o-r-t/index.html index 3e4ac7b98..f8ebadd63 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-a-n-k-o-r-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-a-n-k-o-r-t/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-i-n-c-l-u-b/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-i-n-c-l-u-b/index.html index 663ace8e2..42d78a098 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-i-n-c-l-u-b/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-i-n-c-l-u-b/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-i-s-c-o-v-e-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-i-s-c-o-v-e-r/index.html index b351759fd..4c9ae898a 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-i-s-c-o-v-e-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-d-i-s-c-o-v-e-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-e-l-o/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-e-l-o/index.html index b044a825a..7c3e44dda 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-e-l-o/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-e-l-o/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-f-o-r-b-r-u-g-s-f-o-r-e-n-i-n-g-e-n/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-f-o-r-b-r-u-g-s-f-o-r-e-n-i-n-g-e-n/index.html index 3cc2b4905..71b2eb5ce 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-f-o-r-b-r-u-g-s-f-o-r-e-n-i-n-g-e-n/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-f-o-r-b-r-u-g-s-f-o-r-e-n-i-n-g-e-n/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-h-i-p-e-r-c-a-r-d/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-h-i-p-e-r-c-a-r-d/index.html index 81ddf3c15..83ffcbdf2 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-h-i-p-e-r-c-a-r-d/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-h-i-p-e-r-c-a-r-d/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-j-c-b/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-j-c-b/index.html index 1592013e5..47d53a1b4 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-j-c-b/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-j-c-b/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-m-a-e-s-t-r-o/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-m-a-e-s-t-r-o/index.html index 48700cade..01fc6311c 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-m-a-e-s-t-r-o/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-m-a-e-s-t-r-o/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-m-a-s-t-e-r-c-a-r-d/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-m-a-s-t-e-r-c-a-r-d/index.html index 7114aa0d5..eafc41727 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-m-a-s-t-e-r-c-a-r-d/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-m-a-s-t-e-r-c-a-r-d/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-u-n-i-o-n-p-a-y/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-u-n-i-o-n-p-a-y/index.html index fa2e238aa..97cf79ce9 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-u-n-i-o-n-p-a-y/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-u-n-i-o-n-p-a-y/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-u-n-k-n-o-w-n/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-u-n-k-n-o-w-n/index.html index bd3014e34..a59272c27 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-u-n-k-n-o-w-n/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-u-n-k-n-o-w-n/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-v-i-s-a/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-v-i-s-a/index.html index 679b297d1..2de1ecc79 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-v-i-s-a/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-v-i-s-a/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-v-i-s-a_-e-l-e-c-t-r-o-n/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-v-i-s-a_-e-l-e-c-t-r-o-n/index.html index 946e1d2c5..923b08678 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-v-i-s-a_-e-l-e-c-t-r-o-n/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/-v-i-s-a_-e-l-e-c-t-r-o-n/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

- +
@@ -127,7 +127,7 @@

Properties

- +
@@ -142,7 +142,7 @@

Properties

- +
@@ -157,7 +157,7 @@

Properties

- +
@@ -172,7 +172,7 @@

Properties

- +
@@ -187,7 +187,7 @@

Properties

-
val resId: Int
+
val resId: Int
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/algorithm.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/algorithm.html index 53319012c..ec5689bee 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/algorithm.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/algorithm.html @@ -66,7 +66,7 @@

algorithm

-

Parameters

algorithm

The algorithm for validation checkSum.

+

Parameters

algorithm

The algorithm for validation checkSum.

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

CardType

-

Standard constants of credit card brands that are supported by SDK.

Parameters

regex

Regular expression rules for detection card's brand.

resId

The drawable resource represents credit card logo.

mask

Represents format of the current card's number.

algorithm

The algorithm for validation checkSum.

rangeNumber

The array of the card's number which a brand supported.

rangeCVV

The array of the card's CVC number which a brand supported.

+

Standard constants of credit card brands that are supported by SDK.

Parameters

regex

Regular expression rules for detection card's brand.

resId

The drawable resource represents credit card logo.

mask

Represents format of the current card's number.

algorithm

The algorithm for validation checkSum.

rangeNumber

The array of the card's number which a brand supported.

rangeCVV

The array of the card's CVC number which a brand supported.

@@ -296,7 +296,7 @@

Properties

- +
@@ -311,7 +311,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -326,7 +326,7 @@

Properties

- +
@@ -341,7 +341,7 @@

Properties

- +
@@ -356,7 +356,7 @@

Properties

- +
@@ -371,7 +371,7 @@

Properties

- +
@@ -386,7 +386,7 @@

Properties

- +
@@ -401,7 +401,7 @@

Properties

- +
@@ -416,7 +416,7 @@

Properties

-
val resId: Int
+
val resId: Int
@@ -435,7 +435,7 @@

Functions

-

Map CardType to CardBrand.

+

Map CardType to CardBrand.

@@ -450,7 +450,7 @@

Functions

-
fun valueOf(value: String): CardType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
fun valueOf(value: String): CardType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -465,7 +465,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/mask.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/mask.html index 84fefb6ec..775c04d8f 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/mask.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-card-type/mask.html @@ -66,7 +66,7 @@

mask

-

Parameters

mask

Represents format of the current card's number.

+

Parameters

mask

Represents format of the current card's number.

-

Parameters

rangeCVV

The array of the card's CVC number which a brand supported.

+

Parameters

rangeCVV

The array of the card's CVC number which a brand supported.

-

Parameters

rangeNumber

The array of the card's number which a brand supported.

+

Parameters

rangeNumber

The array of the card's number which a brand supported.

-

Parameters

regex

Regular expression rules for detection card's brand.

+

Parameters

regex

Regular expression rules for detection card's brand.

-
val resId: Int

Parameters

resId

The drawable resource represents credit card logo.

+
val resId: Int

Parameters

resId

The drawable resource represents credit card logo.

-
fun valueOf(value: String): CardType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+
fun valueOf(value: String): CardType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

-
val raw: String
+
val raw: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-a-r-d_-h-o-l-d-e-r_-n-a-m-e/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-a-r-d_-h-o-l-d-e-r_-n-a-m-e/index.html index 7c3436191..a41600947 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-a-r-d_-h-o-l-d-e-r_-n-a-m-e/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-a-r-d_-h-o-l-d-e-r_-n-a-m-e/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

-
val raw: String
+
val raw: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-a-r-d_-n-u-m-b-e-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-a-r-d_-n-u-m-b-e-r/index.html index 57190a957..3e05fab50 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-a-r-d_-n-u-m-b-e-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-a-r-d_-n-u-m-b-e-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

-
val raw: String
+
val raw: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-v-c/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-v-c/index.html index ffda8e564..2b4cabac3 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-v-c/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-c-v-c/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

-
val raw: String
+
val raw: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-d-a-t-e_-r-a-n-g-e/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-d-a-t-e_-r-a-n-g-e/index.html index de6a173d2..cfbfb9625 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-d-a-t-e_-r-a-n-g-e/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-d-a-t-e_-r-a-n-g-e/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

-
val raw: String
+
val raw: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-i-n-f-o/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-i-n-f-o/index.html index 2a8622af4..d5a1bc326 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-i-n-f-o/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-i-n-f-o/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

-
val raw: String
+
val raw: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-s-s-n/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-s-s-n/index.html index acf389b1f..120bd7033 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-s-s-n/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/-s-s-n/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
@@ -112,7 +112,7 @@

Properties

-
val raw: String
+
val raw: String
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/entries.html index dedcd4e94..252cc9851 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

FieldType

-

The enum class represents all available type of VGS input fields.

Since

1.0.1

+

The enum class represents all available type of VGS input fields.

Since

1.0.1

@@ -191,7 +191,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -206,7 +206,7 @@

Properties

- +
@@ -221,7 +221,7 @@

Properties

- +
@@ -236,7 +236,7 @@

Properties

-
val raw: String
+
val raw: String
@@ -255,7 +255,7 @@

Functions

-
fun valueOf(value: String): FieldType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+
fun valueOf(value: String): FieldType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -270,7 +270,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/raw.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/raw.html index 40ccea9fe..5aa9d5035 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/raw.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.card/-field-type/raw.html @@ -66,7 +66,7 @@

raw

-
val raw: String
+
val raw: String
-
fun valueOf(value: String): FieldType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+
fun valueOf(value: String): FieldType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-

Standard constants of credit card brands that are supported by SDK.

+

Standard constants of credit card brands that are supported by SDK.

@@ -126,7 +126,7 @@

Types

-

The enum class represents all available type of VGS input fields.

+

The enum class represents all available type of VGS input fields.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-field-data-serializer/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-field-data-serializer/index.html index c493b4cbb..120c4b6e5 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-field-data-serializer/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-field-data-serializer/index.html @@ -65,7 +65,7 @@

FieldDataSerializer

-
+
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-date-range-separate-serializer/-params/date-format.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-date-range-separate-serializer/-params/date-format.html index 0dcb7985f..bbef4f813 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-date-range-separate-serializer/-params/date-format.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-date-range-separate-serializer/-params/date-format.html @@ -66,7 +66,7 @@

dateFormat

-
+
-
+
- +
@@ -116,7 +116,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-date-range-separate-serializer/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-date-range-separate-serializer/index.html index 758a1aabb..665041cf5 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-date-range-separate-serializer/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-date-range-separate-serializer/index.html @@ -65,7 +65,7 @@

VGSDateRangeSeparateSerializer

-

Represents com.verygoodsecurity.vgscollect.widget.RangeDateEditText date split serializer. Note: com.verygoodsecurity.vgscollect.widget.RangeDateEditText fieldName will be ignored.

Parameters

dayFieldName
  • this field name will be used for day in request json.

monthFieldName
  • this field name will be used for month in request json.

yearFieldName
  • this field name will be used for year in request json.

+

Represents com.verygoodsecurity.vgscollect.widget.RangeDateEditText date split serializer. Note: com.verygoodsecurity.vgscollect.widget.RangeDateEditText fieldName will be ignored.

Parameters

dayFieldName
  • this field name will be used for day in request json.

monthFieldName
  • this field name will be used for month in request json.

yearFieldName
  • this field name will be used for year in request json.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-exp-date-separate-serializer/-params/date-format.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-exp-date-separate-serializer/-params/date-format.html index 318f8421d..b51cf5dfc 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-exp-date-separate-serializer/-params/date-format.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-exp-date-separate-serializer/-params/date-format.html @@ -66,7 +66,7 @@

dateFormat

-
+
-
+
- +
@@ -116,7 +116,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-exp-date-separate-serializer/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-exp-date-separate-serializer/index.html index 952356b53..90f668a65 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-exp-date-separate-serializer/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/-v-g-s-exp-date-separate-serializer/index.html @@ -65,7 +65,7 @@

VGSExpDateSeparateSerializer

-

Represents com.verygoodsecurity.vgscollect.widget.ExpirationDateEditText date split serializer. Note: com.verygoodsecurity.vgscollect.widget.ExpirationDateEditText fieldName will be ignored.

Parameters

monthFieldName
  • this field name will be used for month in request json.

yearFieldName
  • this field name will be used for year in request json.

+

Represents com.verygoodsecurity.vgscollect.widget.ExpirationDateEditText date split serializer. Note: com.verygoodsecurity.vgscollect.widget.ExpirationDateEditText fieldName will be ignored.

Parameters

monthFieldName
  • this field name will be used for month in request json.

yearFieldName
  • this field name will be used for year in request json.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/index.html index b86b1f940..9a65187c1 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.core.serializers/index.html @@ -81,7 +81,7 @@

Types

-
abstract class FieldDataSerializer<P, R>
+
abstract class FieldDataSerializer<P, R>
@@ -96,7 +96,7 @@

Types

- +
@@ -111,7 +111,7 @@

Types

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-c-a-l-e-n-d-a-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-c-a-l-e-n-d-a-r/index.html index 97a6fa1ae..172801e10 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-c-a-l-e-n-d-a-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-c-a-l-e-n-d-a-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-d-e-f-a-u-l-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-d-e-f-a-u-l-t/index.html index 81be1e44d..c155e7312 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-d-e-f-a-u-l-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-d-e-f-a-u-l-t/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-i-n-p-u-t/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-i-n-p-u-t/index.html index 08116a3e5..313d75094 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-i-n-p-u-t/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-i-n-p-u-t/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-s-p-i-n-n-e-r/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-s-p-i-n-n-e-r/index.html index d69bd2980..e8a63f91f 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-s-p-i-n-n-e-r/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/-s-p-i-n-n-e-r/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/entries.html index 02c61bdce..9c3ac7d61 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

DatePickerMode

-

The enum class represents all available modes of expiration date field.

+

The enum class represents all available modes of expiration date field.

@@ -146,7 +146,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -161,7 +161,7 @@

Properties

- +
@@ -176,7 +176,7 @@

Properties

- +
@@ -195,7 +195,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -210,7 +210,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/value-of.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/value-of.html index 9cfab59f2..ebce1de73 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/value-of.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.date/-date-picker-mode/value-of.html @@ -66,7 +66,7 @@

valueOf

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-

The enum class represents all available modes of expiration date field.

+

The enum class represents all available modes of expiration date field.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material.internal/-text-input-layout-saved-state/-companion/-c-r-e-a-t-o-r.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material.internal/-text-input-layout-saved-state/-companion/-c-r-e-a-t-o-r.html index 683091b7e..9a7f80dea 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material.internal/-text-input-layout-saved-state/-companion/-c-r-e-a-t-o-r.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material.internal/-text-input-layout-saved-state/-companion/-c-r-e-a-t-o-r.html @@ -66,7 +66,7 @@

CREATOR

-
+
- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material.internal/-text-input-layout-saved-state/error.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material.internal/-text-input-layout-saved-state/error.html index 0b84d62bf..ddf4ec4de 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material.internal/-text-input-layout-saved-state/error.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material.internal/-text-input-layout-saved-state/error.html @@ -66,7 +66,7 @@

error

-
+
- +
@@ -154,7 +154,7 @@

Functions

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/get-end-icon-mode.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/get-end-icon-mode.html index 801ee976c..9d008a563 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/get-end-icon-mode.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/get-end-icon-mode.html @@ -66,7 +66,7 @@

getEndIconMode

-

Returns the current {@link EndIconMode}.

Return

the end icon mode enum

+

Returns the current {@link EndIconMode}.

Return

the end icon mode enum

-

Returns the error message that was set to be displayed with setError(CharSequence), or null if no error was set or if error displaying is not enabled.

+

Returns the error message that was set to be displayed with setError(CharSequence), or null if no error was set or if error displaying is not enabled.

-

Returns the helper message that was set to be displayed with setHelperText(CharSequence), or null if no helper text was set or if helper text functionality is not enabled.

See also

#setHelperText(CharSequence)

+

Returns the helper message that was set to be displayed with setHelperText(CharSequence), or null if no helper text was set or if helper text functionality is not enabled.

See also

#setHelperText(CharSequence)

-

Gets the collapsed hint text color.

+

Gets the collapsed hint text color.

-
open fun getHint(): CharSequence?

Returns the hint that is displayed when the text of the TextView is empty.

+
open fun getHint(): CharSequence?

Returns the hint that is displayed when the text of the TextView is empty.

-

Returns the typeface used for the hint and any label views (such as counter and error views).

+

Returns the typeface used for the hint and any label views (such as counter and error views).

- +
@@ -131,7 +131,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -146,7 +146,7 @@

Functions

- +
@@ -176,7 +176,7 @@

Functions

- +
@@ -191,7 +191,7 @@

Functions

- +
@@ -206,7 +206,7 @@

Functions

- +
@@ -221,7 +221,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -251,7 +251,7 @@

Functions

- +
@@ -266,7 +266,7 @@

Functions

- +
@@ -281,7 +281,7 @@

Functions

- +
@@ -311,7 +311,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -326,7 +326,7 @@

Functions

- +
@@ -341,7 +341,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -356,7 +356,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -371,7 +371,7 @@

Functions

- +
@@ -386,7 +386,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -401,7 +401,7 @@

Functions

- +
@@ -416,7 +416,7 @@

Functions

- +
@@ -431,7 +431,7 @@

Functions

- +
@@ -446,7 +446,7 @@

Functions

- +
@@ -461,7 +461,7 @@

Functions

- +
@@ -476,7 +476,7 @@

Functions

- +
@@ -491,7 +491,7 @@

Functions

- +
@@ -536,7 +536,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -566,7 +566,7 @@

Functions

- +
@@ -596,7 +596,7 @@

Functions

- +
@@ -611,7 +611,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -626,7 +626,7 @@

Functions

- +
@@ -641,7 +641,7 @@

Functions

- +
@@ -656,7 +656,7 @@

Functions

- +
@@ -671,7 +671,7 @@

Functions

- +
@@ -731,7 +731,7 @@

Functions

- +
@@ -806,7 +806,7 @@

Functions

- +
@@ -866,7 +866,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -881,7 +881,7 @@

Functions

- +
@@ -896,7 +896,7 @@

Functions

- +
@@ -911,7 +911,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -926,7 +926,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -956,7 +956,7 @@

Functions

- +
@@ -1001,7 +1001,7 @@

Functions

- +
@@ -1166,7 +1166,7 @@

Functions

- +
@@ -1226,7 +1226,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1241,7 +1241,7 @@

Functions

- +
@@ -1256,7 +1256,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1286,7 +1286,7 @@

Functions

- +
@@ -1316,7 +1316,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1331,7 +1331,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1346,7 +1346,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1376,7 +1376,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1391,7 +1391,7 @@

Functions

- +
@@ -1406,7 +1406,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1436,7 +1436,7 @@

Functions

- +
@@ -1481,7 +1481,7 @@

Functions

- +
@@ -1496,7 +1496,7 @@

Functions

- +
@@ -1511,7 +1511,7 @@

Functions

- +
@@ -1526,7 +1526,7 @@

Functions

- +
@@ -1541,7 +1541,7 @@

Functions

- +
@@ -1556,7 +1556,7 @@

Functions

- +
@@ -1571,7 +1571,7 @@

Functions

- +
@@ -1586,7 +1586,7 @@

Functions

- +
@@ -1601,7 +1601,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1616,7 +1616,7 @@

Functions

- +
@@ -1631,7 +1631,7 @@

Functions

- +
@@ -1646,7 +1646,7 @@

Functions

- +
@@ -1661,7 +1661,7 @@

Functions

- +
@@ -1676,7 +1676,7 @@

Functions

- +
@@ -1691,7 +1691,7 @@

Functions

- +
@@ -1706,7 +1706,7 @@

Functions

- +
@@ -1721,7 +1721,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1736,7 +1736,7 @@

Functions

- +
@@ -1751,7 +1751,7 @@

Functions

- +
@@ -1766,7 +1766,7 @@

Functions

- +
@@ -1781,7 +1781,7 @@

Functions

- +
@@ -1796,7 +1796,7 @@

Functions

- +
@@ -1811,7 +1811,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1826,7 +1826,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1841,7 +1841,7 @@

Functions

- +
@@ -1856,7 +1856,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1871,7 +1871,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1886,7 +1886,7 @@

Functions

- +
@@ -1916,7 +1916,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -1931,7 +1931,7 @@

Functions

- +
@@ -1946,7 +1946,7 @@

Functions

- +
@@ -1961,7 +1961,7 @@

Functions

- +
@@ -1976,7 +1976,7 @@

Functions

- +
@@ -1991,7 +1991,7 @@

Functions

- +
@@ -2006,7 +2006,7 @@

Functions

- +
@@ -2021,7 +2021,7 @@

Functions

- +
@@ -2036,7 +2036,7 @@

Functions

- +
@@ -2051,7 +2051,7 @@

Functions

- +
@@ -2066,7 +2066,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2081,7 +2081,7 @@

Functions

- +
@@ -2096,7 +2096,7 @@

Functions

- +
@@ -2111,7 +2111,7 @@

Functions

- +
@@ -2126,7 +2126,7 @@

Functions

- +
@@ -2141,7 +2141,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2156,7 +2156,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2171,7 +2171,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2186,7 +2186,7 @@

Functions

-

Returns the current {@link EndIconMode}.

+

Returns the current {@link EndIconMode}.

@@ -2201,7 +2201,7 @@

Functions

-

Returns the error message that was set to be displayed with setError(CharSequence), or null if no error was set or if error displaying is not enabled.

+

Returns the error message that was set to be displayed with setError(CharSequence), or null if no error was set or if error displaying is not enabled.

@@ -2216,7 +2216,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2231,7 +2231,7 @@

Functions

- +
@@ -2246,7 +2246,7 @@

Functions

- +
@@ -2261,7 +2261,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2276,7 +2276,7 @@

Functions

- +
@@ -2291,7 +2291,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2306,7 +2306,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2321,7 +2321,7 @@

Functions

- +
@@ -2336,7 +2336,7 @@

Functions

- +
@@ -2351,7 +2351,7 @@

Functions

- +
@@ -2366,7 +2366,7 @@

Functions

- +
@@ -2381,7 +2381,7 @@

Functions

- +
@@ -2396,7 +2396,7 @@

Functions

- +
@@ -2411,7 +2411,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2426,7 +2426,7 @@

Functions

- +
@@ -2441,7 +2441,7 @@

Functions

- +
@@ -2456,7 +2456,7 @@

Functions

- +
@@ -2471,7 +2471,7 @@

Functions

- +
@@ -2486,7 +2486,7 @@

Functions

- +
@@ -2501,7 +2501,7 @@

Functions

- +
@@ -2516,7 +2516,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2531,7 +2531,7 @@

Functions

-

Returns the helper message that was set to be displayed with setHelperText(CharSequence), or null if no helper text was set or if helper text functionality is not enabled.

+

Returns the helper message that was set to be displayed with setHelperText(CharSequence), or null if no helper text was set or if helper text functionality is not enabled.

@@ -2546,7 +2546,7 @@

Functions

-
open fun getHint(): CharSequence?

Returns the hint that is displayed when the text of the TextView is empty.

+
open fun getHint(): CharSequence?

Returns the hint that is displayed when the text of the TextView is empty.

@@ -2561,7 +2561,7 @@

Functions

-

Gets the collapsed hint text color.

+

Gets the collapsed hint text color.

@@ -2576,7 +2576,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2591,7 +2591,7 @@

Functions

- +
@@ -2606,7 +2606,7 @@

Functions

- +
@@ -2621,7 +2621,7 @@

Functions

- +
@@ -2636,7 +2636,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2651,7 +2651,7 @@

Functions

- +
@@ -2666,7 +2666,7 @@

Functions

- +
@@ -2681,7 +2681,7 @@

Functions

- +
@@ -2696,7 +2696,7 @@

Functions

- +
@@ -2711,7 +2711,7 @@

Functions

- +
@@ -2726,7 +2726,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2741,7 +2741,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2756,7 +2756,7 @@

Functions

- +
@@ -2771,7 +2771,7 @@

Functions

- +
@@ -2786,7 +2786,7 @@

Functions

- +
@@ -2801,7 +2801,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2816,7 +2816,7 @@

Functions

- +
@@ -2831,7 +2831,7 @@

Functions

- +
@@ -2846,7 +2846,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2861,7 +2861,7 @@

Functions

- +
@@ -2876,7 +2876,7 @@

Functions

- +
@@ -2891,7 +2891,7 @@

Functions

- +
@@ -2906,7 +2906,7 @@

Functions

- +
@@ -2921,7 +2921,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -2936,7 +2936,7 @@

Functions

- +
@@ -2951,7 +2951,7 @@

Functions

- +
@@ -2966,7 +2966,7 @@

Functions

- +
@@ -2981,7 +2981,7 @@

Functions

- +
@@ -2996,7 +2996,7 @@

Functions

- +
@@ -3011,7 +3011,7 @@

Functions

- +
@@ -3026,7 +3026,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3041,7 +3041,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3056,7 +3056,7 @@

Functions

- +
@@ -3071,7 +3071,7 @@

Functions

- +
@@ -3086,7 +3086,7 @@

Functions

- +
@@ -3101,7 +3101,7 @@

Functions

- +
@@ -3116,7 +3116,7 @@

Functions

- +
@@ -3131,7 +3131,7 @@

Functions

- +
@@ -3146,7 +3146,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3161,7 +3161,7 @@

Functions

- +
@@ -3176,7 +3176,7 @@

Functions

- +
@@ -3191,7 +3191,7 @@

Functions

- +
@@ -3206,7 +3206,7 @@

Functions

- +
@@ -3236,7 +3236,7 @@

Functions

- +
@@ -3341,7 +3341,7 @@

Functions

- +
@@ -3356,7 +3356,7 @@

Functions

- +
@@ -3371,7 +3371,7 @@

Functions

- +
@@ -3386,7 +3386,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3401,7 +3401,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3416,7 +3416,7 @@

Functions

- +
@@ -3431,7 +3431,7 @@

Functions

- +
@@ -3446,7 +3446,7 @@

Functions

- +
@@ -3461,7 +3461,7 @@

Functions

- +
@@ -3476,7 +3476,7 @@

Functions

- +
@@ -3491,7 +3491,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3506,7 +3506,7 @@

Functions

- +
@@ -3521,7 +3521,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3536,7 +3536,7 @@

Functions

- +
@@ -3551,7 +3551,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3566,7 +3566,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3581,7 +3581,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3596,7 +3596,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3611,7 +3611,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3626,7 +3626,7 @@

Functions

- +
@@ -3641,7 +3641,7 @@

Functions

- +
@@ -3656,7 +3656,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3671,7 +3671,7 @@

Functions

- +
@@ -3686,7 +3686,7 @@

Functions

- +
@@ -3701,7 +3701,7 @@

Functions

- +
@@ -3716,7 +3716,7 @@

Functions

- +
@@ -3731,7 +3731,7 @@

Functions

- +
@@ -3746,7 +3746,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3761,7 +3761,7 @@

Functions

- +
@@ -3776,7 +3776,7 @@

Functions

- +
@@ -3791,7 +3791,7 @@

Functions

- +
@@ -3806,7 +3806,7 @@

Functions

- +
@@ -3821,7 +3821,7 @@

Functions

- +
@@ -3836,7 +3836,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -3851,7 +3851,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -3866,7 +3866,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -3881,7 +3881,7 @@

Functions

- +
@@ -3896,7 +3896,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -3911,7 +3911,7 @@

Functions

- +
@@ -3926,7 +3926,7 @@

Functions

- +
@@ -3941,7 +3941,7 @@

Functions

- +
@@ -3956,7 +3956,7 @@

Functions

- +
@@ -3971,7 +3971,7 @@

Functions

- +
@@ -3986,7 +3986,7 @@

Functions

- +
@@ -4001,7 +4001,7 @@

Functions

- +
@@ -4016,7 +4016,7 @@

Functions

- +
@@ -4031,7 +4031,7 @@

Functions

-

Returns the typeface used for the hint and any label views (such as counter and error views).

+

Returns the typeface used for the hint and any label views (such as counter and error views).

@@ -4046,7 +4046,7 @@

Functions

- +
@@ -4061,7 +4061,7 @@

Functions

- +
@@ -4076,7 +4076,7 @@

Functions

- +
@@ -4091,7 +4091,7 @@

Functions

- +
@@ -4106,7 +4106,7 @@

Functions

- +
@@ -4121,7 +4121,7 @@

Functions

- +
@@ -4136,7 +4136,7 @@

Functions

- +
@@ -4151,7 +4151,7 @@

Functions

- +
@@ -4166,7 +4166,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4181,7 +4181,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4196,7 +4196,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4211,7 +4211,7 @@

Functions

- +
@@ -4226,7 +4226,7 @@

Functions

- +
@@ -4241,7 +4241,7 @@

Functions

- +
@@ -4256,7 +4256,7 @@

Functions

- +
@@ -4271,7 +4271,7 @@

Functions

- +
@@ -4286,7 +4286,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4301,7 +4301,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4316,7 +4316,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4331,7 +4331,7 @@

Functions

- +
@@ -4361,7 +4361,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4376,7 +4376,7 @@

Functions

- +
@@ -4391,7 +4391,7 @@

Functions

- +
@@ -4406,7 +4406,7 @@

Functions

- +
@@ -4421,7 +4421,7 @@

Functions

- +
@@ -4436,7 +4436,7 @@

Functions

- +
@@ -4466,7 +4466,7 @@

Functions

- +
@@ -4481,7 +4481,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4496,7 +4496,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4556,7 +4556,7 @@

Functions

- +
@@ -4571,7 +4571,7 @@

Functions

- +
@@ -4586,7 +4586,7 @@

Functions

- +
@@ -4601,7 +4601,7 @@

Functions

- +
@@ -4616,7 +4616,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4631,7 +4631,7 @@

Functions

- +
@@ -4646,7 +4646,7 @@

Functions

- +
@@ -4661,7 +4661,7 @@

Functions

- +
@@ -4676,7 +4676,7 @@

Functions

- +
@@ -4691,7 +4691,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4706,7 +4706,7 @@

Functions

- +
@@ -4721,7 +4721,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4736,7 +4736,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4751,7 +4751,7 @@

Functions

- +
@@ -4766,7 +4766,7 @@

Functions

- +
@@ -4781,7 +4781,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4796,7 +4796,7 @@

Functions

- +
@@ -4811,7 +4811,7 @@

Functions

- +
@@ -4826,7 +4826,7 @@

Functions

-
open fun isFocused(): Boolean
+
open fun isFocused(): Boolean
@@ -4841,7 +4841,7 @@

Functions

- +
@@ -4856,7 +4856,7 @@

Functions

- +
@@ -4871,7 +4871,7 @@

Functions

- +
@@ -4886,7 +4886,7 @@

Functions

- +
@@ -4901,7 +4901,7 @@

Functions

- +
@@ -4916,7 +4916,7 @@

Functions

- +
@@ -4931,7 +4931,7 @@

Functions

- +
@@ -4946,7 +4946,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -4961,7 +4961,7 @@

Functions

- +
@@ -4976,7 +4976,7 @@

Functions

- +
@@ -4991,7 +4991,7 @@

Functions

- +
@@ -5006,7 +5006,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5021,7 +5021,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5036,7 +5036,7 @@

Functions

- +
@@ -5051,7 +5051,7 @@

Functions

- +
@@ -5066,7 +5066,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5081,7 +5081,7 @@

Functions

- +
@@ -5096,7 +5096,7 @@

Functions

- +
@@ -5111,7 +5111,7 @@

Functions

- +
@@ -5126,7 +5126,7 @@

Functions

- +
@@ -5141,7 +5141,7 @@

Functions

- +
@@ -5156,7 +5156,7 @@

Functions

- +
@@ -5171,7 +5171,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5186,7 +5186,7 @@

Functions

- +
@@ -5201,7 +5201,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5216,7 +5216,7 @@

Functions

- +
@@ -5231,7 +5231,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5246,7 +5246,7 @@

Functions

- +
@@ -5261,7 +5261,7 @@

Functions

- +
@@ -5276,7 +5276,7 @@

Functions

- +
@@ -5291,7 +5291,7 @@

Functions

- +
@@ -5306,7 +5306,7 @@

Functions

- +
@@ -5321,7 +5321,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5336,7 +5336,7 @@

Functions

- +
@@ -5351,7 +5351,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5366,7 +5366,7 @@

Functions

- +
@@ -5381,7 +5381,7 @@

Functions

- +
@@ -5396,7 +5396,7 @@

Functions

- +
@@ -5411,7 +5411,7 @@

Functions

- +
@@ -5426,7 +5426,7 @@

Functions

- +
@@ -5441,7 +5441,7 @@

Functions

- +
@@ -5456,7 +5456,7 @@

Functions

- +
@@ -5471,7 +5471,7 @@

Functions

- +
@@ -5501,7 +5501,7 @@

Functions

- +
@@ -5531,7 +5531,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5561,7 +5561,7 @@

Functions

- +
@@ -5576,7 +5576,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5591,7 +5591,7 @@

Functions

- +
@@ -5606,7 +5606,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5621,7 +5621,7 @@

Functions

- +
@@ -5636,7 +5636,7 @@

Functions

- +
@@ -5651,7 +5651,7 @@

Functions

- +
@@ -5666,7 +5666,7 @@

Functions

- +
@@ -5681,7 +5681,7 @@

Functions

- +
@@ -5696,7 +5696,7 @@

Functions

- +
@@ -5711,7 +5711,7 @@

Functions

- +
@@ -5741,7 +5741,7 @@

Functions

- +
@@ -5756,7 +5756,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -5771,7 +5771,7 @@

Functions

- +
@@ -5786,7 +5786,7 @@

Functions

- +
@@ -5801,7 +5801,7 @@

Functions

- +
@@ -5816,7 +5816,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -5831,7 +5831,7 @@

Functions

- +
@@ -5846,7 +5846,7 @@

Functions

- +
@@ -5861,7 +5861,7 @@

Functions

- +
@@ -5876,7 +5876,7 @@

Functions

- +
@@ -5891,7 +5891,7 @@

Functions

- +
@@ -5951,7 +5951,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -5966,7 +5966,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6086,7 +6086,7 @@

Functions

- +
@@ -6101,7 +6101,7 @@

Functions

- +
@@ -6116,7 +6116,7 @@

Functions

- +
@@ -6131,7 +6131,7 @@

Functions

- +
@@ -6146,7 +6146,7 @@

Functions

- +
@@ -6161,7 +6161,7 @@

Functions

- +
@@ -6176,7 +6176,7 @@

Functions

- +
@@ -6191,7 +6191,7 @@

Functions

- +
@@ -6206,7 +6206,7 @@

Functions

- +
@@ -6236,7 +6236,7 @@

Functions

- +
@@ -6251,7 +6251,7 @@

Functions

- +
@@ -6266,7 +6266,7 @@

Functions

- +
@@ -6296,7 +6296,7 @@

Functions

- +
@@ -6326,7 +6326,7 @@

Functions

- +
@@ -6341,7 +6341,7 @@

Functions

- +
@@ -6356,7 +6356,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6371,7 +6371,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6386,7 +6386,7 @@

Functions

- +
@@ -6401,7 +6401,7 @@

Functions

- +
@@ -6416,7 +6416,7 @@

Functions

- +
@@ -6431,7 +6431,7 @@

Functions

- +
@@ -6446,7 +6446,7 @@

Functions

- +
@@ -6461,7 +6461,7 @@

Functions

- +
@@ -6476,7 +6476,7 @@

Functions

-
open fun performClick(): Boolean
+
open fun performClick(): Boolean
@@ -6491,7 +6491,7 @@

Functions

- +
@@ -6506,7 +6506,7 @@

Functions

- +
@@ -6521,7 +6521,7 @@

Functions

- +
@@ -6536,7 +6536,7 @@

Functions

- +
@@ -6551,7 +6551,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6566,7 +6566,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6581,7 +6581,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6596,7 +6596,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6611,7 +6611,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6626,7 +6626,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6641,7 +6641,7 @@

Functions

- +
@@ -6656,7 +6656,7 @@

Functions

- +
@@ -6686,7 +6686,7 @@

Functions

- +
@@ -6701,7 +6701,7 @@

Functions

- +
@@ -6716,7 +6716,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6731,7 +6731,7 @@

Functions

- +
@@ -6746,7 +6746,7 @@

Functions

- +
@@ -6761,7 +6761,7 @@

Functions

- +
@@ -6776,7 +6776,7 @@

Functions

- +
@@ -6791,7 +6791,7 @@

Functions

- +
@@ -6821,7 +6821,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -6836,7 +6836,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -6851,7 +6851,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -6866,7 +6866,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -6881,7 +6881,7 @@

Functions

- +
@@ -6941,7 +6941,7 @@

Functions

- +
@@ -6956,7 +6956,7 @@

Functions

-
open override fun requestFocus(p0: Int, p1: Rect): Boolean
+
open override fun requestFocus(p0: Int, p1: Rect): Boolean
@@ -6971,7 +6971,7 @@

Functions

- +
@@ -6986,7 +6986,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7001,7 +7001,7 @@

Functions

- +
@@ -7016,7 +7016,7 @@

Functions

- +
@@ -7061,7 +7061,7 @@

Functions

- +
@@ -7076,7 +7076,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7091,7 +7091,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7121,7 +7121,7 @@

Functions

- +
@@ -7136,7 +7136,7 @@

Functions

- +
@@ -7151,7 +7151,7 @@

Functions

- +
@@ -7181,7 +7181,7 @@

Functions

- +
@@ -7196,7 +7196,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7211,7 +7211,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7256,7 +7256,7 @@

Functions

- +
@@ -7271,7 +7271,7 @@

Functions

- +
@@ -7286,7 +7286,7 @@

Functions

- +
@@ -7301,7 +7301,7 @@

Functions

- +
@@ -7316,7 +7316,7 @@

Functions

- +
@@ -7331,7 +7331,7 @@

Functions

- +
@@ -7346,7 +7346,7 @@

Functions

- +
@@ -7361,7 +7361,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7376,7 +7376,7 @@

Functions

- +
@@ -7391,7 +7391,7 @@

Functions

- +
@@ -7406,7 +7406,7 @@

Functions

- +
@@ -7421,7 +7421,7 @@

Functions

- +
@@ -7436,7 +7436,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7451,7 +7451,7 @@

Functions

- +
@@ -7466,7 +7466,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7481,7 +7481,7 @@

Functions

- +
@@ -7496,7 +7496,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7511,7 +7511,7 @@

Functions

-
open fun setAutofillHints(vararg p0: String)
+
open fun setAutofillHints(vararg p0: String)
@@ -7526,7 +7526,7 @@

Functions

-
open fun setAutofillId(p0: AutofillId?)
+
open fun setAutofillId(p0: AutofillId?)
@@ -7541,7 +7541,7 @@

Functions

- +
@@ -7556,7 +7556,7 @@

Functions

-
open fun setBackground(p0: Drawable)
+
open fun setBackground(p0: Drawable)
@@ -7571,7 +7571,7 @@

Functions

-
open fun setBackgroundColor(p0: Int)
+
open fun setBackgroundColor(p0: Int)
@@ -7586,7 +7586,7 @@

Functions

- +
@@ -7601,7 +7601,7 @@

Functions

- +
@@ -7616,7 +7616,7 @@

Functions

- +
@@ -7631,7 +7631,7 @@

Functions

- +
@@ -7646,7 +7646,7 @@

Functions

- +
@@ -7661,7 +7661,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7676,7 +7676,7 @@

Functions

-
open fun setBoxBackgroundColor(boxBackgroundColor: Int)

Set the filled box's background color.

+
open fun setBoxBackgroundColor(boxBackgroundColor: Int)

Set the filled box's background color.

@@ -7691,7 +7691,7 @@

Functions

-
open fun setBoxBackgroundMode(boxBackgroundMode: Int)

Set the box background mode (filled, outline, or none).

+
open fun setBoxBackgroundMode(boxBackgroundMode: Int)

Set the box background mode (filled, outline, or none).

@@ -7706,7 +7706,7 @@

Functions

-
open fun setBoxCornerRadius(boxCornerRadiusTopStart: Float, boxCornerRadiusTopEnd: Float, boxCornerRadiusBottomStart: Float, boxCornerRadiusBottomEnd: Float)

Set the box's corner radii.

+
open fun setBoxCornerRadius(boxCornerRadiusTopStart: Float, boxCornerRadiusTopEnd: Float, boxCornerRadiusBottomStart: Float, boxCornerRadiusBottomEnd: Float)

Set the box's corner radii.

@@ -7721,7 +7721,7 @@

Functions

-
open fun setBoxStrokeColor(boxStrokeColor: Int)

Set the outline box's stroke color.

+
open fun setBoxStrokeColor(boxStrokeColor: Int)

Set the outline box's stroke color.

@@ -7736,7 +7736,7 @@

Functions

-
open fun setBoxStrokeColorStateList(colorStateList: ColorStateList)

Set the outline box's stroke color state list.

+
open fun setBoxStrokeColorStateList(colorStateList: ColorStateList)

Set the outline box's stroke color state list.

@@ -7751,7 +7751,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7766,7 +7766,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -7781,7 +7781,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -7796,7 +7796,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -7811,7 +7811,7 @@

Functions

- +
@@ -7826,7 +7826,7 @@

Functions

- +
@@ -7841,7 +7841,7 @@

Functions

- +
@@ -7856,7 +7856,7 @@

Functions

- +
@@ -7871,7 +7871,7 @@

Functions

- +
@@ -7886,7 +7886,7 @@

Functions

-

Whether the character counter functionality is enabled or not in this layout.

+

Whether the character counter functionality is enabled or not in this layout.

@@ -7901,7 +7901,7 @@

Functions

-
fun setCounterMaxLength(maxLength: Int)

Sets the max length to display at the character counter.

+
fun setCounterMaxLength(maxLength: Int)

Sets the max length to display at the character counter.

@@ -7916,7 +7916,7 @@

Functions

-
fun setCounterOverflowTextAppearance(counterOverflowTextAppearance: Int)

Sets the text color and size for the overflowed character counter using the specified TextAppearance resource.

+
fun setCounterOverflowTextAppearance(counterOverflowTextAppearance: Int)

Sets the text color and size for the overflowed character counter using the specified TextAppearance resource.

@@ -7931,7 +7931,7 @@

Functions

-
fun setCounterTextAppearance(counterTextAppearance: Int)

Sets the text color and size for the character counter using the specified TextAppearance resource.

+
fun setCounterTextAppearance(counterTextAppearance: Int)

Sets the text color and size for the character counter using the specified TextAppearance resource.

@@ -7946,7 +7946,7 @@

Functions

- +
@@ -7961,7 +7961,7 @@

Functions

- +
@@ -7976,7 +7976,7 @@

Functions

- +
@@ -7991,7 +7991,7 @@

Functions

- +
@@ -8006,7 +8006,7 @@

Functions

- +
@@ -8021,7 +8021,7 @@

Functions

- +
@@ -8036,7 +8036,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8051,7 +8051,7 @@

Functions

-
open fun setEnabled(p0: Boolean)
+
open fun setEnabled(p0: Boolean)
@@ -8066,7 +8066,7 @@

Functions

-

Set the icon to use for the end icon.

+

Set the icon to use for the end icon.

@@ -8081,7 +8081,7 @@

Functions

-

Applies a tint to the end icon drawable. Does not modify the current tint mode, which is PorterDuff.Mode#SRC_IN by default.

+

Applies a tint to the end icon drawable. Does not modify the current tint mode, which is PorterDuff.Mode#SRC_IN by default.

@@ -8096,7 +8096,7 @@

Functions

-
fun setEndIconMode(mode: Int)

Set up the EndIconMode. When set, a button is placed at the end of the EditText which enables the user to perform the specific icon's functionality.

+
fun setEndIconMode(mode: Int)

Set up the EndIconMode. When set, a button is placed at the end of the EditText which enables the user to perform the specific icon's functionality.

@@ -8111,7 +8111,7 @@

Functions

-
fun setEndIconOnClickListener(endIconOnClickListener: View.OnClickListener?)

Sets the end icon's functionality that is performed when the icon is clicked. The icon will not be clickable if its click and long click listeners are null.

+
fun setEndIconOnClickListener(endIconOnClickListener: View.OnClickListener?)

Sets the end icon's functionality that is performed when the icon is clicked. The icon will not be clickable if its click and long click listeners are null.

@@ -8126,7 +8126,7 @@

Functions

-
open fun setError(errorText: CharSequence?)
open fun setError(resId: Int)

Sets an error message that will be displayed below our EditText. If the error is null, the error message will be cleared.

+
open fun setError(errorText: CharSequence?)
open fun setError(resId: Int)

Sets an error message that will be displayed below our EditText. If the error is null, the error message will be cleared.

@@ -8141,7 +8141,7 @@

Functions

-
open fun setErrorEnabled(isEnabled: Boolean)

Whether the error functionality is enabled or not in this layout. Enabling this functionality before setting an error message via {@link #setError(CharSequence)}, will mean that this layout will not change size when an error is displayed.

+
open fun setErrorEnabled(isEnabled: Boolean)

Whether the error functionality is enabled or not in this layout. Enabling this functionality before setting an error message via {@link #setError(CharSequence)}, will mean that this layout will not change size when an error is displayed.

@@ -8156,7 +8156,7 @@

Functions

-

Sets the text color and size for the error message from the specified TextAppearance resource.

+

Sets the text color and size for the error message from the specified TextAppearance resource.

@@ -8171,7 +8171,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8186,7 +8186,7 @@

Functions

- +
@@ -8201,7 +8201,7 @@

Functions

- +
@@ -8216,7 +8216,7 @@

Functions

-
open fun setFocusable(p0: Boolean)
open fun setFocusable(p0: Int)
+
open fun setFocusable(p0: Boolean)
open fun setFocusable(p0: Int)
@@ -8231,7 +8231,7 @@

Functions

- +
@@ -8246,7 +8246,7 @@

Functions

- +
@@ -8261,7 +8261,7 @@

Functions

- +
@@ -8276,7 +8276,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8306,7 +8306,7 @@

Functions

- +
@@ -8321,7 +8321,7 @@

Functions

- +
@@ -8336,7 +8336,7 @@

Functions

- +
@@ -8351,7 +8351,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8366,7 +8366,7 @@

Functions

- +
@@ -8381,7 +8381,7 @@

Functions

- +
@@ -8396,7 +8396,7 @@

Functions

- +
@@ -8411,7 +8411,7 @@

Functions

-
fun setHelperText(helperText: String?)

Sets a helper message that will be displayed below the {@link EditText}. If the helperText is null, the helper text functionality will be disabled and the helper message will be hidden.

+
fun setHelperText(helperText: String?)

Sets a helper message that will be displayed below the {@link EditText}. If the helperText is null, the helper text functionality will be disabled and the helper message will be hidden.

@@ -8426,7 +8426,7 @@

Functions

-

Sets the text color and size for the helper text from the specified TextAppearance resource.

+

Sets the text color and size for the helper text from the specified TextAppearance resource.

@@ -8441,7 +8441,7 @@

Functions

-
open fun setHint(resId: Int)

Sets the text to be displayed when the text of the TextView is empty, from a resource.

open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(resId: Int)

Sets the text to be displayed when the text of the TextView is empty, from a resource.

open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8456,7 +8456,7 @@

Functions

-

Set whether any hint state changes, due to being focused or non-empty text, are animated.

+

Set whether any hint state changes, due to being focused or non-empty text, are animated.

@@ -8471,7 +8471,7 @@

Functions

-
open fun setHintEnabled(state: Boolean)

Sets whether the floating label functionality is enabled or not in this layout.

+
open fun setHintEnabled(state: Boolean)

Sets whether the floating label functionality is enabled or not in this layout.

@@ -8486,7 +8486,7 @@

Functions

-

Sets the collapsed hint text color, size, style from the specified TextAppearance resource.

+

Sets the collapsed hint text color, size, style from the specified TextAppearance resource.

@@ -8501,7 +8501,7 @@

Functions

-
fun setHintTextColor(hintTextColor: ColorStateList)

Sets the collapsed hint text color from the specified ColorStateList resource.

+
fun setHintTextColor(hintTextColor: ColorStateList)

Sets the collapsed hint text color from the specified ColorStateList resource.

@@ -8516,7 +8516,7 @@

Functions

- +
@@ -8531,7 +8531,7 @@

Functions

- +
@@ -8546,7 +8546,7 @@

Functions

- +
@@ -8561,7 +8561,7 @@

Functions

- +
@@ -8576,7 +8576,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8591,7 +8591,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8606,7 +8606,7 @@

Functions

- +
@@ -8621,7 +8621,7 @@

Functions

- +
@@ -8636,7 +8636,7 @@

Functions

- +
@@ -8651,7 +8651,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8666,7 +8666,7 @@

Functions

- +
@@ -8681,7 +8681,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8696,7 +8696,7 @@

Functions

- +
@@ -8711,7 +8711,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8726,7 +8726,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8741,7 +8741,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8756,7 +8756,7 @@

Functions

- +
@@ -8771,7 +8771,7 @@

Functions

- +
@@ -8786,7 +8786,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8801,7 +8801,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8816,7 +8816,7 @@

Functions

- +
@@ -8831,7 +8831,7 @@

Functions

- +
@@ -8846,7 +8846,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8861,7 +8861,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8876,7 +8876,7 @@

Functions

- +
@@ -8891,7 +8891,7 @@

Functions

- +
@@ -8906,7 +8906,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -8921,7 +8921,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -8936,7 +8936,7 @@

Functions

- +
@@ -8951,7 +8951,7 @@

Functions

- +
@@ -8966,7 +8966,7 @@

Functions

- +
@@ -8981,7 +8981,7 @@

Functions

-
open fun setNextFocusDownId(p0: Int)
+
open fun setNextFocusDownId(p0: Int)
@@ -8996,7 +8996,7 @@

Functions

- +
@@ -9011,7 +9011,7 @@

Functions

-
open fun setNextFocusLeftId(p0: Int)
+
open fun setNextFocusLeftId(p0: Int)
@@ -9026,7 +9026,7 @@

Functions

-
open fun setNextFocusRightId(p0: Int)
+
open fun setNextFocusRightId(p0: Int)
@@ -9041,7 +9041,7 @@

Functions

-
open fun setNextFocusUpId(p0: Int)
+
open fun setNextFocusUpId(p0: Int)
@@ -9056,7 +9056,7 @@

Functions

- +
@@ -9071,7 +9071,7 @@

Functions

- +
@@ -9086,7 +9086,7 @@

Functions

- +
@@ -9101,7 +9101,7 @@

Functions

- +
@@ -9116,7 +9116,7 @@

Functions

- +
@@ -9131,7 +9131,7 @@

Functions

- +
@@ -9146,7 +9146,7 @@

Functions

- +
@@ -9161,7 +9161,7 @@

Functions

- +
@@ -9176,7 +9176,7 @@

Functions

- +
@@ -9191,7 +9191,7 @@

Functions

- +
@@ -9206,7 +9206,7 @@

Functions

- +
@@ -9221,7 +9221,7 @@

Functions

- +
@@ -9236,7 +9236,7 @@

Functions

- +
@@ -9251,7 +9251,7 @@

Functions

- +
@@ -9266,7 +9266,7 @@

Functions

- +
@@ -9281,7 +9281,7 @@

Functions

- +
@@ -9296,7 +9296,7 @@

Functions

- +
@@ -9311,7 +9311,7 @@

Functions

- +
@@ -9326,7 +9326,7 @@

Functions

- +
@@ -9341,7 +9341,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9371,7 +9371,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9386,7 +9386,7 @@

Functions

-
open fun setPasswordToggleEnabled(isEnabled: Boolean)

Enables or disable the password visibility toggle functionality.

+
open fun setPasswordToggleEnabled(isEnabled: Boolean)

Enables or disable the password visibility toggle functionality.

@@ -9401,7 +9401,7 @@

Functions

-

Set the icon to use for the password visibility toggle button.

+

Set the icon to use for the password visibility toggle button.

@@ -9416,7 +9416,7 @@

Functions

-

Applies a tint to the password visibility toggle drawable. Does not modify the current tint mode, which is PorterDuff.Mode#SRC_IN by default.

+

Applies a tint to the password visibility toggle drawable. Does not modify the current tint mode, which is PorterDuff.Mode#SRC_IN by default.

@@ -9431,7 +9431,7 @@

Functions

- +
@@ -9446,7 +9446,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9461,7 +9461,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9476,7 +9476,7 @@

Functions

- +
@@ -9491,7 +9491,7 @@

Functions

- +
@@ -9506,7 +9506,7 @@

Functions

- +
@@ -9521,7 +9521,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9536,7 +9536,7 @@

Functions

- +
@@ -9551,7 +9551,7 @@

Functions

- +
@@ -9566,7 +9566,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9581,7 +9581,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9596,7 +9596,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9611,7 +9611,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9626,7 +9626,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9641,7 +9641,7 @@

Functions

- +
@@ -9656,7 +9656,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9671,7 +9671,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9686,7 +9686,7 @@

Functions

- +
@@ -9701,7 +9701,7 @@

Functions

- +
@@ -9716,7 +9716,7 @@

Functions

- +
@@ -9731,7 +9731,7 @@

Functions

- +
@@ -9746,7 +9746,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9761,7 +9761,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9776,7 +9776,7 @@

Functions

- +
@@ -9791,7 +9791,7 @@

Functions

- +
@@ -9806,7 +9806,7 @@

Functions

- +
@@ -9821,7 +9821,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -9836,7 +9836,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -9851,7 +9851,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -9866,7 +9866,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -9881,7 +9881,7 @@

Functions

- +
@@ -9896,7 +9896,7 @@

Functions

-

Sets the start icon.

+

Sets the start icon.

@@ -9911,7 +9911,7 @@

Functions

-

Applies a tint to the start icon drawable. Does not modify the current tint mode, which is {@link PorterDuff.Mode#SRC_IN} by default.

+

Applies a tint to the start icon drawable. Does not modify the current tint mode, which is {@link PorterDuff.Mode#SRC_IN} by default.

@@ -9926,7 +9926,7 @@

Functions

-
fun setStartIconOnClickListener(startIconOnClickListener: View.OnClickListener?)

Sets the start icon's functionality that is performed when the start icon is clicked. The icon will not be clickable if its click and long click listeners are null.

+
fun setStartIconOnClickListener(startIconOnClickListener: View.OnClickListener?)

Sets the start icon's functionality that is performed when the start icon is clicked. The icon will not be clickable if its click and long click listeners are null.

@@ -9941,7 +9941,7 @@

Functions

- +
@@ -9956,7 +9956,7 @@

Functions

- +
@@ -9971,7 +9971,7 @@

Functions

- +
@@ -9986,7 +9986,7 @@

Functions

- +
@@ -10001,7 +10001,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -10016,7 +10016,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10031,7 +10031,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10046,7 +10046,7 @@

Functions

- +
@@ -10061,7 +10061,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10076,7 +10076,7 @@

Functions

- +
@@ -10091,7 +10091,7 @@

Functions

- +
@@ -10106,7 +10106,7 @@

Functions

- +
@@ -10121,7 +10121,7 @@

Functions

- +
@@ -10136,7 +10136,7 @@

Functions

- +
@@ -10151,7 +10151,7 @@

Functions

- +
@@ -10166,7 +10166,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10181,7 +10181,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10196,7 +10196,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10211,7 +10211,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

@@ -10226,7 +10226,7 @@

Functions

- +
@@ -10241,7 +10241,7 @@

Functions

- +
@@ -10256,7 +10256,7 @@

Functions

- +
@@ -10271,7 +10271,7 @@

Functions

- +
@@ -10286,7 +10286,7 @@

Functions

- +
@@ -10301,7 +10301,7 @@

Functions

- +
@@ -10316,7 +10316,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10331,7 +10331,7 @@

Functions

- +
@@ -10346,7 +10346,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10376,7 +10376,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10391,7 +10391,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10406,7 +10406,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10436,7 +10436,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10466,7 +10466,7 @@

Functions

- +
@@ -10496,7 +10496,7 @@

Functions

- +
@@ -10511,7 +10511,7 @@

Functions

- +
@@ -10526,7 +10526,7 @@

Functions

- +
@@ -10541,7 +10541,7 @@

Functions

- +
@@ -10556,7 +10556,7 @@

Functions

- +
@@ -10571,7 +10571,7 @@

Functions

- +
@@ -10586,7 +10586,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10601,7 +10601,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10631,7 +10631,7 @@

Functions

- +
@@ -10646,7 +10646,7 @@

Functions

- +
@@ -10661,7 +10661,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10676,7 +10676,7 @@

Functions

- +
@@ -10706,7 +10706,7 @@

Functions

- +
@@ -10721,7 +10721,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-background-color.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-background-color.html index 5c4b65bd4..6e1b9264f 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-background-color.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-background-color.html @@ -66,7 +66,7 @@

setBoxBackgroundColor

-
open fun setBoxBackgroundColor(boxBackgroundColor: Int)

Set the filled box's background color.

Note: The background color is only supported for filled boxes. When used with box variants +

open fun setBoxBackgroundColor(boxBackgroundColor: Int)

Set the filled box's background color.

Note: The background color is only supported for filled boxes. When used with box variants other than BoxBackgroundMode.BOX_BACKGROUND_FILLED, the box background color may not work as intended.

Parameters

boxBackgroundColor

the color to use for the filled box's background

See also

#getBoxBackgroundColor()

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-background-mode.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-background-mode.html index 8362d7fca..0b11a8f6e 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-background-mode.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-background-mode.html @@ -66,7 +66,7 @@

setBoxBackgroundMode

-
open fun setBoxBackgroundMode(boxBackgroundMode: Int)

Set the box background mode (filled, outline, or none).

May be one of BOX_BACKGROUND_NONE, BOX_BACKGROUND_FILLED, or BOX_BACKGROUND_OUTLINE.

Note: This method defines TextInputLayout's internal behavior (for example, it allows the +

open fun setBoxBackgroundMode(boxBackgroundMode: Int)

Set the box background mode (filled, outline, or none).

May be one of BOX_BACKGROUND_NONE, BOX_BACKGROUND_FILLED, or BOX_BACKGROUND_OUTLINE.

Note: This method defines TextInputLayout's internal behavior (for example, it allows the hint to be displayed inline with the stroke in a cutout), but doesn't set all attributes that are set in the styles provided for the box background modes. To achieve the look of an outlined or filled text field, supplement this method with other methods that modify the box, such as diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-corner-radius.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-corner-radius.html index 6101ccb9b..31645a9c0 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-corner-radius.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-box-corner-radius.html @@ -66,7 +66,7 @@

setBoxCornerRadius

-
open fun setBoxCornerRadius(boxCornerRadiusTopStart: Float, boxCornerRadiusTopEnd: Float, boxCornerRadiusBottomStart: Float, boxCornerRadiusBottomEnd: Float)

Set the box's corner radii.

Parameters

boxCornerRadiusTopStart

the value to use for the box's top start corner radius

boxCornerRadiusTopEnd

the value to use for the box's top end corner radius

boxCornerRadiusBottomStart

the value to use for the box's bottom start corner radius

boxCornerRadiusBottomEnd

the value to use for the box's bottom end corner radius

See also

#getBoxCornerRadiusBottomEnd()

+
open fun setBoxCornerRadius(boxCornerRadiusTopStart: Float, boxCornerRadiusTopEnd: Float, boxCornerRadiusBottomStart: Float, boxCornerRadiusBottomEnd: Float)

Set the box's corner radii.

Parameters

boxCornerRadiusTopStart

the value to use for the box's top start corner radius

boxCornerRadiusTopEnd

the value to use for the box's top end corner radius

boxCornerRadiusBottomStart

the value to use for the box's bottom start corner radius

boxCornerRadiusBottomEnd

the value to use for the box's bottom end corner radius

See also

#getBoxCornerRadiusBottomEnd()

-
open fun setBoxStrokeColorStateList(colorStateList: ColorStateList)

Set the outline box's stroke color state list.

Calling this method when not in outline box mode will do nothing.

Parameters

colorStateList

the color state list to use for the box's stroke

See also

#getBoxStrokeColor()

+
open fun setBoxStrokeColorStateList(colorStateList: ColorStateList)

Set the outline box's stroke color state list.

Calling this method when not in outline box mode will do nothing.

Parameters

colorStateList

the color state list to use for the box's stroke

See also

#getBoxStrokeColor()

-
open fun setBoxStrokeColor(boxStrokeColor: Int)

Set the outline box's stroke color.

Calling this method when not in outline box mode will do nothing.

Parameters

boxStrokeColor

the color to use for the box's stroke

See also

#getBoxStrokeColor()

+
open fun setBoxStrokeColor(boxStrokeColor: Int)

Set the outline box's stroke color.

Calling this method when not in outline box mode will do nothing.

Parameters

boxStrokeColor

the color to use for the box's stroke

See also

#getBoxStrokeColor()

-

Whether the character counter functionality is enabled or not in this layout.

+

Whether the character counter functionality is enabled or not in this layout.

-
fun setCounterMaxLength(maxLength: Int)

Sets the max length to display at the character counter.

Parameters

maxLength

maxLength to display. Any value less than or equal to 0 will not be shown.

+
fun setCounterMaxLength(maxLength: Int)

Sets the max length to display at the character counter.

Parameters

maxLength

maxLength to display. Any value less than or equal to 0 will not be shown.

-
fun setCounterOverflowTextAppearance(counterOverflowTextAppearance: Int)

Sets the text color and size for the overflowed character counter using the specified TextAppearance resource.

+
fun setCounterOverflowTextAppearance(counterOverflowTextAppearance: Int)

Sets the text color and size for the overflowed character counter using the specified TextAppearance resource.

-
fun setCounterTextAppearance(counterTextAppearance: Int)

Sets the text color and size for the character counter using the specified TextAppearance resource.

+
fun setCounterTextAppearance(counterTextAppearance: Int)

Sets the text color and size for the character counter using the specified TextAppearance resource.

-

Applies a tint to the end icon drawable. Does not modify the current tint mode, which is PorterDuff.Mode#SRC_IN by default.

Subsequent calls to setEndIconDrawable(Drawable) will automatically mutate the +

Applies a tint to the end icon drawable. Does not modify the current tint mode, which is PorterDuff.Mode#SRC_IN by default.

Subsequent calls to setEndIconDrawable(Drawable) will automatically mutate the drawable and apply the specified tint and tint mode using DrawableCompat#setTintList(Drawable, ColorStateList).

Parameters

endIconTintList

the tint to apply, may be null to clear tint

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-end-icon-drawable.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-end-icon-drawable.html index 88e925d86..8c3dbc4ca 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-end-icon-drawable.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-end-icon-drawable.html @@ -66,7 +66,7 @@

setEndIconDrawable

-

Set the icon to use for the end icon.

If you use an icon you should also set a description for its action using +

Set the icon to use for the end icon.

If you use an icon you should also set a description for its action using setEndIconContentDescription(CharSequence). This is used for accessibility.

Parameters

resId

resource id of the drawable to set, or 0 to clear the icon

-
fun setEndIconOnClickListener(endIconOnClickListener: View.OnClickListener?)

Sets the end icon's functionality that is performed when the icon is clicked. The icon will not be clickable if its click and long click listeners are null.

Parameters

endIconOnClickListener

the android.view.View.OnClickListener the end icon view will have

+
fun setEndIconOnClickListener(endIconOnClickListener: View.OnClickListener?)

Sets the end icon's functionality that is performed when the icon is clicked. The icon will not be clickable if its click and long click listeners are null.

Parameters

endIconOnClickListener

the android.view.View.OnClickListener the end icon view will have

-
open fun setErrorEnabled(isEnabled: Boolean)

Whether the error functionality is enabled or not in this layout. Enabling this functionality before setting an error message via {@link #setError(CharSequence)}, will mean that this layout will not change size when an error is displayed.

Parameters

isEnabled

true if layout should reserve place for error message, false otherwise.

+
open fun setErrorEnabled(isEnabled: Boolean)

Whether the error functionality is enabled or not in this layout. Enabling this functionality before setting an error message via {@link #setError(CharSequence)}, will mean that this layout will not change size when an error is displayed.

Parameters

isEnabled

true if layout should reserve place for error message, false otherwise.

-

Sets the text color and size for the error message from the specified TextAppearance resource.

+

Sets the text color and size for the error message from the specified TextAppearance resource.

-
open fun setError(errorText: CharSequence?)

Sets an error message that will be displayed below our EditText. If the error is null, the error message will be cleared.

If the error functionality has not been enabled via setErrorEnabled(), then -it will be automatically enabled if {@code error} is not empty.

Parameters

errorText

Error message to display, or null to clear

See also

#getError()


open fun setError(resId: Int)

Sets an error message that will be displayed below our EditText. If the error is null, the error message will be cleared.

If the error functionality has not been enabled via setErrorEnabled(), then +

open fun setError(errorText: CharSequence?)

Sets an error message that will be displayed below our EditText. If the error is null, the error message will be cleared.

If the error functionality has not been enabled via setErrorEnabled(), then +it will be automatically enabled if {@code error} is not empty.

Parameters

errorText

Error message to display, or null to clear

See also

#getError()


open fun setError(resId: Int)

Sets an error message that will be displayed below our EditText. If the error is null, the error message will be cleared.

If the error functionality has not been enabled via setErrorEnabled(), then it will be automatically enabled if {@code error} is not empty.

Parameters

resId

Error messageResId to display, or null to clear

See also

#getError()

-
fun setHelperText(helperText: String?)

Sets a helper message that will be displayed below the {@link EditText}. If the helperText is null, the helper text functionality will be disabled and the helper message will be hidden.

If the helper text functionality has not been enabled via setHelperTextEnabled(boolean), then it will be automatically enabled if helperText is not empty.

Parameters

helperText

Helper text to display

See also

#getHelperText()

+
fun setHelperText(helperText: String?)

Sets a helper message that will be displayed below the {@link EditText}. If the helperText is null, the helper text functionality will be disabled and the helper message will be hidden.

If the helper text functionality has not been enabled via setHelperTextEnabled(boolean), then it will be automatically enabled if helperText is not empty.

Parameters

helperText

Helper text to display

See also

#getHelperText()

-

Set whether any hint state changes, due to being focused or non-empty text, are animated.

+

Set whether any hint state changes, due to being focused or non-empty text, are animated.

-
open fun setHintEnabled(state: Boolean)

Sets whether the floating label functionality is enabled or not in this layout.

If enabled, any non-empty hint in the child EditText will be moved into the floating hint, +

open fun setHintEnabled(state: Boolean)

Sets whether the floating label functionality is enabled or not in this layout.

If enabled, any non-empty hint in the child EditText will be moved into the floating hint, and its existing hint will be cleared. If disabled, then any non-empty floating hint in this layout will be moved into the EditText, and this layout's hint will be cleared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-hint-text-appearance.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-hint-text-appearance.html index b8ef3b060..e27a97bfb 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-hint-text-appearance.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view.material/-text-input-field-layout/set-hint-text-appearance.html @@ -66,7 +66,7 @@

setHintTextAppearance

-

Sets the collapsed hint text color, size, style from the specified TextAppearance resource.

+

Sets the collapsed hint text color, size, style from the specified TextAppearance resource.

-
fun setHintTextColor(hintTextColor: ColorStateList)

Sets the collapsed hint text color from the specified ColorStateList resource.

+
fun setHintTextColor(hintTextColor: ColorStateList)

Sets the collapsed hint text color from the specified ColorStateList resource.

-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.


open fun setHint(resId: Int)

Sets the text to be displayed when the text of the TextView is empty, from a resource.

+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.


open fun setHint(resId: Int)

Sets the text to be displayed when the text of the TextView is empty, from a resource.

-
open fun setPasswordToggleEnabled(isEnabled: Boolean)

Deprecated

Use #setEndIconMode(int) instead.

Enables or disable the password visibility toggle functionality.

When enabled, a button is placed at the end of the EditText which enables the user to switch +

open fun setPasswordToggleEnabled(isEnabled: Boolean)

Deprecated

Use #setEndIconMode(int) instead.

Enables or disable the password visibility toggle functionality.

When enabled, a button is placed at the end of the EditText which enables the user to switch between the field's input being visibly disguised or not.

Parameters

isEnabled

true to enable the functionality

-
open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

Parameters

canScroll
+
open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

Parameters

canScroll
-
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

Parameters

isEnabled

True if this view has enabled validation, false otherwise.

+
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

Parameters

isEnabled

True if this view has enabled validation, false otherwise.

-
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

Return

The text used by the field.

+
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

Return

The text used by the field.

-

Gets the current field type of the InputFieldView.

Return

FieldType

See also

+

Gets the current field type of the InputFieldView.

Return

FieldType

See also

-
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

Return

current gravity

+
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

Return

current gravity

-

Get the type of the Input Method Editor (IME).

Return

the type of the IME

+

Get the type of the Input Method Editor (IME).

Return

the type of the IME

-
open fun getInputType(): Int

Get the type of the editable content.

Return

inputType

+
open fun getInputType(): Int

Get the type of the editable content.

Return

inputType

-

Return

the base paint used for the text. Please use this only to consult the Paint's properties and not to change them.

+

Return

the base paint used for the text. Please use this only to consult the Paint's properties and not to change them.

-
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

Return

The current Typeface.

+
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

Return

The current Typeface.

-

Request to hide the soft input window from the context of the window that is currently accepting input.

+

Request to hide the soft input window from the context of the window that is currently accepting input.

- +
@@ -180,7 +180,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -195,7 +195,7 @@

Functions

- +
@@ -225,7 +225,7 @@

Functions

- +
@@ -240,7 +240,7 @@

Functions

-

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

+

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

@@ -255,7 +255,7 @@

Functions

- +
@@ -270,7 +270,7 @@

Functions

- +
@@ -285,7 +285,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -315,7 +315,7 @@

Functions

- +
@@ -330,7 +330,7 @@

Functions

- +
@@ -345,7 +345,7 @@

Functions

- +
@@ -375,7 +375,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -390,7 +390,7 @@

Functions

- +
@@ -405,7 +405,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -420,7 +420,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -435,7 +435,7 @@

Functions

- +
@@ -450,7 +450,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -465,7 +465,7 @@

Functions

- +
@@ -480,7 +480,7 @@

Functions

- +
@@ -495,7 +495,7 @@

Functions

- +
@@ -510,7 +510,7 @@

Functions

- +
@@ -525,7 +525,7 @@

Functions

-

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

+

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

@@ -540,7 +540,7 @@

Functions

- +
@@ -555,7 +555,7 @@

Functions

- +
@@ -600,7 +600,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -630,7 +630,7 @@

Functions

- +
@@ -660,7 +660,7 @@

Functions

- +
@@ -675,7 +675,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -690,7 +690,7 @@

Functions

- +
@@ -705,7 +705,7 @@

Functions

- +
@@ -720,7 +720,7 @@

Functions

- +
@@ -735,7 +735,7 @@

Functions

- +
@@ -795,7 +795,7 @@

Functions

- +
@@ -870,7 +870,7 @@

Functions

- +
@@ -930,7 +930,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -945,7 +945,7 @@

Functions

- +
@@ -960,7 +960,7 @@

Functions

- +
@@ -975,7 +975,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -990,7 +990,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -1020,7 +1020,7 @@

Functions

- +
@@ -1065,7 +1065,7 @@

Functions

- +
@@ -1230,7 +1230,7 @@

Functions

- +
@@ -1290,7 +1290,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1305,7 +1305,7 @@

Functions

- +
@@ -1320,7 +1320,7 @@

Functions

-
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

+
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

@@ -1335,7 +1335,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1365,7 +1365,7 @@

Functions

- +
@@ -1395,7 +1395,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1410,7 +1410,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1425,7 +1425,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1455,7 +1455,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1470,7 +1470,7 @@

Functions

- +
@@ -1485,7 +1485,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1515,7 +1515,7 @@

Functions

- +
@@ -1560,7 +1560,7 @@

Functions

- +
@@ -1575,7 +1575,7 @@

Functions

- +
@@ -1590,7 +1590,7 @@

Functions

- +
@@ -1605,7 +1605,7 @@

Functions

- +
@@ -1620,7 +1620,7 @@

Functions

- +
@@ -1635,7 +1635,7 @@

Functions

- +
@@ -1650,7 +1650,7 @@

Functions

- +
@@ -1665,7 +1665,7 @@

Functions

- +
@@ -1680,7 +1680,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1695,7 +1695,7 @@

Functions

- +
@@ -1710,7 +1710,7 @@

Functions

- +
@@ -1725,7 +1725,7 @@

Functions

- +
@@ -1740,7 +1740,7 @@

Functions

- +
@@ -1755,7 +1755,7 @@

Functions

- +
@@ -1770,7 +1770,7 @@

Functions

- +
@@ -1785,7 +1785,7 @@

Functions

- +
@@ -1800,7 +1800,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1815,7 +1815,7 @@

Functions

- +
@@ -1845,7 +1845,7 @@

Functions

- +
@@ -1860,7 +1860,7 @@

Functions

- +
@@ -1875,7 +1875,7 @@

Functions

- +
@@ -1890,7 +1890,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1905,7 +1905,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1920,7 +1920,7 @@

Functions

- +
@@ -1935,7 +1935,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1950,7 +1950,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1965,7 +1965,7 @@

Functions

- +
@@ -1995,7 +1995,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -2010,7 +2010,7 @@

Functions

- +
@@ -2025,7 +2025,7 @@

Functions

- +
@@ -2040,7 +2040,7 @@

Functions

- +
@@ -2055,7 +2055,7 @@

Functions

- +
@@ -2070,7 +2070,7 @@

Functions

- +
@@ -2085,7 +2085,7 @@

Functions

- +
@@ -2100,7 +2100,7 @@

Functions

- +
@@ -2115,7 +2115,7 @@

Functions

- +
@@ -2130,7 +2130,7 @@

Functions

- +
@@ -2145,7 +2145,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2160,7 +2160,7 @@

Functions

- +
@@ -2175,7 +2175,7 @@

Functions

- +
@@ -2190,7 +2190,7 @@

Functions

- +
@@ -2205,7 +2205,7 @@

Functions

- +
@@ -2220,7 +2220,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2235,7 +2235,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2250,7 +2250,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2265,7 +2265,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2280,7 +2280,7 @@

Functions

-
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

+
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

@@ -2295,7 +2295,7 @@

Functions

-

Gets the current field type of the InputFieldView.

+

Gets the current field type of the InputFieldView.

@@ -2310,7 +2310,7 @@

Functions

- +
@@ -2325,7 +2325,7 @@

Functions

- +
@@ -2340,7 +2340,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2355,7 +2355,7 @@

Functions

- +
@@ -2370,7 +2370,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2385,7 +2385,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2400,7 +2400,7 @@

Functions

- +
@@ -2415,7 +2415,7 @@

Functions

- +
@@ -2430,7 +2430,7 @@

Functions

- +
@@ -2445,7 +2445,7 @@

Functions

- +
@@ -2460,7 +2460,7 @@

Functions

- +
@@ -2475,7 +2475,7 @@

Functions

- +
@@ -2490,7 +2490,7 @@

Functions

-
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

+
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

@@ -2505,7 +2505,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2520,7 +2520,7 @@

Functions

- +
@@ -2535,7 +2535,7 @@

Functions

- +
@@ -2550,7 +2550,7 @@

Functions

- +
@@ -2565,7 +2565,7 @@

Functions

- +
@@ -2580,7 +2580,7 @@

Functions

- +
@@ -2595,7 +2595,7 @@

Functions

- +
@@ -2610,7 +2610,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2625,7 +2625,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2640,7 +2640,7 @@

Functions

- +
@@ -2655,7 +2655,7 @@

Functions

- +
@@ -2670,7 +2670,7 @@

Functions

- +
@@ -2685,7 +2685,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2700,7 +2700,7 @@

Functions

-

Get the type of the Input Method Editor (IME).

+

Get the type of the Input Method Editor (IME).

@@ -2715,7 +2715,7 @@

Functions

- +
@@ -2730,7 +2730,7 @@

Functions

- +
@@ -2745,7 +2745,7 @@

Functions

- +
@@ -2760,7 +2760,7 @@

Functions

-
open fun getInputType(): Int

Get the type of the editable content.

+
open fun getInputType(): Int

Get the type of the editable content.

@@ -2775,7 +2775,7 @@

Functions

- +
@@ -2790,7 +2790,7 @@

Functions

- +
@@ -2805,7 +2805,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2820,7 +2820,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2835,7 +2835,7 @@

Functions

- +
@@ -2850,7 +2850,7 @@

Functions

- +
@@ -2865,7 +2865,7 @@

Functions

- +
@@ -2880,7 +2880,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2895,7 +2895,7 @@

Functions

- +
@@ -2910,7 +2910,7 @@

Functions

- +
@@ -2925,7 +2925,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2940,7 +2940,7 @@

Functions

- +
@@ -2955,7 +2955,7 @@

Functions

- +
@@ -2970,7 +2970,7 @@

Functions

- +
@@ -2985,7 +2985,7 @@

Functions

- +
@@ -3000,7 +3000,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -3015,7 +3015,7 @@

Functions

- +
@@ -3030,7 +3030,7 @@

Functions

- +
@@ -3045,7 +3045,7 @@

Functions

- +
@@ -3060,7 +3060,7 @@

Functions

- +
@@ -3075,7 +3075,7 @@

Functions

- +
@@ -3090,7 +3090,7 @@

Functions

- +
@@ -3105,7 +3105,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3120,7 +3120,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3135,7 +3135,7 @@

Functions

- +
@@ -3150,7 +3150,7 @@

Functions

- +
@@ -3165,7 +3165,7 @@

Functions

- +
@@ -3180,7 +3180,7 @@

Functions

- +
@@ -3195,7 +3195,7 @@

Functions

- +
@@ -3210,7 +3210,7 @@

Functions

- +
@@ -3225,7 +3225,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3240,7 +3240,7 @@

Functions

- +
@@ -3255,7 +3255,7 @@

Functions

- +
@@ -3270,7 +3270,7 @@

Functions

- +
@@ -3285,7 +3285,7 @@

Functions

- +
@@ -3315,7 +3315,7 @@

Functions

- +
@@ -3420,7 +3420,7 @@

Functions

- +
@@ -3435,7 +3435,7 @@

Functions

- +
@@ -3450,7 +3450,7 @@

Functions

- +
@@ -3465,7 +3465,7 @@

Functions

- +
@@ -3480,7 +3480,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3495,7 +3495,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3510,7 +3510,7 @@

Functions

- +
@@ -3525,7 +3525,7 @@

Functions

- +
@@ -3540,7 +3540,7 @@

Functions

- +
@@ -3555,7 +3555,7 @@

Functions

- +
@@ -3570,7 +3570,7 @@

Functions

- +
@@ -3585,7 +3585,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3600,7 +3600,7 @@

Functions

- +
@@ -3615,7 +3615,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3630,7 +3630,7 @@

Functions

- +
@@ -3645,7 +3645,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3660,7 +3660,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3675,7 +3675,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3690,7 +3690,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3705,7 +3705,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3720,7 +3720,7 @@

Functions

- +
@@ -3735,7 +3735,7 @@

Functions

- +
@@ -3750,7 +3750,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3765,7 +3765,7 @@

Functions

- +
@@ -3780,7 +3780,7 @@

Functions

- +
@@ -3795,7 +3795,7 @@

Functions

- +
@@ -3810,7 +3810,7 @@

Functions

- +
@@ -3825,7 +3825,7 @@

Functions

- +
@@ -3840,7 +3840,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3855,7 +3855,7 @@

Functions

- +
@@ -3870,7 +3870,7 @@

Functions

- +
@@ -3885,7 +3885,7 @@

Functions

- +
@@ -3900,7 +3900,7 @@

Functions

- +
@@ -3915,7 +3915,7 @@

Functions

- +
@@ -3930,7 +3930,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -3945,7 +3945,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -3960,7 +3960,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -3975,7 +3975,7 @@

Functions

- +
@@ -3990,7 +3990,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -4005,7 +4005,7 @@

Functions

- +
@@ -4020,7 +4020,7 @@

Functions

- +
@@ -4035,7 +4035,7 @@

Functions

- +
@@ -4050,7 +4050,7 @@

Functions

- +
@@ -4065,7 +4065,7 @@

Functions

- +
@@ -4080,7 +4080,7 @@

Functions

- +
@@ -4095,7 +4095,7 @@

Functions

- +
@@ -4110,7 +4110,7 @@

Functions

- +
@@ -4125,7 +4125,7 @@

Functions

-
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

+
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

@@ -4140,7 +4140,7 @@

Functions

- +
@@ -4155,7 +4155,7 @@

Functions

- +
@@ -4170,7 +4170,7 @@

Functions

- +
@@ -4185,7 +4185,7 @@

Functions

- +
@@ -4200,7 +4200,7 @@

Functions

- +
@@ -4215,7 +4215,7 @@

Functions

- +
@@ -4230,7 +4230,7 @@

Functions

- +
@@ -4245,7 +4245,7 @@

Functions

- +
@@ -4260,7 +4260,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4275,7 +4275,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4290,7 +4290,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4305,7 +4305,7 @@

Functions

- +
@@ -4320,7 +4320,7 @@

Functions

- +
@@ -4335,7 +4335,7 @@

Functions

- +
@@ -4350,7 +4350,7 @@

Functions

- +
@@ -4365,7 +4365,7 @@

Functions

- +
@@ -4380,7 +4380,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4395,7 +4395,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4410,7 +4410,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4425,7 +4425,7 @@

Functions

- +
@@ -4455,7 +4455,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4470,7 +4470,7 @@

Functions

- +
@@ -4485,7 +4485,7 @@

Functions

- +
@@ -4500,7 +4500,7 @@

Functions

- +
@@ -4515,7 +4515,7 @@

Functions

- +
@@ -4530,7 +4530,7 @@

Functions

- +
@@ -4560,7 +4560,7 @@

Functions

- +
@@ -4575,7 +4575,7 @@

Functions

-

Request to hide the soft input window from the context of the window that is currently accepting input.

+

Request to hide the soft input window from the context of the window that is currently accepting input.

@@ -4590,7 +4590,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4605,7 +4605,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4665,7 +4665,7 @@

Functions

- +
@@ -4680,7 +4680,7 @@

Functions

- +
@@ -4695,7 +4695,7 @@

Functions

- +
@@ -4710,7 +4710,7 @@

Functions

- +
@@ -4725,7 +4725,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4740,7 +4740,7 @@

Functions

- +
@@ -4755,7 +4755,7 @@

Functions

- +
@@ -4770,7 +4770,7 @@

Functions

- +
@@ -4785,7 +4785,7 @@

Functions

- +
@@ -4800,7 +4800,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4815,7 +4815,7 @@

Functions

-

Returns true if view content same, false otherwise.

+

Returns true if view content same, false otherwise.

@@ -4830,7 +4830,7 @@

Functions

- +
@@ -4845,7 +4845,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4860,7 +4860,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4875,7 +4875,7 @@

Functions

- +
@@ -4890,7 +4890,7 @@

Functions

- +
@@ -4905,7 +4905,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4920,7 +4920,7 @@

Functions

- +
@@ -4935,7 +4935,7 @@

Functions

- +
@@ -4965,7 +4965,7 @@

Functions

- +
@@ -4980,7 +4980,7 @@

Functions

- +
@@ -4995,7 +4995,7 @@

Functions

- +
@@ -5010,7 +5010,7 @@

Functions

- +
@@ -5025,7 +5025,7 @@

Functions

- +
@@ -5040,7 +5040,7 @@

Functions

- +
@@ -5055,7 +5055,7 @@

Functions

- +
@@ -5070,7 +5070,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -5085,7 +5085,7 @@

Functions

- +
@@ -5100,7 +5100,7 @@

Functions

- +
@@ -5115,7 +5115,7 @@

Functions

- +
@@ -5130,7 +5130,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5145,7 +5145,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5160,7 +5160,7 @@

Functions

- +
@@ -5175,7 +5175,7 @@

Functions

- +
@@ -5190,7 +5190,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5205,7 +5205,7 @@

Functions

- +
@@ -5220,7 +5220,7 @@

Functions

- +
@@ -5235,7 +5235,7 @@

Functions

- +
@@ -5250,7 +5250,7 @@

Functions

- +
@@ -5265,7 +5265,7 @@

Functions

- +
@@ -5280,7 +5280,7 @@

Functions

- +
@@ -5295,7 +5295,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5310,7 +5310,7 @@

Functions

- +
@@ -5325,7 +5325,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5340,7 +5340,7 @@

Functions

- +
@@ -5355,7 +5355,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5370,7 +5370,7 @@

Functions

-
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

+
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

@@ -5385,7 +5385,7 @@

Functions

- +
@@ -5400,7 +5400,7 @@

Functions

- +
@@ -5415,7 +5415,7 @@

Functions

- +
@@ -5430,7 +5430,7 @@

Functions

- +
@@ -5445,7 +5445,7 @@

Functions

- +
@@ -5460,7 +5460,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5475,7 +5475,7 @@

Functions

- +
@@ -5490,7 +5490,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5505,7 +5505,7 @@

Functions

- +
@@ -5520,7 +5520,7 @@

Functions

- +
@@ -5535,7 +5535,7 @@

Functions

- +
@@ -5550,7 +5550,7 @@

Functions

- +
@@ -5565,7 +5565,7 @@

Functions

- +
@@ -5580,7 +5580,7 @@

Functions

-

Returns the validation status for this view.

+

Returns the validation status for this view.

@@ -5595,7 +5595,7 @@

Functions

- +
@@ -5610,7 +5610,7 @@

Functions

- +
@@ -5625,7 +5625,7 @@

Functions

- +
@@ -5655,7 +5655,7 @@

Functions

- +
@@ -5685,7 +5685,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5715,7 +5715,7 @@

Functions

- +
@@ -5730,7 +5730,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5745,7 +5745,7 @@

Functions

- +
@@ -5760,7 +5760,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5775,7 +5775,7 @@

Functions

- +
@@ -5805,7 +5805,7 @@

Functions

- +
@@ -5820,7 +5820,7 @@

Functions

- +
@@ -5835,7 +5835,7 @@

Functions

- +
@@ -5850,7 +5850,7 @@

Functions

- +
@@ -5865,7 +5865,7 @@

Functions

- +
@@ -5880,7 +5880,7 @@

Functions

- +
@@ -5910,7 +5910,7 @@

Functions

- +
@@ -5925,7 +5925,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -5940,7 +5940,7 @@

Functions

- +
@@ -5955,7 +5955,7 @@

Functions

- +
@@ -5970,7 +5970,7 @@

Functions

- +
@@ -5985,7 +5985,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -6000,7 +6000,7 @@

Functions

- +
@@ -6015,7 +6015,7 @@

Functions

- +
@@ -6030,7 +6030,7 @@

Functions

- +
@@ -6045,7 +6045,7 @@

Functions

- +
@@ -6060,7 +6060,7 @@

Functions

- +
@@ -6120,7 +6120,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -6135,7 +6135,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6255,7 +6255,7 @@

Functions

- +
@@ -6270,7 +6270,7 @@

Functions

- +
@@ -6285,7 +6285,7 @@

Functions

- +
@@ -6300,7 +6300,7 @@

Functions

- +
@@ -6315,7 +6315,7 @@

Functions

- +
@@ -6330,7 +6330,7 @@

Functions

- +
@@ -6345,7 +6345,7 @@

Functions

- +
@@ -6360,7 +6360,7 @@

Functions

- +
@@ -6375,7 +6375,7 @@

Functions

- +
@@ -6405,7 +6405,7 @@

Functions

- +
@@ -6420,7 +6420,7 @@

Functions

- +
@@ -6435,7 +6435,7 @@

Functions

- +
@@ -6465,7 +6465,7 @@

Functions

- +
@@ -6495,7 +6495,7 @@

Functions

- +
@@ -6510,7 +6510,7 @@

Functions

- +
@@ -6525,7 +6525,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6540,7 +6540,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6555,7 +6555,7 @@

Functions

- +
@@ -6570,7 +6570,7 @@

Functions

- +
@@ -6585,7 +6585,7 @@

Functions

- +
@@ -6600,7 +6600,7 @@

Functions

- +
@@ -6615,7 +6615,7 @@

Functions

- +
@@ -6630,7 +6630,7 @@

Functions

- +
@@ -6660,7 +6660,7 @@

Functions

- +
@@ -6675,7 +6675,7 @@

Functions

- +
@@ -6690,7 +6690,7 @@

Functions

- +
@@ -6705,7 +6705,7 @@

Functions

- +
@@ -6720,7 +6720,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6735,7 +6735,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6750,7 +6750,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6765,7 +6765,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6780,7 +6780,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6795,7 +6795,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6810,7 +6810,7 @@

Functions

- +
@@ -6825,7 +6825,7 @@

Functions

- +
@@ -6855,7 +6855,7 @@

Functions

- +
@@ -6870,7 +6870,7 @@

Functions

- +
@@ -6885,7 +6885,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6900,7 +6900,7 @@

Functions

- +
@@ -6915,7 +6915,7 @@

Functions

- +
@@ -6930,7 +6930,7 @@

Functions

- +
@@ -6945,7 +6945,7 @@

Functions

- +
@@ -6960,7 +6960,7 @@

Functions

- +
@@ -6975,7 +6975,7 @@

Functions

-

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

+

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

@@ -7005,7 +7005,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -7020,7 +7020,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -7035,7 +7035,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -7050,7 +7050,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -7065,7 +7065,7 @@

Functions

- +
@@ -7125,7 +7125,7 @@

Functions

- +
@@ -7140,7 +7140,7 @@

Functions

-

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

+

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

@@ -7155,7 +7155,7 @@

Functions

- +
@@ -7170,7 +7170,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7185,7 +7185,7 @@

Functions

- +
@@ -7200,7 +7200,7 @@

Functions

- +
@@ -7245,7 +7245,7 @@

Functions

- +
@@ -7260,7 +7260,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7275,7 +7275,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7305,7 +7305,7 @@

Functions

- +
@@ -7320,7 +7320,7 @@

Functions

- +
@@ -7335,7 +7335,7 @@

Functions

- +
@@ -7365,7 +7365,7 @@

Functions

- +
@@ -7380,7 +7380,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7395,7 +7395,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7440,7 +7440,7 @@

Functions

- +
@@ -7455,7 +7455,7 @@

Functions

- +
@@ -7470,7 +7470,7 @@

Functions

- +
@@ -7485,7 +7485,7 @@

Functions

- +
@@ -7500,7 +7500,7 @@

Functions

- +
@@ -7515,7 +7515,7 @@

Functions

- +
@@ -7530,7 +7530,7 @@

Functions

- +
@@ -7545,7 +7545,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7560,7 +7560,7 @@

Functions

- +
@@ -7575,7 +7575,7 @@

Functions

- +
@@ -7590,7 +7590,7 @@

Functions

- +
@@ -7605,7 +7605,7 @@

Functions

- +
@@ -7620,7 +7620,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7635,7 +7635,7 @@

Functions

- +
@@ -7650,7 +7650,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7665,7 +7665,7 @@

Functions

- +
@@ -7680,7 +7680,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7725,7 +7725,7 @@

Functions

- +
@@ -7770,7 +7770,7 @@

Functions

- +
@@ -7785,7 +7785,7 @@

Functions

- +
@@ -7800,7 +7800,7 @@

Functions

- +
@@ -7815,7 +7815,7 @@

Functions

- +
@@ -7830,7 +7830,7 @@

Functions

- +
@@ -7845,7 +7845,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7860,7 +7860,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7875,7 +7875,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -7890,7 +7890,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -7905,7 +7905,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -7920,7 +7920,7 @@

Functions

- +
@@ -7935,7 +7935,7 @@

Functions

- +
@@ -7950,7 +7950,7 @@

Functions

- +
@@ -7980,7 +7980,7 @@

Functions

- +
@@ -7995,7 +7995,7 @@

Functions

-
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

+
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

@@ -8010,7 +8010,7 @@

Functions

- +
@@ -8025,7 +8025,7 @@

Functions

- +
@@ -8040,7 +8040,7 @@

Functions

- +
@@ -8055,7 +8055,7 @@

Functions

- +
@@ -8070,7 +8070,7 @@

Functions

- +
@@ -8085,7 +8085,7 @@

Functions

- +
@@ -8100,7 +8100,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8115,7 +8115,7 @@

Functions

-
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

+
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

@@ -8145,7 +8145,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8160,7 +8160,7 @@

Functions

-
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -8175,7 +8175,7 @@

Functions

- +
@@ -8190,7 +8190,7 @@

Functions

- +
@@ -8235,7 +8235,7 @@

Functions

- +
@@ -8250,7 +8250,7 @@

Functions

- +
@@ -8265,7 +8265,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8295,7 +8295,7 @@

Functions

- +
@@ -8310,7 +8310,7 @@

Functions

- +
@@ -8325,7 +8325,7 @@

Functions

- +
@@ -8340,7 +8340,7 @@

Functions

-
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

+
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

@@ -8355,7 +8355,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8370,7 +8370,7 @@

Functions

- +
@@ -8385,7 +8385,7 @@

Functions

- +
@@ -8400,7 +8400,7 @@

Functions

- +
@@ -8415,7 +8415,7 @@

Functions

-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8430,7 +8430,7 @@

Functions

-

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

+

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

@@ -8445,7 +8445,7 @@

Functions

- +
@@ -8460,7 +8460,7 @@

Functions

- +
@@ -8475,7 +8475,7 @@

Functions

- +
@@ -8490,7 +8490,7 @@

Functions

- +
@@ -8505,7 +8505,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8520,7 +8520,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8535,7 +8535,7 @@

Functions

-
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

+
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

@@ -8580,7 +8580,7 @@

Functions

- +
@@ -8595,7 +8595,7 @@

Functions

-
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

+
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

@@ -8610,7 +8610,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8625,7 +8625,7 @@

Functions

- +
@@ -8640,7 +8640,7 @@

Functions

-
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

+
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

@@ -8655,7 +8655,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8670,7 +8670,7 @@

Functions

- +
@@ -8685,7 +8685,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8700,7 +8700,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8715,7 +8715,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8730,7 +8730,7 @@

Functions

- +
@@ -8745,7 +8745,7 @@

Functions

- +
@@ -8760,7 +8760,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8775,7 +8775,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8790,7 +8790,7 @@

Functions

- +
@@ -8805,7 +8805,7 @@

Functions

- +
@@ -8820,7 +8820,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8835,7 +8835,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8850,7 +8850,7 @@

Functions

- +
@@ -8865,7 +8865,7 @@

Functions

-
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

+
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

@@ -8880,7 +8880,7 @@

Functions

- +
@@ -8895,7 +8895,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -8910,7 +8910,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -8925,7 +8925,7 @@

Functions

-
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

+
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

@@ -8940,7 +8940,7 @@

Functions

- +
@@ -8955,7 +8955,7 @@

Functions

- +
@@ -8970,7 +8970,7 @@

Functions

- +
@@ -9060,7 +9060,7 @@

Functions

- +
@@ -9075,7 +9075,7 @@

Functions

- +
@@ -9090,7 +9090,7 @@

Functions

- +
@@ -9105,7 +9105,7 @@

Functions

- +
@@ -9120,7 +9120,7 @@

Functions

- +
@@ -9135,7 +9135,7 @@

Functions

- +
@@ -9150,7 +9150,7 @@

Functions

-

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

+

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

@@ -9165,7 +9165,7 @@

Functions

-

This method adds a listener whose methods are called whenever VGS secure field state changes.

+

This method adds a listener whose methods are called whenever VGS secure field state changes.

@@ -9195,7 +9195,7 @@

Functions

- +
@@ -9210,7 +9210,7 @@

Functions

- +
@@ -9225,7 +9225,7 @@

Functions

- +
@@ -9255,7 +9255,7 @@

Functions

- +
@@ -9270,7 +9270,7 @@

Functions

- +
@@ -9285,7 +9285,7 @@

Functions

- +
@@ -9300,7 +9300,7 @@

Functions

- +
@@ -9315,7 +9315,7 @@

Functions

- +
@@ -9330,7 +9330,7 @@

Functions

- +
@@ -9345,7 +9345,7 @@

Functions

- +
@@ -9360,7 +9360,7 @@

Functions

- +
@@ -9375,7 +9375,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9405,7 +9405,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9420,7 +9420,7 @@

Functions

- +
@@ -9435,7 +9435,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9450,7 +9450,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9465,7 +9465,7 @@

Functions

- +
@@ -9480,7 +9480,7 @@

Functions

- +
@@ -9495,7 +9495,7 @@

Functions

- +
@@ -9510,7 +9510,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9525,7 +9525,7 @@

Functions

- +
@@ -9540,7 +9540,7 @@

Functions

- +
@@ -9555,7 +9555,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9570,7 +9570,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9585,7 +9585,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9600,7 +9600,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9615,7 +9615,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9630,7 +9630,7 @@

Functions

- +
@@ -9645,7 +9645,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9660,7 +9660,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9675,7 +9675,7 @@

Functions

- +
@@ -9690,7 +9690,7 @@

Functions

- +
@@ -9705,7 +9705,7 @@

Functions

- +
@@ -9720,7 +9720,7 @@

Functions

- +
@@ -9735,7 +9735,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9750,7 +9750,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9765,7 +9765,7 @@

Functions

- +
@@ -9780,7 +9780,7 @@

Functions

- +
@@ -9795,7 +9795,7 @@

Functions

- +
@@ -9810,7 +9810,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -9825,7 +9825,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -9840,7 +9840,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -9855,7 +9855,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -9870,7 +9870,7 @@

Functions

-
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

+
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

@@ -9885,7 +9885,7 @@

Functions

-
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

+
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

@@ -9900,7 +9900,7 @@

Functions

- +
@@ -9915,7 +9915,7 @@

Functions

- +
@@ -9930,7 +9930,7 @@

Functions

- +
@@ -9945,7 +9945,7 @@

Functions

- +
@@ -9960,7 +9960,7 @@

Functions

- +
@@ -9975,7 +9975,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -9990,7 +9990,7 @@

Functions

-
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

+
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

@@ -10005,7 +10005,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10020,7 +10020,7 @@

Functions

-
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

+
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

@@ -10035,7 +10035,7 @@

Functions

-
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

+
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

@@ -10050,7 +10050,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10065,7 +10065,7 @@

Functions

-
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

+
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

@@ -10080,7 +10080,7 @@

Functions

- +
@@ -10095,7 +10095,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10110,7 +10110,7 @@

Functions

- +
@@ -10125,7 +10125,7 @@

Functions

- +
@@ -10140,7 +10140,7 @@

Functions

- +
@@ -10155,7 +10155,7 @@

Functions

- +
@@ -10170,7 +10170,7 @@

Functions

- +
@@ -10185,7 +10185,7 @@

Functions

- +
@@ -10200,7 +10200,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10215,7 +10215,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10230,7 +10230,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10245,7 +10245,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

@@ -10260,7 +10260,7 @@

Functions

- +
@@ -10275,7 +10275,7 @@

Functions

- +
@@ -10290,7 +10290,7 @@

Functions

- +
@@ -10305,7 +10305,7 @@

Functions

- +
@@ -10320,7 +10320,7 @@

Functions

- +
@@ -10335,7 +10335,7 @@

Functions

- +
@@ -10350,7 +10350,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10365,7 +10365,7 @@

Functions

- +
@@ -10380,7 +10380,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10410,7 +10410,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10425,7 +10425,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10440,7 +10440,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10470,7 +10470,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10500,7 +10500,7 @@

Functions

-

Explicitly request that the current input method's soft input area be shown to the user, if needed.

+

Explicitly request that the current input method's soft input area be shown to the user, if needed.

@@ -10515,7 +10515,7 @@

Functions

- +
@@ -10545,7 +10545,7 @@

Functions

- +
@@ -10560,7 +10560,7 @@

Functions

- +
@@ -10575,7 +10575,7 @@

Functions

- +
@@ -10590,7 +10590,7 @@

Functions

- +
@@ -10605,7 +10605,7 @@

Functions

- +
@@ -10620,7 +10620,7 @@

Functions

- +
@@ -10635,7 +10635,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10650,7 +10650,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10680,7 +10680,7 @@

Functions

- +
@@ -10695,7 +10695,7 @@

Functions

- +
@@ -10710,7 +10710,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10725,7 +10725,7 @@

Functions

- +
@@ -10755,7 +10755,7 @@

Functions

- +
@@ -10770,7 +10770,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.view/-input-field-view/is-content-equals.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.view/-input-field-view/is-content-equals.html index dfbf2367d..0521e4ade 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.view/-input-field-view/is-content-equals.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.view/-input-field-view/is-content-equals.html @@ -66,7 +66,7 @@

isContentEquals

-

Returns true if view content same, false otherwise.

+

Returns true if view content same, false otherwise.

-
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

Return

true if the input required.

+
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

Return

true if the input required.

-

Returns the validation status for this view.

Return

True if validation enabled for this View.

+

Returns the validation status for this view.

Return

True if validation enabled for this View.

-

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

+

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

-
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

Parameters

isVisible
+
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

Parameters

isVisible
-
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

Parameters

type

integer value of TextUtils.TruncateAt


Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

Parameters

ellipsis
+
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

Parameters

type

integer value of TextUtils.TruncateAt


Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

Parameters

ellipsis
-
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

Parameters

fieldName

the name of the field


open fun setFieldName(resId: Int)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

Parameters

resId

the resource identifier of the field name

+
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

Parameters

fieldName

the name of the field


open fun setFieldName(resId: Int)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

Parameters

resId

the resource identifier of the field name

-
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

Parameters

gravity
+
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

Parameters

gravity
-

Sets the color of the hint text.

Parameters

colors

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

Parameters

color
+

Sets the color of the hint text.

Parameters

colors

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

Parameters

color
-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

Parameters

text
+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

Parameters

text
-
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

+
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

-
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

Parameters

inputType
+
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

Parameters

inputType
-
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

Parameters

state

Set true if the input required.

+
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

Parameters

state

Set true if the input required.

-
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

Parameters

lines

the maximum height of TextView in terms of number of lines.

+
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

Parameters

lines

the maximum height of TextView in terms of number of lines.

-
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

Parameters

lines

the minimum height of TextView in terms of number of lines

+
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

Parameters

lines

the minimum height of TextView in terms of number of lines

-

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

+

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

-

This method adds a listener whose methods are called whenever VGS secure field state changes.

Parameters

onFieldStateChangeListener

listener which will notify about changes inside input field.

+

This method adds a listener whose methods are called whenever VGS secure field state changes.

Parameters

onFieldStateChangeListener

listener which will notify about changes inside input field.

-
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

Parameters

index

specific position for the cursor.

+
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

Parameters

index

specific position for the cursor.

-
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

Parameters

singleLine
+
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

Parameters

singleLine
-
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

Parameters

resId

the resource identifier of the style to apply


open fun setTextAppearance(context: Context, resId: Int)

Deprecated

deprecated

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

Parameters

context
resId

the resource identifier of the style to apply

+
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

Parameters

resId

the resource identifier of the style to apply


open fun setTextAppearance(context: Context, resId: Int)

Deprecated

deprecated

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

Parameters

context
resId

the resource identifier of the style to apply

-
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

Parameters

color

A color value that will be applied

+
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

Parameters

color

A color value that will be applied

-
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

Parameters

size

The scaled pixel size.


open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

Parameters

unit

The desired dimension unit.

size

The desired size in the given units.

+
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

Parameters

size

The scaled pixel size.


open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

Parameters

unit

The desired dimension unit.

size

The desired size in the given units.

-
open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

Parameters

resId

the resource identifier of the string resource to be displayed


open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

Parameters

resId

the resource identifier of the string resource to be displayed

type

a TextView.BufferType which defines whether the text is stored as a static text, styleable/spannable text, or editable text


open fun setText(text: CharSequence?)

Sets the text to be displayed.

Parameters

text

text to be displayed


open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

Parameters

text

text to be displayed

type

a TextView.BufferType which defines whether the text is stored as a static text, styleable/spannable text, or editable text

See also

+
open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

Parameters

resId

the resource identifier of the string resource to be displayed


open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

Parameters

resId

the resource identifier of the string resource to be displayed

type

a TextView.BufferType which defines whether the text is stored as a static text, styleable/spannable text, or editable text


open fun setText(text: CharSequence?)

Sets the text to be displayed.

Parameters

text

text to be displayed


open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

Parameters

text

text to be displayed

type

a TextView.BufferType which defines whether the text is stored as a static text, styleable/spannable text, or editable text

See also

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

Parameters

typeface

This value may be null.


open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

Parameters

tf

This value may be null.

style

Value is Typeface.NORMAL, Typeface.BOLD, Typeface.ITALIC, or Typeface.BOLD_ITALIC

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

Parameters

typeface

This value may be null.


open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

Parameters

tf

This value may be null.

style

Value is Typeface.NORMAL, Typeface.BOLD, Typeface.ITALIC, or Typeface.BOLD_ITALIC

-

Explicitly request that the current input method's soft input area be shown to the user, if needed.

+

Explicitly request that the current input method's soft input area be shown to the user, if needed.

-
fun CardVerificationCodeEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, CardVerificationCodeEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, CardVerificationCodeEditText) -> Unit? = null)

CardVerificationCodeEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

+
fun CardVerificationCodeEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, CardVerificationCodeEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, CardVerificationCodeEditText) -> Unit? = null)

CardVerificationCodeEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

-
fun ExpirationDateEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, ExpirationDateEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, ExpirationDateEditText) -> Unit? = null)

ExpirationDateEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

+
fun ExpirationDateEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, ExpirationDateEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, ExpirationDateEditText) -> Unit? = null)

ExpirationDateEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

-
fun PersonNameEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, PersonNameEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, PersonNameEditText) -> Unit? = null)

PersonNameEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

+
fun PersonNameEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, PersonNameEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, PersonNameEditText) -> Unit? = null)

PersonNameEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

-
fun RangeDateEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, RangeDateEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, RangeDateEditText) -> Unit? = null)

RangeDateEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

+
fun RangeDateEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, RangeDateEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, RangeDateEditText) -> Unit? = null)

RangeDateEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

-
fun SSNEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, SSNEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, SSNEditText) -> Unit? = null)

SSNEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

+
fun SSNEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, SSNEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, SSNEditText) -> Unit? = null)

SSNEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

-
fun VGSCardNumberEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, VGSCardNumberEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, VGSCardNumberEditText) -> Unit? = null)

VGSCardNumberEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

+
fun VGSCardNumberEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, VGSCardNumberEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, VGSCardNumberEditText) -> Unit? = null)

VGSCardNumberEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

-
fun VGSEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, VGSEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, VGSEditText) -> Unit? = null)

VGSEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

+
fun VGSEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, VGSEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, VGSEditText) -> Unit? = null)

VGSEditText compose wrapper.

Parameters

collect
fieldName
  • field-name in JSON path in inbound route filters.

modifier
onViewCreate
onViewUpdate
  • A callback to be invoked after the view is inflated and upon recomposition to update the information and state of the view.

-
fun CardVerificationCodeEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, CardVerificationCodeEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, CardVerificationCodeEditText) -> Unit? = null)
+
fun CardVerificationCodeEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, CardVerificationCodeEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, CardVerificationCodeEditText) -> Unit? = null)
@@ -96,7 +96,7 @@

Functions

-
fun ExpirationDateEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, ExpirationDateEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, ExpirationDateEditText) -> Unit? = null)

ExpirationDateEditText compose wrapper.

+
fun ExpirationDateEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, ExpirationDateEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, ExpirationDateEditText) -> Unit? = null)

ExpirationDateEditText compose wrapper.

@@ -111,7 +111,7 @@

Functions

-
fun PersonNameEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, PersonNameEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, PersonNameEditText) -> Unit? = null)

PersonNameEditText compose wrapper.

+
fun PersonNameEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, PersonNameEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, PersonNameEditText) -> Unit? = null)

PersonNameEditText compose wrapper.

@@ -126,7 +126,7 @@

Functions

-
fun RangeDateEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, RangeDateEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, RangeDateEditText) -> Unit? = null)

RangeDateEditText compose wrapper.

+
fun RangeDateEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, RangeDateEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, RangeDateEditText) -> Unit? = null)

RangeDateEditText compose wrapper.

@@ -141,7 +141,7 @@

Functions

-
fun SSNEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, SSNEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, SSNEditText) -> Unit? = null)

SSNEditText compose wrapper.

+
fun SSNEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, SSNEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, SSNEditText) -> Unit? = null)

SSNEditText compose wrapper.

@@ -156,7 +156,7 @@

Functions

-
fun VGSCardNumberEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, VGSCardNumberEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, VGSCardNumberEditText) -> Unit? = null)

VGSCardNumberEditText compose wrapper.

+
fun VGSCardNumberEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, VGSCardNumberEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, VGSCardNumberEditText) -> Unit? = null)

VGSCardNumberEditText compose wrapper.

@@ -171,7 +171,7 @@

Functions

-
fun VGSEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, VGSEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, VGSEditText) -> Unit? = null)

VGSEditText compose wrapper.

+
fun VGSEditTextWrapper(collect: VGSCollect?, fieldName: String, modifier: Modifier = Modifier, onViewCreate: (VGSTextInputLayout, VGSEditText) -> Unit? = null, onViewUpdate: (VGSTextInputLayout, VGSEditText) -> Unit? = null)

VGSEditText compose wrapper.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-date-edit-text/get-date-picker-mode.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-date-edit-text/get-date-picker-mode.html index 01d3764c0..318f8362c 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-date-edit-text/get-date-picker-mode.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-date-edit-text/get-date-picker-mode.html @@ -66,7 +66,7 @@

getDatePickerMode

-

Return type of exact appearance and interaction model of this widget.

Return

date picker mode

+

Return type of exact appearance and interaction model of this widget.

Return

date picker mode

-

Return regex date representation format.

Return

regex

+

Return regex date representation format.

Return

regex

-

It return current state of the field.

Return

current state.

+

It return current state of the field.

Return

current state.

- +
@@ -112,7 +112,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -127,7 +127,7 @@

Functions

- +
@@ -157,7 +157,7 @@

Functions

- +
@@ -172,7 +172,7 @@

Functions

-

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

+

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

@@ -187,7 +187,7 @@

Functions

- +
@@ -202,7 +202,7 @@

Functions

- +
@@ -217,7 +217,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -247,7 +247,7 @@

Functions

- +
@@ -262,7 +262,7 @@

Functions

- +
@@ -277,7 +277,7 @@

Functions

- +
@@ -307,7 +307,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -322,7 +322,7 @@

Functions

- +
@@ -337,7 +337,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -352,7 +352,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -367,7 +367,7 @@

Functions

- +
@@ -382,7 +382,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -397,7 +397,7 @@

Functions

- +
@@ -412,7 +412,7 @@

Functions

- +
@@ -427,7 +427,7 @@

Functions

- +
@@ -442,7 +442,7 @@

Functions

- +
@@ -457,7 +457,7 @@

Functions

-

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

+

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

@@ -472,7 +472,7 @@

Functions

- +
@@ -487,7 +487,7 @@

Functions

- +
@@ -532,7 +532,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -562,7 +562,7 @@

Functions

- +
@@ -592,7 +592,7 @@

Functions

- +
@@ -607,7 +607,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -622,7 +622,7 @@

Functions

- +
@@ -637,7 +637,7 @@

Functions

- +
@@ -652,7 +652,7 @@

Functions

- +
@@ -667,7 +667,7 @@

Functions

- +
@@ -727,7 +727,7 @@

Functions

- +
@@ -802,7 +802,7 @@

Functions

- +
@@ -862,7 +862,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -877,7 +877,7 @@

Functions

- +
@@ -892,7 +892,7 @@

Functions

- +
@@ -907,7 +907,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -922,7 +922,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -952,7 +952,7 @@

Functions

- +
@@ -997,7 +997,7 @@

Functions

- +
@@ -1162,7 +1162,7 @@

Functions

- +
@@ -1222,7 +1222,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1237,7 +1237,7 @@

Functions

- +
@@ -1252,7 +1252,7 @@

Functions

-
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

+
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

@@ -1267,7 +1267,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1297,7 +1297,7 @@

Functions

- +
@@ -1327,7 +1327,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1342,7 +1342,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1357,7 +1357,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1387,7 +1387,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1402,7 +1402,7 @@

Functions

- +
@@ -1417,7 +1417,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1447,7 +1447,7 @@

Functions

- +
@@ -1492,7 +1492,7 @@

Functions

- +
@@ -1507,7 +1507,7 @@

Functions

- +
@@ -1522,7 +1522,7 @@

Functions

- +
@@ -1537,7 +1537,7 @@

Functions

- +
@@ -1552,7 +1552,7 @@

Functions

- +
@@ -1567,7 +1567,7 @@

Functions

- +
@@ -1582,7 +1582,7 @@

Functions

- +
@@ -1597,7 +1597,7 @@

Functions

- +
@@ -1612,7 +1612,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1627,7 +1627,7 @@

Functions

- +
@@ -1642,7 +1642,7 @@

Functions

- +
@@ -1657,7 +1657,7 @@

Functions

- +
@@ -1672,7 +1672,7 @@

Functions

- +
@@ -1687,7 +1687,7 @@

Functions

- +
@@ -1702,7 +1702,7 @@

Functions

- +
@@ -1717,7 +1717,7 @@

Functions

- +
@@ -1732,7 +1732,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1747,7 +1747,7 @@

Functions

- +
@@ -1777,7 +1777,7 @@

Functions

- +
@@ -1792,7 +1792,7 @@

Functions

- +
@@ -1807,7 +1807,7 @@

Functions

- +
@@ -1822,7 +1822,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1837,7 +1837,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1852,7 +1852,7 @@

Functions

- +
@@ -1867,7 +1867,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1882,7 +1882,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1897,7 +1897,7 @@

Functions

- +
@@ -1927,7 +1927,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -1942,7 +1942,7 @@

Functions

- +
@@ -1957,7 +1957,7 @@

Functions

- +
@@ -1972,7 +1972,7 @@

Functions

- +
@@ -1987,7 +1987,7 @@

Functions

- +
@@ -2002,7 +2002,7 @@

Functions

- +
@@ -2017,7 +2017,7 @@

Functions

- +
@@ -2032,7 +2032,7 @@

Functions

- +
@@ -2047,7 +2047,7 @@

Functions

-

Return type of exact appearance and interaction model of this widget.

+

Return type of exact appearance and interaction model of this widget.

@@ -2062,7 +2062,7 @@

Functions

-

Return regex date representation format.

+

Return regex date representation format.

@@ -2077,7 +2077,7 @@

Functions

- +
@@ -2092,7 +2092,7 @@

Functions

- +
@@ -2107,7 +2107,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2122,7 +2122,7 @@

Functions

- +
@@ -2137,7 +2137,7 @@

Functions

- +
@@ -2152,7 +2152,7 @@

Functions

- +
@@ -2167,7 +2167,7 @@

Functions

- +
@@ -2182,7 +2182,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2197,7 +2197,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2212,7 +2212,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2227,7 +2227,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2242,7 +2242,7 @@

Functions

-
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

+
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

@@ -2257,7 +2257,7 @@

Functions

-

Gets the current field type of the InputFieldView.

+

Gets the current field type of the InputFieldView.

@@ -2272,7 +2272,7 @@

Functions

- +
@@ -2287,7 +2287,7 @@

Functions

- +
@@ -2302,7 +2302,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2317,7 +2317,7 @@

Functions

- +
@@ -2332,7 +2332,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2347,7 +2347,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2362,7 +2362,7 @@

Functions

- +
@@ -2377,7 +2377,7 @@

Functions

- +
@@ -2392,7 +2392,7 @@

Functions

- +
@@ -2407,7 +2407,7 @@

Functions

- +
@@ -2422,7 +2422,7 @@

Functions

- +
@@ -2437,7 +2437,7 @@

Functions

- +
@@ -2452,7 +2452,7 @@

Functions

-
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

+
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

@@ -2467,7 +2467,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2482,7 +2482,7 @@

Functions

- +
@@ -2497,7 +2497,7 @@

Functions

- +
@@ -2512,7 +2512,7 @@

Functions

- +
@@ -2527,7 +2527,7 @@

Functions

- +
@@ -2542,7 +2542,7 @@

Functions

- +
@@ -2557,7 +2557,7 @@

Functions

- +
@@ -2572,7 +2572,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2587,7 +2587,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2602,7 +2602,7 @@

Functions

- +
@@ -2617,7 +2617,7 @@

Functions

- +
@@ -2632,7 +2632,7 @@

Functions

- +
@@ -2647,7 +2647,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2662,7 +2662,7 @@

Functions

-

Get the type of the Input Method Editor (IME).

+

Get the type of the Input Method Editor (IME).

@@ -2677,7 +2677,7 @@

Functions

- +
@@ -2692,7 +2692,7 @@

Functions

- +
@@ -2707,7 +2707,7 @@

Functions

- +
@@ -2722,7 +2722,7 @@

Functions

-
open fun getInputType(): Int

Get the type of the editable content.

+
open fun getInputType(): Int

Get the type of the editable content.

@@ -2737,7 +2737,7 @@

Functions

- +
@@ -2752,7 +2752,7 @@

Functions

- +
@@ -2767,7 +2767,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2782,7 +2782,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2797,7 +2797,7 @@

Functions

- +
@@ -2812,7 +2812,7 @@

Functions

- +
@@ -2827,7 +2827,7 @@

Functions

- +
@@ -2842,7 +2842,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2857,7 +2857,7 @@

Functions

- +
@@ -2872,7 +2872,7 @@

Functions

- +
@@ -2887,7 +2887,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2902,7 +2902,7 @@

Functions

- +
@@ -2917,7 +2917,7 @@

Functions

- +
@@ -2932,7 +2932,7 @@

Functions

- +
@@ -2947,7 +2947,7 @@

Functions

- +
@@ -2962,7 +2962,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -2977,7 +2977,7 @@

Functions

- +
@@ -2992,7 +2992,7 @@

Functions

- +
@@ -3007,7 +3007,7 @@

Functions

- +
@@ -3022,7 +3022,7 @@

Functions

- +
@@ -3037,7 +3037,7 @@

Functions

- +
@@ -3052,7 +3052,7 @@

Functions

- +
@@ -3067,7 +3067,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3082,7 +3082,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3097,7 +3097,7 @@

Functions

- +
@@ -3112,7 +3112,7 @@

Functions

- +
@@ -3127,7 +3127,7 @@

Functions

- +
@@ -3142,7 +3142,7 @@

Functions

- +
@@ -3157,7 +3157,7 @@

Functions

- +
@@ -3172,7 +3172,7 @@

Functions

- +
@@ -3187,7 +3187,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3202,7 +3202,7 @@

Functions

- +
@@ -3217,7 +3217,7 @@

Functions

- +
@@ -3232,7 +3232,7 @@

Functions

- +
@@ -3247,7 +3247,7 @@

Functions

- +
@@ -3277,7 +3277,7 @@

Functions

- +
@@ -3382,7 +3382,7 @@

Functions

- +
@@ -3397,7 +3397,7 @@

Functions

- +
@@ -3412,7 +3412,7 @@

Functions

- +
@@ -3427,7 +3427,7 @@

Functions

- +
@@ -3442,7 +3442,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3457,7 +3457,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3472,7 +3472,7 @@

Functions

- +
@@ -3487,7 +3487,7 @@

Functions

- +
@@ -3502,7 +3502,7 @@

Functions

- +
@@ -3517,7 +3517,7 @@

Functions

- +
@@ -3532,7 +3532,7 @@

Functions

- +
@@ -3547,7 +3547,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3562,7 +3562,7 @@

Functions

- +
@@ -3577,7 +3577,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3592,7 +3592,7 @@

Functions

- +
@@ -3607,7 +3607,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3622,7 +3622,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3637,7 +3637,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3652,7 +3652,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3667,7 +3667,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3682,7 +3682,7 @@

Functions

- +
@@ -3697,7 +3697,7 @@

Functions

- +
@@ -3712,7 +3712,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3727,7 +3727,7 @@

Functions

- +
@@ -3742,7 +3742,7 @@

Functions

- +
@@ -3757,7 +3757,7 @@

Functions

- +
@@ -3772,7 +3772,7 @@

Functions

- +
@@ -3787,7 +3787,7 @@

Functions

- +
@@ -3802,7 +3802,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3817,7 +3817,7 @@

Functions

- +
@@ -3832,7 +3832,7 @@

Functions

-

It return current state of the field.

+

It return current state of the field.

@@ -3847,7 +3847,7 @@

Functions

- +
@@ -3862,7 +3862,7 @@

Functions

- +
@@ -3877,7 +3877,7 @@

Functions

- +
@@ -3892,7 +3892,7 @@

Functions

- +
@@ -3907,7 +3907,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -3922,7 +3922,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -3937,7 +3937,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -3952,7 +3952,7 @@

Functions

- +
@@ -3967,7 +3967,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -3982,7 +3982,7 @@

Functions

- +
@@ -3997,7 +3997,7 @@

Functions

- +
@@ -4012,7 +4012,7 @@

Functions

- +
@@ -4027,7 +4027,7 @@

Functions

- +
@@ -4042,7 +4042,7 @@

Functions

- +
@@ -4057,7 +4057,7 @@

Functions

- +
@@ -4072,7 +4072,7 @@

Functions

- +
@@ -4087,7 +4087,7 @@

Functions

- +
@@ -4102,7 +4102,7 @@

Functions

-
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

+
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

@@ -4117,7 +4117,7 @@

Functions

- +
@@ -4132,7 +4132,7 @@

Functions

- +
@@ -4147,7 +4147,7 @@

Functions

- +
@@ -4162,7 +4162,7 @@

Functions

- +
@@ -4177,7 +4177,7 @@

Functions

- +
@@ -4192,7 +4192,7 @@

Functions

- +
@@ -4207,7 +4207,7 @@

Functions

- +
@@ -4222,7 +4222,7 @@

Functions

- +
@@ -4237,7 +4237,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4252,7 +4252,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4267,7 +4267,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4282,7 +4282,7 @@

Functions

- +
@@ -4297,7 +4297,7 @@

Functions

- +
@@ -4312,7 +4312,7 @@

Functions

- +
@@ -4327,7 +4327,7 @@

Functions

- +
@@ -4342,7 +4342,7 @@

Functions

- +
@@ -4357,7 +4357,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4372,7 +4372,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4387,7 +4387,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4402,7 +4402,7 @@

Functions

- +
@@ -4432,7 +4432,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4447,7 +4447,7 @@

Functions

- +
@@ -4462,7 +4462,7 @@

Functions

- +
@@ -4477,7 +4477,7 @@

Functions

- +
@@ -4492,7 +4492,7 @@

Functions

- +
@@ -4507,7 +4507,7 @@

Functions

- +
@@ -4537,7 +4537,7 @@

Functions

- +
@@ -4552,7 +4552,7 @@

Functions

-

Request to hide the soft input window from the context of the window that is currently accepting input.

+

Request to hide the soft input window from the context of the window that is currently accepting input.

@@ -4567,7 +4567,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4582,7 +4582,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4642,7 +4642,7 @@

Functions

- +
@@ -4657,7 +4657,7 @@

Functions

- +
@@ -4672,7 +4672,7 @@

Functions

- +
@@ -4687,7 +4687,7 @@

Functions

- +
@@ -4702,7 +4702,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4717,7 +4717,7 @@

Functions

- +
@@ -4732,7 +4732,7 @@

Functions

- +
@@ -4747,7 +4747,7 @@

Functions

- +
@@ -4762,7 +4762,7 @@

Functions

- +
@@ -4777,7 +4777,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4792,7 +4792,7 @@

Functions

-

Returns true if view content same, false otherwise.

+

Returns true if view content same, false otherwise.

@@ -4807,7 +4807,7 @@

Functions

- +
@@ -4822,7 +4822,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4837,7 +4837,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4852,7 +4852,7 @@

Functions

- +
@@ -4867,7 +4867,7 @@

Functions

- +
@@ -4882,7 +4882,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4897,7 +4897,7 @@

Functions

- +
@@ -4912,7 +4912,7 @@

Functions

- +
@@ -4942,7 +4942,7 @@

Functions

- +
@@ -4957,7 +4957,7 @@

Functions

- +
@@ -4972,7 +4972,7 @@

Functions

- +
@@ -4987,7 +4987,7 @@

Functions

- +
@@ -5002,7 +5002,7 @@

Functions

- +
@@ -5017,7 +5017,7 @@

Functions

- +
@@ -5032,7 +5032,7 @@

Functions

- +
@@ -5047,7 +5047,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -5062,7 +5062,7 @@

Functions

- +
@@ -5077,7 +5077,7 @@

Functions

- +
@@ -5092,7 +5092,7 @@

Functions

- +
@@ -5107,7 +5107,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5122,7 +5122,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5137,7 +5137,7 @@

Functions

- +
@@ -5152,7 +5152,7 @@

Functions

- +
@@ -5167,7 +5167,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5182,7 +5182,7 @@

Functions

- +
@@ -5197,7 +5197,7 @@

Functions

- +
@@ -5212,7 +5212,7 @@

Functions

- +
@@ -5227,7 +5227,7 @@

Functions

- +
@@ -5242,7 +5242,7 @@

Functions

- +
@@ -5257,7 +5257,7 @@

Functions

- +
@@ -5272,7 +5272,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5287,7 +5287,7 @@

Functions

- +
@@ -5302,7 +5302,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5317,7 +5317,7 @@

Functions

- +
@@ -5332,7 +5332,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5347,7 +5347,7 @@

Functions

-
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

+
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

@@ -5362,7 +5362,7 @@

Functions

- +
@@ -5377,7 +5377,7 @@

Functions

- +
@@ -5392,7 +5392,7 @@

Functions

- +
@@ -5407,7 +5407,7 @@

Functions

- +
@@ -5422,7 +5422,7 @@

Functions

- +
@@ -5437,7 +5437,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5452,7 +5452,7 @@

Functions

- +
@@ -5467,7 +5467,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5482,7 +5482,7 @@

Functions

- +
@@ -5497,7 +5497,7 @@

Functions

- +
@@ -5512,7 +5512,7 @@

Functions

- +
@@ -5527,7 +5527,7 @@

Functions

- +
@@ -5542,7 +5542,7 @@

Functions

- +
@@ -5557,7 +5557,7 @@

Functions

-

Returns the validation status for this view.

+

Returns the validation status for this view.

@@ -5572,7 +5572,7 @@

Functions

- +
@@ -5587,7 +5587,7 @@

Functions

- +
@@ -5602,7 +5602,7 @@

Functions

- +
@@ -5632,7 +5632,7 @@

Functions

- +
@@ -5662,7 +5662,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5692,7 +5692,7 @@

Functions

- +
@@ -5707,7 +5707,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5722,7 +5722,7 @@

Functions

- +
@@ -5737,7 +5737,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5752,7 +5752,7 @@

Functions

- +
@@ -5782,7 +5782,7 @@

Functions

- +
@@ -5797,7 +5797,7 @@

Functions

- +
@@ -5812,7 +5812,7 @@

Functions

- +
@@ -5827,7 +5827,7 @@

Functions

- +
@@ -5842,7 +5842,7 @@

Functions

- +
@@ -5857,7 +5857,7 @@

Functions

- +
@@ -5887,7 +5887,7 @@

Functions

- +
@@ -5902,7 +5902,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -5917,7 +5917,7 @@

Functions

- +
@@ -5932,7 +5932,7 @@

Functions

- +
@@ -5947,7 +5947,7 @@

Functions

- +
@@ -5962,7 +5962,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -5977,7 +5977,7 @@

Functions

- +
@@ -5992,7 +5992,7 @@

Functions

- +
@@ -6007,7 +6007,7 @@

Functions

- +
@@ -6022,7 +6022,7 @@

Functions

- +
@@ -6037,7 +6037,7 @@

Functions

- +
@@ -6097,7 +6097,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -6112,7 +6112,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6232,7 +6232,7 @@

Functions

- +
@@ -6247,7 +6247,7 @@

Functions

- +
@@ -6262,7 +6262,7 @@

Functions

- +
@@ -6277,7 +6277,7 @@

Functions

- +
@@ -6292,7 +6292,7 @@

Functions

- +
@@ -6307,7 +6307,7 @@

Functions

- +
@@ -6322,7 +6322,7 @@

Functions

- +
@@ -6337,7 +6337,7 @@

Functions

- +
@@ -6352,7 +6352,7 @@

Functions

- +
@@ -6382,7 +6382,7 @@

Functions

- +
@@ -6397,7 +6397,7 @@

Functions

- +
@@ -6412,7 +6412,7 @@

Functions

- +
@@ -6442,7 +6442,7 @@

Functions

- +
@@ -6472,7 +6472,7 @@

Functions

- +
@@ -6487,7 +6487,7 @@

Functions

- +
@@ -6502,7 +6502,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6517,7 +6517,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6532,7 +6532,7 @@

Functions

- +
@@ -6547,7 +6547,7 @@

Functions

- +
@@ -6562,7 +6562,7 @@

Functions

- +
@@ -6577,7 +6577,7 @@

Functions

- +
@@ -6592,7 +6592,7 @@

Functions

- +
@@ -6607,7 +6607,7 @@

Functions

- +
@@ -6637,7 +6637,7 @@

Functions

- +
@@ -6652,7 +6652,7 @@

Functions

- +
@@ -6667,7 +6667,7 @@

Functions

- +
@@ -6682,7 +6682,7 @@

Functions

- +
@@ -6697,7 +6697,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6712,7 +6712,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6727,7 +6727,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6742,7 +6742,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6757,7 +6757,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6772,7 +6772,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6787,7 +6787,7 @@

Functions

- +
@@ -6802,7 +6802,7 @@

Functions

- +
@@ -6832,7 +6832,7 @@

Functions

- +
@@ -6847,7 +6847,7 @@

Functions

- +
@@ -6862,7 +6862,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6877,7 +6877,7 @@

Functions

- +
@@ -6892,7 +6892,7 @@

Functions

- +
@@ -6907,7 +6907,7 @@

Functions

- +
@@ -6922,7 +6922,7 @@

Functions

- +
@@ -6937,7 +6937,7 @@

Functions

- +
@@ -6952,7 +6952,7 @@

Functions

-

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

+

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

@@ -6982,7 +6982,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -6997,7 +6997,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -7012,7 +7012,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -7027,7 +7027,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -7042,7 +7042,7 @@

Functions

- +
@@ -7102,7 +7102,7 @@

Functions

- +
@@ -7117,7 +7117,7 @@

Functions

-

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

+

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

@@ -7132,7 +7132,7 @@

Functions

- +
@@ -7147,7 +7147,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7162,7 +7162,7 @@

Functions

- +
@@ -7177,7 +7177,7 @@

Functions

- +
@@ -7222,7 +7222,7 @@

Functions

- +
@@ -7237,7 +7237,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7252,7 +7252,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7282,7 +7282,7 @@

Functions

- +
@@ -7297,7 +7297,7 @@

Functions

- +
@@ -7312,7 +7312,7 @@

Functions

- +
@@ -7342,7 +7342,7 @@

Functions

- +
@@ -7357,7 +7357,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7372,7 +7372,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7417,7 +7417,7 @@

Functions

- +
@@ -7432,7 +7432,7 @@

Functions

- +
@@ -7447,7 +7447,7 @@

Functions

- +
@@ -7462,7 +7462,7 @@

Functions

- +
@@ -7477,7 +7477,7 @@

Functions

- +
@@ -7492,7 +7492,7 @@

Functions

- +
@@ -7507,7 +7507,7 @@

Functions

- +
@@ -7522,7 +7522,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7537,7 +7537,7 @@

Functions

- +
@@ -7552,7 +7552,7 @@

Functions

- +
@@ -7567,7 +7567,7 @@

Functions

- +
@@ -7582,7 +7582,7 @@

Functions

- +
@@ -7597,7 +7597,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7612,7 +7612,7 @@

Functions

- +
@@ -7627,7 +7627,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7642,7 +7642,7 @@

Functions

- +
@@ -7657,7 +7657,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7702,7 +7702,7 @@

Functions

- +
@@ -7747,7 +7747,7 @@

Functions

- +
@@ -7762,7 +7762,7 @@

Functions

- +
@@ -7777,7 +7777,7 @@

Functions

- +
@@ -7792,7 +7792,7 @@

Functions

- +
@@ -7807,7 +7807,7 @@

Functions

- +
@@ -7822,7 +7822,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7837,7 +7837,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7852,7 +7852,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -7867,7 +7867,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -7882,7 +7882,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -7897,7 +7897,7 @@

Functions

- +
@@ -7912,7 +7912,7 @@

Functions

- +
@@ -7927,7 +7927,7 @@

Functions

- +
@@ -7957,7 +7957,7 @@

Functions

- +
@@ -7972,7 +7972,7 @@

Functions

-
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

+
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

@@ -7987,7 +7987,7 @@

Functions

-

Sets type of exact appearance and interaction model of this widget.

+

Sets type of exact appearance and interaction model of this widget.

@@ -8002,7 +8002,7 @@

Functions

-

Sets a listener to be invoked when the DatePicker dialog visibility is changing.

+

Sets a listener to be invoked when the DatePicker dialog visibility is changing.

@@ -8017,7 +8017,7 @@

Functions

-
fun setDateRegex(regex: String)

Representation of dates and times is an international standard covering the exchange of date- and time-related data. The method uses the ISO 8601 standard.

+
fun setDateRegex(regex: String)

Representation of dates and times is an international standard covering the exchange of date- and time-related data. The method uses the ISO 8601 standard.

@@ -8032,7 +8032,7 @@

Functions

- +
@@ -8047,7 +8047,7 @@

Functions

- +
@@ -8062,7 +8062,7 @@

Functions

- +
@@ -8077,7 +8077,7 @@

Functions

- +
@@ -8092,7 +8092,7 @@

Functions

- +
@@ -8107,7 +8107,7 @@

Functions

- +
@@ -8122,7 +8122,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8137,7 +8137,7 @@

Functions

-
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

+
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

@@ -8167,7 +8167,7 @@

Functions

-

Defines if data requires tokenization.

+

Defines if data requires tokenization.

@@ -8182,7 +8182,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8197,7 +8197,7 @@

Functions

-
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -8212,7 +8212,7 @@

Functions

- +
@@ -8227,7 +8227,7 @@

Functions

- +
@@ -8272,7 +8272,7 @@

Functions

- +
@@ -8287,7 +8287,7 @@

Functions

- +
@@ -8302,7 +8302,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8332,7 +8332,7 @@

Functions

- +
@@ -8347,7 +8347,7 @@

Functions

- +
@@ -8362,7 +8362,7 @@

Functions

- +
@@ -8377,7 +8377,7 @@

Functions

-
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

+
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

@@ -8392,7 +8392,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8407,7 +8407,7 @@

Functions

- +
@@ -8422,7 +8422,7 @@

Functions

- +
@@ -8437,7 +8437,7 @@

Functions

- +
@@ -8452,7 +8452,7 @@

Functions

-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8467,7 +8467,7 @@

Functions

-

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

+

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

@@ -8482,7 +8482,7 @@

Functions

- +
@@ -8497,7 +8497,7 @@

Functions

- +
@@ -8512,7 +8512,7 @@

Functions

- +
@@ -8527,7 +8527,7 @@

Functions

- +
@@ -8542,7 +8542,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8557,7 +8557,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8572,7 +8572,7 @@

Functions

-
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

+
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

@@ -8617,7 +8617,7 @@

Functions

- +
@@ -8632,7 +8632,7 @@

Functions

-
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

+
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

@@ -8647,7 +8647,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8662,7 +8662,7 @@

Functions

- +
@@ -8677,7 +8677,7 @@

Functions

-
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

+
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

@@ -8692,7 +8692,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8707,7 +8707,7 @@

Functions

- +
@@ -8722,7 +8722,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8737,7 +8737,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8752,7 +8752,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8767,7 +8767,7 @@

Functions

- +
@@ -8782,7 +8782,7 @@

Functions

- +
@@ -8797,7 +8797,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8812,7 +8812,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8827,7 +8827,7 @@

Functions

- +
@@ -8842,7 +8842,7 @@

Functions

- +
@@ -8857,7 +8857,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8872,7 +8872,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8887,7 +8887,7 @@

Functions

- +
@@ -8902,7 +8902,7 @@

Functions

-
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

+
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

@@ -8917,7 +8917,7 @@

Functions

- +
@@ -8932,7 +8932,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -8947,7 +8947,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -8962,7 +8962,7 @@

Functions

-
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

+
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

@@ -8977,7 +8977,7 @@

Functions

- +
@@ -8992,7 +8992,7 @@

Functions

- +
@@ -9007,7 +9007,7 @@

Functions

- +
@@ -9097,7 +9097,7 @@

Functions

- +
@@ -9112,7 +9112,7 @@

Functions

- +
@@ -9127,7 +9127,7 @@

Functions

- +
@@ -9142,7 +9142,7 @@

Functions

- +
@@ -9157,7 +9157,7 @@

Functions

- +
@@ -9172,7 +9172,7 @@

Functions

- +
@@ -9187,7 +9187,7 @@

Functions

-

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

+

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

@@ -9202,7 +9202,7 @@

Functions

-

This method adds a listener whose methods are called whenever VGS secure field state changes.

+

This method adds a listener whose methods are called whenever VGS secure field state changes.

@@ -9232,7 +9232,7 @@

Functions

- +
@@ -9247,7 +9247,7 @@

Functions

- +
@@ -9262,7 +9262,7 @@

Functions

- +
@@ -9292,7 +9292,7 @@

Functions

- +
@@ -9307,7 +9307,7 @@

Functions

- +
@@ -9322,7 +9322,7 @@

Functions

- +
@@ -9337,7 +9337,7 @@

Functions

- +
@@ -9352,7 +9352,7 @@

Functions

- +
@@ -9367,7 +9367,7 @@

Functions

- +
@@ -9382,7 +9382,7 @@

Functions

- +
@@ -9397,7 +9397,7 @@

Functions

- +
@@ -9412,7 +9412,7 @@

Functions

-

Representation of date and times which will be sent to the Vault Proxy Server. The method uses the ISO 8601 standard.

+

Representation of date and times which will be sent to the Vault Proxy Server. The method uses the ISO 8601 standard.

@@ -9427,7 +9427,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9457,7 +9457,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9472,7 +9472,7 @@

Functions

- +
@@ -9487,7 +9487,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9502,7 +9502,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9517,7 +9517,7 @@

Functions

- +
@@ -9532,7 +9532,7 @@

Functions

- +
@@ -9547,7 +9547,7 @@

Functions

- +
@@ -9562,7 +9562,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9577,7 +9577,7 @@

Functions

- +
@@ -9592,7 +9592,7 @@

Functions

- +
@@ -9607,7 +9607,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9622,7 +9622,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9637,7 +9637,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9652,7 +9652,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9667,7 +9667,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9682,7 +9682,7 @@

Functions

- +
@@ -9697,7 +9697,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9712,7 +9712,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9727,7 +9727,7 @@

Functions

- +
@@ -9742,7 +9742,7 @@

Functions

- +
@@ -9757,7 +9757,7 @@

Functions

- +
@@ -9772,7 +9772,7 @@

Functions

- +
@@ -9787,7 +9787,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9802,7 +9802,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9817,7 +9817,7 @@

Functions

- +
@@ -9832,7 +9832,7 @@

Functions

- +
@@ -9847,7 +9847,7 @@

Functions

- +
@@ -9862,7 +9862,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -9877,7 +9877,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -9892,7 +9892,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -9907,7 +9907,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -9922,7 +9922,7 @@

Functions

-
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

+
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

@@ -9937,7 +9937,7 @@

Functions

-
fun setSerializer(serializer: FieldDataSerializer<*, *>?)

Sets output data serializers, which will serialize data before send it to back-end.

+
fun setSerializer(serializer: FieldDataSerializer<*, *>?)

Sets output data serializers, which will serialize data before send it to back-end.

@@ -9952,7 +9952,7 @@

Functions

-
fun setSerializers(serializers: List<FieldDataSerializer<*, *>>?)

Sets output data serializers, which will serialize data before send it to back-end.

+
fun setSerializers(serializers: List<FieldDataSerializer<*, *>>?)

Sets output data serializers, which will serialize data before send it to back-end.

@@ -9967,7 +9967,7 @@

Functions

-
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

+
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

@@ -9982,7 +9982,7 @@

Functions

- +
@@ -9997,7 +9997,7 @@

Functions

- +
@@ -10012,7 +10012,7 @@

Functions

- +
@@ -10027,7 +10027,7 @@

Functions

- +
@@ -10042,7 +10042,7 @@

Functions

- +
@@ -10057,7 +10057,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -10072,7 +10072,7 @@

Functions

-
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

+
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

@@ -10087,7 +10087,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10102,7 +10102,7 @@

Functions

-
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

+
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

@@ -10117,7 +10117,7 @@

Functions

-
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

+
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

@@ -10132,7 +10132,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10147,7 +10147,7 @@

Functions

-
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

+
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

@@ -10162,7 +10162,7 @@

Functions

- +
@@ -10177,7 +10177,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10192,7 +10192,7 @@

Functions

- +
@@ -10207,7 +10207,7 @@

Functions

- +
@@ -10222,7 +10222,7 @@

Functions

- +
@@ -10237,7 +10237,7 @@

Functions

- +
@@ -10252,7 +10252,7 @@

Functions

- +
@@ -10267,7 +10267,7 @@

Functions

- +
@@ -10282,7 +10282,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10297,7 +10297,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10312,7 +10312,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10327,7 +10327,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

@@ -10342,7 +10342,7 @@

Functions

-

Sets the vault alias format in which data stores on a backend.

+

Sets the vault alias format in which data stores on a backend.

@@ -10357,7 +10357,7 @@

Functions

-

Sets the vault storage type for storing.

+

Sets the vault storage type for storing.

@@ -10372,7 +10372,7 @@

Functions

- +
@@ -10387,7 +10387,7 @@

Functions

- +
@@ -10402,7 +10402,7 @@

Functions

- +
@@ -10417,7 +10417,7 @@

Functions

- +
@@ -10432,7 +10432,7 @@

Functions

- +
@@ -10447,7 +10447,7 @@

Functions

- +
@@ -10462,7 +10462,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10477,7 +10477,7 @@

Functions

- +
@@ -10492,7 +10492,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10522,7 +10522,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10537,7 +10537,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10552,7 +10552,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10582,7 +10582,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10612,7 +10612,7 @@

Functions

-
fun showDatePickerDialog(dialogMode: DatePickerMode = DatePickerMode.DEFAULT, ignoreFieldMode: Boolean = false)

Start the DatePicker dialog and display it on screen.

+
fun showDatePickerDialog(dialogMode: DatePickerMode = DatePickerMode.DEFAULT, ignoreFieldMode: Boolean = false)

Start the DatePicker dialog and display it on screen.

@@ -10627,7 +10627,7 @@

Functions

-

Explicitly request that the current input method's soft input area be shown to the user, if needed.

+

Explicitly request that the current input method's soft input area be shown to the user, if needed.

@@ -10642,7 +10642,7 @@

Functions

- +
@@ -10672,7 +10672,7 @@

Functions

- +
@@ -10687,7 +10687,7 @@

Functions

- +
@@ -10702,7 +10702,7 @@

Functions

- +
@@ -10717,7 +10717,7 @@

Functions

- +
@@ -10732,7 +10732,7 @@

Functions

- +
@@ -10747,7 +10747,7 @@

Functions

- +
@@ -10762,7 +10762,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10777,7 +10777,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10807,7 +10807,7 @@

Functions

- +
@@ -10822,7 +10822,7 @@

Functions

- +
@@ -10837,7 +10837,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10852,7 +10852,7 @@

Functions

- +
@@ -10882,7 +10882,7 @@

Functions

- +
@@ -10897,7 +10897,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-date-edit-text/set-date-picker-mode.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-date-edit-text/set-date-picker-mode.html index 84b2eb1b9..6fe5bac63 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-date-edit-text/set-date-picker-mode.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-date-edit-text/set-date-picker-mode.html @@ -66,7 +66,7 @@

setDatePickerMode

-

Sets type of exact appearance and interaction model of this widget.

Parameters

mode
+

Sets type of exact appearance and interaction model of this widget.

Parameters

mode
-

Sets a listener to be invoked when the DatePicker dialog visibility is changing.

+

Sets a listener to be invoked when the DatePicker dialog visibility is changing.

-
fun setDateRegex(regex: String)

Representation of dates and times is an international standard covering the exchange of date- and time-related data. The method uses the ISO 8601 standard.

Parameters

regex

Specifies date representation format

+
fun setDateRegex(regex: String)

Representation of dates and times is an international standard covering the exchange of date- and time-related data. The method uses the ISO 8601 standard.

Parameters

regex

Specifies date representation format

-

Defines if data requires tokenization.

Parameters

isEnabled

Is tokenization enabled.

+

Defines if data requires tokenization.

Parameters

isEnabled

Is tokenization enabled.

-

Representation of date and times which will be sent to the Vault Proxy Server. The method uses the ISO 8601 standard.

Parameters

regex

Specifies date representation format

+

Representation of date and times which will be sent to the Vault Proxy Server. The method uses the ISO 8601 standard.

Parameters

regex

Specifies date representation format

-
fun setSerializer(serializer: FieldDataSerializer<*, *>?)

Sets output data serializers, which will serialize data before send it to back-end.

Parameters

serializer
  • FieldDataSerializer serializer.

+
fun setSerializer(serializer: FieldDataSerializer<*, *>?)

Sets output data serializers, which will serialize data before send it to back-end.

Parameters

serializer
  • FieldDataSerializer serializer.

-
fun setSerializers(serializers: List<FieldDataSerializer<*, *>>?)

Sets output data serializers, which will serialize data before send it to back-end.

Parameters

serializers
  • list of FieldDataSerializer serializers.

+
fun setSerializers(serializers: List<FieldDataSerializer<*, *>>?)

Sets output data serializers, which will serialize data before send it to back-end.

Parameters

serializers
  • list of FieldDataSerializer serializers.

-

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

+

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

-

Sets the vault storage type for storing.

Parameters

storage

The VGS storage type.

+

Sets the vault storage type for storing.

Parameters

storage

The VGS storage type.

-
fun showDatePickerDialog(dialogMode: DatePickerMode = DatePickerMode.DEFAULT, ignoreFieldMode: Boolean = false)

Start the DatePicker dialog and display it on screen.

Parameters

dialogMode
ignoreFieldMode

Whether the field should ignore state configured with setDatePickerMode() or through attr.datePickerModes attribute in the XML. If true, the dialog will show DatePicker with dialogMode mode.

+
fun showDatePickerDialog(dialogMode: DatePickerMode = DatePickerMode.DEFAULT, ignoreFieldMode: Boolean = false)

Start the DatePicker dialog and display it on screen.

Parameters

dialogMode
ignoreFieldMode

Whether the field should ignore state configured with setDatePickerMode() or through attr.datePickerModes attribute in the XML. If true, the dialog will show DatePicker with dialogMode mode.

-
abstract fun onDismiss()

Called when the DatePicker Dialog was dismissed.

+
abstract fun onDismiss()

Called when the DatePicker Dialog was dismissed.

@@ -97,7 +97,7 @@

Functions

-
abstract fun onShow()

Called when the DatePicker Dialog was shown.

+
abstract fun onShow()

Called when the DatePicker Dialog was shown.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-visibility-change-listener/on-dismiss.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-visibility-change-listener/on-dismiss.html index 68383fdd9..5635d25ab 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-visibility-change-listener/on-dismiss.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget.core/-visibility-change-listener/on-dismiss.html @@ -66,7 +66,7 @@

onDismiss

-
abstract fun onDismiss()

Called when the DatePicker Dialog was dismissed.

+
abstract fun onDismiss()

Called when the DatePicker Dialog was dismissed.

-
abstract fun onShow()

Called when the DatePicker Dialog was shown.

+
abstract fun onShow()

Called when the DatePicker Dialog was shown.

-

It return current state of the field.

Return

current state.

+

It return current state of the field.

Return

current state.

- +
@@ -131,7 +131,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -146,7 +146,7 @@

Functions

- +
@@ -176,7 +176,7 @@

Functions

- +
@@ -191,7 +191,7 @@

Functions

-

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

+

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

@@ -206,7 +206,7 @@

Functions

- +
@@ -221,7 +221,7 @@

Functions

- +
@@ -236,7 +236,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -266,7 +266,7 @@

Functions

- +
@@ -281,7 +281,7 @@

Functions

- +
@@ -296,7 +296,7 @@

Functions

- +
@@ -326,7 +326,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -341,7 +341,7 @@

Functions

- +
@@ -356,7 +356,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -371,7 +371,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -386,7 +386,7 @@

Functions

- +
@@ -401,7 +401,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -416,7 +416,7 @@

Functions

- +
@@ -431,7 +431,7 @@

Functions

- +
@@ -446,7 +446,7 @@

Functions

- +
@@ -461,7 +461,7 @@

Functions

- +
@@ -476,7 +476,7 @@

Functions

-

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

+

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

@@ -491,7 +491,7 @@

Functions

- +
@@ -506,7 +506,7 @@

Functions

- +
@@ -551,7 +551,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -581,7 +581,7 @@

Functions

- +
@@ -611,7 +611,7 @@

Functions

- +
@@ -626,7 +626,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -641,7 +641,7 @@

Functions

- +
@@ -656,7 +656,7 @@

Functions

- +
@@ -671,7 +671,7 @@

Functions

- +
@@ -686,7 +686,7 @@

Functions

- +
@@ -746,7 +746,7 @@

Functions

- +
@@ -821,7 +821,7 @@

Functions

- +
@@ -881,7 +881,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -896,7 +896,7 @@

Functions

- +
@@ -911,7 +911,7 @@

Functions

- +
@@ -926,7 +926,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -941,7 +941,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -971,7 +971,7 @@

Functions

- +
@@ -1016,7 +1016,7 @@

Functions

- +
@@ -1181,7 +1181,7 @@

Functions

- +
@@ -1241,7 +1241,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1256,7 +1256,7 @@

Functions

- +
@@ -1271,7 +1271,7 @@

Functions

-
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

+
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

@@ -1286,7 +1286,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1316,7 +1316,7 @@

Functions

- +
@@ -1346,7 +1346,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1361,7 +1361,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1376,7 +1376,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1406,7 +1406,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1421,7 +1421,7 @@

Functions

- +
@@ -1436,7 +1436,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1466,7 +1466,7 @@

Functions

- +
@@ -1511,7 +1511,7 @@

Functions

- +
@@ -1526,7 +1526,7 @@

Functions

- +
@@ -1541,7 +1541,7 @@

Functions

- +
@@ -1556,7 +1556,7 @@

Functions

- +
@@ -1571,7 +1571,7 @@

Functions

- +
@@ -1586,7 +1586,7 @@

Functions

- +
@@ -1601,7 +1601,7 @@

Functions

- +
@@ -1616,7 +1616,7 @@

Functions

- +
@@ -1631,7 +1631,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1646,7 +1646,7 @@

Functions

- +
@@ -1661,7 +1661,7 @@

Functions

- +
@@ -1676,7 +1676,7 @@

Functions

- +
@@ -1691,7 +1691,7 @@

Functions

- +
@@ -1706,7 +1706,7 @@

Functions

- +
@@ -1721,7 +1721,7 @@

Functions

- +
@@ -1736,7 +1736,7 @@

Functions

- +
@@ -1751,7 +1751,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1766,7 +1766,7 @@

Functions

- +
@@ -1796,7 +1796,7 @@

Functions

- +
@@ -1811,7 +1811,7 @@

Functions

- +
@@ -1826,7 +1826,7 @@

Functions

- +
@@ -1841,7 +1841,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1856,7 +1856,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1871,7 +1871,7 @@

Functions

- +
@@ -1886,7 +1886,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1901,7 +1901,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1916,7 +1916,7 @@

Functions

- +
@@ -1946,7 +1946,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -1961,7 +1961,7 @@

Functions

- +
@@ -1976,7 +1976,7 @@

Functions

- +
@@ -1991,7 +1991,7 @@

Functions

- +
@@ -2006,7 +2006,7 @@

Functions

- +
@@ -2021,7 +2021,7 @@

Functions

- +
@@ -2036,7 +2036,7 @@

Functions

- +
@@ -2051,7 +2051,7 @@

Functions

- +
@@ -2066,7 +2066,7 @@

Functions

- +
@@ -2081,7 +2081,7 @@

Functions

- +
@@ -2096,7 +2096,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2111,7 +2111,7 @@

Functions

- +
@@ -2126,7 +2126,7 @@

Functions

- +
@@ -2141,7 +2141,7 @@

Functions

- +
@@ -2156,7 +2156,7 @@

Functions

- +
@@ -2171,7 +2171,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2186,7 +2186,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2201,7 +2201,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2216,7 +2216,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2231,7 +2231,7 @@

Functions

-
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

+
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

@@ -2246,7 +2246,7 @@

Functions

-

Gets the current field type of the InputFieldView.

+

Gets the current field type of the InputFieldView.

@@ -2261,7 +2261,7 @@

Functions

- +
@@ -2276,7 +2276,7 @@

Functions

- +
@@ -2291,7 +2291,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2306,7 +2306,7 @@

Functions

- +
@@ -2321,7 +2321,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2336,7 +2336,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2351,7 +2351,7 @@

Functions

- +
@@ -2366,7 +2366,7 @@

Functions

- +
@@ -2381,7 +2381,7 @@

Functions

- +
@@ -2396,7 +2396,7 @@

Functions

- +
@@ -2411,7 +2411,7 @@

Functions

- +
@@ -2426,7 +2426,7 @@

Functions

- +
@@ -2441,7 +2441,7 @@

Functions

-
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

+
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

@@ -2456,7 +2456,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2471,7 +2471,7 @@

Functions

- +
@@ -2486,7 +2486,7 @@

Functions

- +
@@ -2501,7 +2501,7 @@

Functions

- +
@@ -2516,7 +2516,7 @@

Functions

- +
@@ -2531,7 +2531,7 @@

Functions

- +
@@ -2546,7 +2546,7 @@

Functions

- +
@@ -2561,7 +2561,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2576,7 +2576,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2591,7 +2591,7 @@

Functions

- +
@@ -2606,7 +2606,7 @@

Functions

- +
@@ -2621,7 +2621,7 @@

Functions

- +
@@ -2636,7 +2636,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2651,7 +2651,7 @@

Functions

-

Get the type of the Input Method Editor (IME).

+

Get the type of the Input Method Editor (IME).

@@ -2666,7 +2666,7 @@

Functions

- +
@@ -2681,7 +2681,7 @@

Functions

- +
@@ -2696,7 +2696,7 @@

Functions

- +
@@ -2711,7 +2711,7 @@

Functions

-
open fun getInputType(): Int

Get the type of the editable content.

+
open fun getInputType(): Int

Get the type of the editable content.

@@ -2726,7 +2726,7 @@

Functions

- +
@@ -2741,7 +2741,7 @@

Functions

- +
@@ -2756,7 +2756,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2771,7 +2771,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2786,7 +2786,7 @@

Functions

- +
@@ -2801,7 +2801,7 @@

Functions

- +
@@ -2816,7 +2816,7 @@

Functions

- +
@@ -2831,7 +2831,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2846,7 +2846,7 @@

Functions

- +
@@ -2861,7 +2861,7 @@

Functions

- +
@@ -2876,7 +2876,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2891,7 +2891,7 @@

Functions

- +
@@ -2906,7 +2906,7 @@

Functions

- +
@@ -2921,7 +2921,7 @@

Functions

- +
@@ -2936,7 +2936,7 @@

Functions

- +
@@ -2951,7 +2951,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -2966,7 +2966,7 @@

Functions

- +
@@ -2981,7 +2981,7 @@

Functions

- +
@@ -2996,7 +2996,7 @@

Functions

- +
@@ -3011,7 +3011,7 @@

Functions

- +
@@ -3026,7 +3026,7 @@

Functions

- +
@@ -3041,7 +3041,7 @@

Functions

- +
@@ -3056,7 +3056,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3071,7 +3071,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3086,7 +3086,7 @@

Functions

- +
@@ -3101,7 +3101,7 @@

Functions

- +
@@ -3116,7 +3116,7 @@

Functions

- +
@@ -3131,7 +3131,7 @@

Functions

- +
@@ -3146,7 +3146,7 @@

Functions

- +
@@ -3161,7 +3161,7 @@

Functions

- +
@@ -3176,7 +3176,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3191,7 +3191,7 @@

Functions

- +
@@ -3206,7 +3206,7 @@

Functions

- +
@@ -3221,7 +3221,7 @@

Functions

- +
@@ -3236,7 +3236,7 @@

Functions

- +
@@ -3266,7 +3266,7 @@

Functions

- +
@@ -3371,7 +3371,7 @@

Functions

- +
@@ -3386,7 +3386,7 @@

Functions

- +
@@ -3401,7 +3401,7 @@

Functions

- +
@@ -3416,7 +3416,7 @@

Functions

- +
@@ -3431,7 +3431,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3446,7 +3446,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3461,7 +3461,7 @@

Functions

- +
@@ -3476,7 +3476,7 @@

Functions

- +
@@ -3491,7 +3491,7 @@

Functions

- +
@@ -3506,7 +3506,7 @@

Functions

- +
@@ -3521,7 +3521,7 @@

Functions

- +
@@ -3536,7 +3536,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3551,7 +3551,7 @@

Functions

- +
@@ -3566,7 +3566,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3581,7 +3581,7 @@

Functions

- +
@@ -3596,7 +3596,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3611,7 +3611,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3626,7 +3626,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3641,7 +3641,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3656,7 +3656,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3671,7 +3671,7 @@

Functions

- +
@@ -3686,7 +3686,7 @@

Functions

- +
@@ -3701,7 +3701,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3716,7 +3716,7 @@

Functions

- +
@@ -3731,7 +3731,7 @@

Functions

- +
@@ -3746,7 +3746,7 @@

Functions

- +
@@ -3761,7 +3761,7 @@

Functions

- +
@@ -3776,7 +3776,7 @@

Functions

- +
@@ -3791,7 +3791,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3806,7 +3806,7 @@

Functions

- +
@@ -3821,7 +3821,7 @@

Functions

-

It return current state of the field.

+

It return current state of the field.

@@ -3836,7 +3836,7 @@

Functions

- +
@@ -3851,7 +3851,7 @@

Functions

- +
@@ -3866,7 +3866,7 @@

Functions

- +
@@ -3881,7 +3881,7 @@

Functions

- +
@@ -3896,7 +3896,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -3911,7 +3911,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -3926,7 +3926,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -3941,7 +3941,7 @@

Functions

- +
@@ -3956,7 +3956,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -3971,7 +3971,7 @@

Functions

- +
@@ -3986,7 +3986,7 @@

Functions

- +
@@ -4001,7 +4001,7 @@

Functions

- +
@@ -4016,7 +4016,7 @@

Functions

- +
@@ -4031,7 +4031,7 @@

Functions

- +
@@ -4046,7 +4046,7 @@

Functions

- +
@@ -4061,7 +4061,7 @@

Functions

- +
@@ -4076,7 +4076,7 @@

Functions

- +
@@ -4091,7 +4091,7 @@

Functions

-
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

+
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

@@ -4106,7 +4106,7 @@

Functions

- +
@@ -4121,7 +4121,7 @@

Functions

- +
@@ -4136,7 +4136,7 @@

Functions

- +
@@ -4151,7 +4151,7 @@

Functions

- +
@@ -4166,7 +4166,7 @@

Functions

- +
@@ -4181,7 +4181,7 @@

Functions

- +
@@ -4196,7 +4196,7 @@

Functions

- +
@@ -4211,7 +4211,7 @@

Functions

- +
@@ -4226,7 +4226,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4241,7 +4241,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4256,7 +4256,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4271,7 +4271,7 @@

Functions

- +
@@ -4286,7 +4286,7 @@

Functions

- +
@@ -4301,7 +4301,7 @@

Functions

- +
@@ -4316,7 +4316,7 @@

Functions

- +
@@ -4331,7 +4331,7 @@

Functions

- +
@@ -4346,7 +4346,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4361,7 +4361,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4376,7 +4376,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4391,7 +4391,7 @@

Functions

- +
@@ -4421,7 +4421,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4436,7 +4436,7 @@

Functions

- +
@@ -4451,7 +4451,7 @@

Functions

- +
@@ -4466,7 +4466,7 @@

Functions

- +
@@ -4481,7 +4481,7 @@

Functions

- +
@@ -4496,7 +4496,7 @@

Functions

- +
@@ -4526,7 +4526,7 @@

Functions

- +
@@ -4541,7 +4541,7 @@

Functions

-

Request to hide the soft input window from the context of the window that is currently accepting input.

+

Request to hide the soft input window from the context of the window that is currently accepting input.

@@ -4556,7 +4556,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4571,7 +4571,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4631,7 +4631,7 @@

Functions

- +
@@ -4646,7 +4646,7 @@

Functions

- +
@@ -4661,7 +4661,7 @@

Functions

- +
@@ -4676,7 +4676,7 @@

Functions

- +
@@ -4691,7 +4691,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4706,7 +4706,7 @@

Functions

- +
@@ -4721,7 +4721,7 @@

Functions

- +
@@ -4736,7 +4736,7 @@

Functions

- +
@@ -4751,7 +4751,7 @@

Functions

- +
@@ -4766,7 +4766,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4781,7 +4781,7 @@

Functions

-

Returns true if view content same, false otherwise.

+

Returns true if view content same, false otherwise.

@@ -4796,7 +4796,7 @@

Functions

- +
@@ -4811,7 +4811,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4826,7 +4826,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4841,7 +4841,7 @@

Functions

- +
@@ -4856,7 +4856,7 @@

Functions

- +
@@ -4871,7 +4871,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4886,7 +4886,7 @@

Functions

- +
@@ -4901,7 +4901,7 @@

Functions

- +
@@ -4931,7 +4931,7 @@

Functions

- +
@@ -4946,7 +4946,7 @@

Functions

- +
@@ -4961,7 +4961,7 @@

Functions

- +
@@ -4976,7 +4976,7 @@

Functions

- +
@@ -4991,7 +4991,7 @@

Functions

- +
@@ -5006,7 +5006,7 @@

Functions

- +
@@ -5021,7 +5021,7 @@

Functions

- +
@@ -5036,7 +5036,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -5051,7 +5051,7 @@

Functions

- +
@@ -5066,7 +5066,7 @@

Functions

- +
@@ -5081,7 +5081,7 @@

Functions

- +
@@ -5096,7 +5096,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5111,7 +5111,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5126,7 +5126,7 @@

Functions

- +
@@ -5141,7 +5141,7 @@

Functions

- +
@@ -5156,7 +5156,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5171,7 +5171,7 @@

Functions

- +
@@ -5186,7 +5186,7 @@

Functions

- +
@@ -5201,7 +5201,7 @@

Functions

- +
@@ -5216,7 +5216,7 @@

Functions

- +
@@ -5231,7 +5231,7 @@

Functions

- +
@@ -5246,7 +5246,7 @@

Functions

- +
@@ -5261,7 +5261,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5276,7 +5276,7 @@

Functions

- +
@@ -5291,7 +5291,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5306,7 +5306,7 @@

Functions

- +
@@ -5321,7 +5321,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5336,7 +5336,7 @@

Functions

-
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

+
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

@@ -5351,7 +5351,7 @@

Functions

- +
@@ -5366,7 +5366,7 @@

Functions

- +
@@ -5381,7 +5381,7 @@

Functions

- +
@@ -5396,7 +5396,7 @@

Functions

- +
@@ -5411,7 +5411,7 @@

Functions

- +
@@ -5426,7 +5426,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5441,7 +5441,7 @@

Functions

- +
@@ -5456,7 +5456,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5471,7 +5471,7 @@

Functions

- +
@@ -5486,7 +5486,7 @@

Functions

- +
@@ -5501,7 +5501,7 @@

Functions

- +
@@ -5516,7 +5516,7 @@

Functions

- +
@@ -5531,7 +5531,7 @@

Functions

- +
@@ -5546,7 +5546,7 @@

Functions

-

Returns the validation status for this view.

+

Returns the validation status for this view.

@@ -5561,7 +5561,7 @@

Functions

- +
@@ -5576,7 +5576,7 @@

Functions

- +
@@ -5591,7 +5591,7 @@

Functions

- +
@@ -5621,7 +5621,7 @@

Functions

- +
@@ -5651,7 +5651,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5681,7 +5681,7 @@

Functions

- +
@@ -5696,7 +5696,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5711,7 +5711,7 @@

Functions

- +
@@ -5726,7 +5726,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5741,7 +5741,7 @@

Functions

- +
@@ -5771,7 +5771,7 @@

Functions

- +
@@ -5786,7 +5786,7 @@

Functions

- +
@@ -5801,7 +5801,7 @@

Functions

- +
@@ -5816,7 +5816,7 @@

Functions

- +
@@ -5831,7 +5831,7 @@

Functions

- +
@@ -5846,7 +5846,7 @@

Functions

- +
@@ -5876,7 +5876,7 @@

Functions

- +
@@ -5891,7 +5891,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -5906,7 +5906,7 @@

Functions

- +
@@ -5921,7 +5921,7 @@

Functions

- +
@@ -5936,7 +5936,7 @@

Functions

- +
@@ -5951,7 +5951,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -5966,7 +5966,7 @@

Functions

- +
@@ -5981,7 +5981,7 @@

Functions

- +
@@ -5996,7 +5996,7 @@

Functions

- +
@@ -6011,7 +6011,7 @@

Functions

- +
@@ -6026,7 +6026,7 @@

Functions

- +
@@ -6086,7 +6086,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -6101,7 +6101,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6221,7 +6221,7 @@

Functions

- +
@@ -6236,7 +6236,7 @@

Functions

- +
@@ -6251,7 +6251,7 @@

Functions

- +
@@ -6266,7 +6266,7 @@

Functions

- +
@@ -6281,7 +6281,7 @@

Functions

- +
@@ -6296,7 +6296,7 @@

Functions

- +
@@ -6311,7 +6311,7 @@

Functions

- +
@@ -6326,7 +6326,7 @@

Functions

- +
@@ -6341,7 +6341,7 @@

Functions

- +
@@ -6371,7 +6371,7 @@

Functions

- +
@@ -6386,7 +6386,7 @@

Functions

- +
@@ -6401,7 +6401,7 @@

Functions

- +
@@ -6431,7 +6431,7 @@

Functions

- +
@@ -6461,7 +6461,7 @@

Functions

- +
@@ -6476,7 +6476,7 @@

Functions

- +
@@ -6491,7 +6491,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6506,7 +6506,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6521,7 +6521,7 @@

Functions

- +
@@ -6536,7 +6536,7 @@

Functions

- +
@@ -6551,7 +6551,7 @@

Functions

- +
@@ -6566,7 +6566,7 @@

Functions

- +
@@ -6581,7 +6581,7 @@

Functions

- +
@@ -6596,7 +6596,7 @@

Functions

- +
@@ -6626,7 +6626,7 @@

Functions

- +
@@ -6641,7 +6641,7 @@

Functions

- +
@@ -6656,7 +6656,7 @@

Functions

- +
@@ -6671,7 +6671,7 @@

Functions

- +
@@ -6686,7 +6686,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6701,7 +6701,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6716,7 +6716,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6731,7 +6731,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6746,7 +6746,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6761,7 +6761,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6776,7 +6776,7 @@

Functions

- +
@@ -6791,7 +6791,7 @@

Functions

- +
@@ -6821,7 +6821,7 @@

Functions

- +
@@ -6836,7 +6836,7 @@

Functions

- +
@@ -6851,7 +6851,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6866,7 +6866,7 @@

Functions

- +
@@ -6881,7 +6881,7 @@

Functions

- +
@@ -6896,7 +6896,7 @@

Functions

- +
@@ -6911,7 +6911,7 @@

Functions

- +
@@ -6926,7 +6926,7 @@

Functions

- +
@@ -6941,7 +6941,7 @@

Functions

-

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

+

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

@@ -6971,7 +6971,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -6986,7 +6986,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -7001,7 +7001,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -7016,7 +7016,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -7031,7 +7031,7 @@

Functions

- +
@@ -7091,7 +7091,7 @@

Functions

- +
@@ -7106,7 +7106,7 @@

Functions

-

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

+

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

@@ -7121,7 +7121,7 @@

Functions

- +
@@ -7136,7 +7136,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7151,7 +7151,7 @@

Functions

- +
@@ -7166,7 +7166,7 @@

Functions

- +
@@ -7211,7 +7211,7 @@

Functions

- +
@@ -7226,7 +7226,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7241,7 +7241,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7271,7 +7271,7 @@

Functions

- +
@@ -7286,7 +7286,7 @@

Functions

- +
@@ -7301,7 +7301,7 @@

Functions

- +
@@ -7331,7 +7331,7 @@

Functions

- +
@@ -7346,7 +7346,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7361,7 +7361,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7406,7 +7406,7 @@

Functions

- +
@@ -7421,7 +7421,7 @@

Functions

- +
@@ -7436,7 +7436,7 @@

Functions

- +
@@ -7451,7 +7451,7 @@

Functions

- +
@@ -7466,7 +7466,7 @@

Functions

- +
@@ -7481,7 +7481,7 @@

Functions

- +
@@ -7496,7 +7496,7 @@

Functions

- +
@@ -7511,7 +7511,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7526,7 +7526,7 @@

Functions

- +
@@ -7541,7 +7541,7 @@

Functions

- +
@@ -7556,7 +7556,7 @@

Functions

- +
@@ -7571,7 +7571,7 @@

Functions

- +
@@ -7586,7 +7586,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7601,7 +7601,7 @@

Functions

- +
@@ -7616,7 +7616,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7631,7 +7631,7 @@

Functions

- +
@@ -7646,7 +7646,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7691,7 +7691,7 @@

Functions

- +
@@ -7736,7 +7736,7 @@

Functions

- +
@@ -7751,7 +7751,7 @@

Functions

- +
@@ -7766,7 +7766,7 @@

Functions

- +
@@ -7781,7 +7781,7 @@

Functions

- +
@@ -7796,7 +7796,7 @@

Functions

- +
@@ -7811,7 +7811,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7826,7 +7826,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7841,7 +7841,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -7856,7 +7856,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -7871,7 +7871,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -7886,7 +7886,7 @@

Functions

- +
@@ -7901,7 +7901,7 @@

Functions

- +
@@ -7916,7 +7916,7 @@

Functions

- +
@@ -7946,7 +7946,7 @@

Functions

- +
@@ -7961,7 +7961,7 @@

Functions

-
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

+
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

@@ -7976,7 +7976,7 @@

Functions

- +
@@ -7991,7 +7991,7 @@

Functions

- +
@@ -8006,7 +8006,7 @@

Functions

- +
@@ -8021,7 +8021,7 @@

Functions

- +
@@ -8036,7 +8036,7 @@

Functions

- +
@@ -8051,7 +8051,7 @@

Functions

- +
@@ -8066,7 +8066,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8081,7 +8081,7 @@

Functions

-
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

+
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

@@ -8111,7 +8111,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8126,7 +8126,7 @@

Functions

-
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -8141,7 +8141,7 @@

Functions

- +
@@ -8156,7 +8156,7 @@

Functions

- +
@@ -8201,7 +8201,7 @@

Functions

- +
@@ -8216,7 +8216,7 @@

Functions

- +
@@ -8231,7 +8231,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8261,7 +8261,7 @@

Functions

- +
@@ -8276,7 +8276,7 @@

Functions

- +
@@ -8291,7 +8291,7 @@

Functions

- +
@@ -8306,7 +8306,7 @@

Functions

-
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

+
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

@@ -8321,7 +8321,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8336,7 +8336,7 @@

Functions

- +
@@ -8351,7 +8351,7 @@

Functions

- +
@@ -8366,7 +8366,7 @@

Functions

- +
@@ -8381,7 +8381,7 @@

Functions

-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8396,7 +8396,7 @@

Functions

-

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

+

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

@@ -8411,7 +8411,7 @@

Functions

- +
@@ -8426,7 +8426,7 @@

Functions

- +
@@ -8441,7 +8441,7 @@

Functions

- +
@@ -8456,7 +8456,7 @@

Functions

- +
@@ -8471,7 +8471,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8486,7 +8486,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8501,7 +8501,7 @@

Functions

-
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

+
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

@@ -8546,7 +8546,7 @@

Functions

- +
@@ -8561,7 +8561,7 @@

Functions

-
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

+
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

@@ -8576,7 +8576,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8591,7 +8591,7 @@

Functions

- +
@@ -8606,7 +8606,7 @@

Functions

-
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

+
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

@@ -8621,7 +8621,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8636,7 +8636,7 @@

Functions

- +
@@ -8651,7 +8651,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8666,7 +8666,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8681,7 +8681,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8696,7 +8696,7 @@

Functions

- +
@@ -8711,7 +8711,7 @@

Functions

- +
@@ -8726,7 +8726,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8741,7 +8741,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8756,7 +8756,7 @@

Functions

- +
@@ -8771,7 +8771,7 @@

Functions

- +
@@ -8786,7 +8786,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8801,7 +8801,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8816,7 +8816,7 @@

Functions

- +
@@ -8831,7 +8831,7 @@

Functions

-
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

+
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

@@ -8846,7 +8846,7 @@

Functions

- +
@@ -8861,7 +8861,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -8876,7 +8876,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -8891,7 +8891,7 @@

Functions

-
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

+
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

@@ -8906,7 +8906,7 @@

Functions

- +
@@ -8921,7 +8921,7 @@

Functions

- +
@@ -8936,7 +8936,7 @@

Functions

- +
@@ -9026,7 +9026,7 @@

Functions

- +
@@ -9041,7 +9041,7 @@

Functions

- +
@@ -9056,7 +9056,7 @@

Functions

- +
@@ -9071,7 +9071,7 @@

Functions

- +
@@ -9086,7 +9086,7 @@

Functions

- +
@@ -9101,7 +9101,7 @@

Functions

- +
@@ -9116,7 +9116,7 @@

Functions

-

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

+

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

@@ -9131,7 +9131,7 @@

Functions

-

This method adds a listener whose methods are called whenever VGS secure field state changes.

+

This method adds a listener whose methods are called whenever VGS secure field state changes.

@@ -9161,7 +9161,7 @@

Functions

- +
@@ -9176,7 +9176,7 @@

Functions

- +
@@ -9191,7 +9191,7 @@

Functions

- +
@@ -9221,7 +9221,7 @@

Functions

- +
@@ -9236,7 +9236,7 @@

Functions

- +
@@ -9251,7 +9251,7 @@

Functions

- +
@@ -9266,7 +9266,7 @@

Functions

- +
@@ -9281,7 +9281,7 @@

Functions

- +
@@ -9296,7 +9296,7 @@

Functions

- +
@@ -9311,7 +9311,7 @@

Functions

- +
@@ -9326,7 +9326,7 @@

Functions

- +
@@ -9341,7 +9341,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9371,7 +9371,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9386,7 +9386,7 @@

Functions

- +
@@ -9401,7 +9401,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9416,7 +9416,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9431,7 +9431,7 @@

Functions

- +
@@ -9446,7 +9446,7 @@

Functions

- +
@@ -9461,7 +9461,7 @@

Functions

- +
@@ -9476,7 +9476,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9491,7 +9491,7 @@

Functions

-

Sets the custom icons for cvc.

+

Sets the custom icons for cvc.

@@ -9506,7 +9506,7 @@

Functions

- +
@@ -9521,7 +9521,7 @@

Functions

- +
@@ -9536,7 +9536,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9551,7 +9551,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9566,7 +9566,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9581,7 +9581,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9596,7 +9596,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9611,7 +9611,7 @@

Functions

- +
@@ -9626,7 +9626,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9641,7 +9641,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9656,7 +9656,7 @@

Functions

- +
@@ -9671,7 +9671,7 @@

Functions

- +
@@ -9686,7 +9686,7 @@

Functions

- +
@@ -9701,7 +9701,7 @@

Functions

- +
@@ -9716,7 +9716,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9731,7 +9731,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9746,7 +9746,7 @@

Functions

- +
@@ -9761,7 +9761,7 @@

Functions

- +
@@ -9776,7 +9776,7 @@

Functions

- +
@@ -9791,7 +9791,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -9806,7 +9806,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -9821,7 +9821,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -9836,7 +9836,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -9851,7 +9851,7 @@

Functions

-
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

+
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

@@ -9866,7 +9866,7 @@

Functions

-
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

+
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

@@ -9881,7 +9881,7 @@

Functions

- +
@@ -9896,7 +9896,7 @@

Functions

- +
@@ -9911,7 +9911,7 @@

Functions

- +
@@ -9926,7 +9926,7 @@

Functions

- +
@@ -9941,7 +9941,7 @@

Functions

- +
@@ -9956,7 +9956,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -9971,7 +9971,7 @@

Functions

-
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

+
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

@@ -9986,7 +9986,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10001,7 +10001,7 @@

Functions

-
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

+
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

@@ -10016,7 +10016,7 @@

Functions

-
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

+
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

@@ -10031,7 +10031,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10046,7 +10046,7 @@

Functions

-
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

+
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

@@ -10061,7 +10061,7 @@

Functions

- +
@@ -10076,7 +10076,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10091,7 +10091,7 @@

Functions

- +
@@ -10106,7 +10106,7 @@

Functions

- +
@@ -10121,7 +10121,7 @@

Functions

- +
@@ -10136,7 +10136,7 @@

Functions

- +
@@ -10151,7 +10151,7 @@

Functions

- +
@@ -10166,7 +10166,7 @@

Functions

- +
@@ -10181,7 +10181,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10196,7 +10196,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10211,7 +10211,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10226,7 +10226,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

@@ -10241,7 +10241,7 @@

Functions

-

Sets the vault alias format in which data stores on a backend.

+

Sets the vault alias format in which data stores on a backend.

@@ -10256,7 +10256,7 @@

Functions

- +
@@ -10271,7 +10271,7 @@

Functions

- +
@@ -10286,7 +10286,7 @@

Functions

- +
@@ -10301,7 +10301,7 @@

Functions

- +
@@ -10316,7 +10316,7 @@

Functions

- +
@@ -10331,7 +10331,7 @@

Functions

- +
@@ -10346,7 +10346,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10361,7 +10361,7 @@

Functions

- +
@@ -10376,7 +10376,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10406,7 +10406,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10421,7 +10421,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10436,7 +10436,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10466,7 +10466,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10496,7 +10496,7 @@

Functions

-

Explicitly request that the current input method's soft input area be shown to the user, if needed.

+

Explicitly request that the current input method's soft input area be shown to the user, if needed.

@@ -10511,7 +10511,7 @@

Functions

- +
@@ -10541,7 +10541,7 @@

Functions

- +
@@ -10556,7 +10556,7 @@

Functions

- +
@@ -10571,7 +10571,7 @@

Functions

- +
@@ -10586,7 +10586,7 @@

Functions

- +
@@ -10601,7 +10601,7 @@

Functions

- +
@@ -10616,7 +10616,7 @@

Functions

- +
@@ -10631,7 +10631,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10646,7 +10646,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10676,7 +10676,7 @@

Functions

- +
@@ -10691,7 +10691,7 @@

Functions

- +
@@ -10706,7 +10706,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10721,7 +10721,7 @@

Functions

- +
@@ -10751,7 +10751,7 @@

Functions

- +
@@ -10766,7 +10766,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-card-verification-code-edit-text/set-preview-icon-adapter.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-card-verification-code-edit-text/set-preview-icon-adapter.html index 378ba2630..f115789ab 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-card-verification-code-edit-text/set-preview-icon-adapter.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-card-verification-code-edit-text/set-preview-icon-adapter.html @@ -66,7 +66,7 @@

setPreviewIconAdapter

-

Sets the custom icons for cvc.

Parameters

adapter

The adapter is responsible for maintaining the icons backing this view and for producing a drawable for preview.

+

Sets the custom icons for cvc.

Parameters

adapter

The adapter is responsible for maintaining the icons backing this view and for producing a drawable for preview.

-

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

+

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

-
abstract fun onDismiss()

Called when the DatePicker Dialog was dismissed.

+
abstract fun onDismiss()

Called when the DatePicker Dialog was dismissed.

@@ -97,7 +97,7 @@

Functions

-
abstract fun onShow()

Called when the DatePicker Dialog was shown.

+
abstract fun onShow()

Called when the DatePicker Dialog was shown.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-expiration-date-edit-text/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-expiration-date-edit-text/index.html index 8f3a7eb34..faf32682d 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-expiration-date-edit-text/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-expiration-date-edit-text/index.html @@ -120,7 +120,7 @@

Functions

- +
@@ -150,7 +150,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -165,7 +165,7 @@

Functions

- +
@@ -195,7 +195,7 @@

Functions

- +
@@ -210,7 +210,7 @@

Functions

-

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

+

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

@@ -225,7 +225,7 @@

Functions

- +
@@ -240,7 +240,7 @@

Functions

- +
@@ -255,7 +255,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -285,7 +285,7 @@

Functions

- +
@@ -300,7 +300,7 @@

Functions

- +
@@ -315,7 +315,7 @@

Functions

- +
@@ -345,7 +345,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -360,7 +360,7 @@

Functions

- +
@@ -375,7 +375,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -390,7 +390,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -405,7 +405,7 @@

Functions

- +
@@ -420,7 +420,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -435,7 +435,7 @@

Functions

- +
@@ -450,7 +450,7 @@

Functions

- +
@@ -465,7 +465,7 @@

Functions

- +
@@ -480,7 +480,7 @@

Functions

- +
@@ -495,7 +495,7 @@

Functions

-

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

+

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

@@ -510,7 +510,7 @@

Functions

- +
@@ -525,7 +525,7 @@

Functions

- +
@@ -570,7 +570,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -600,7 +600,7 @@

Functions

- +
@@ -630,7 +630,7 @@

Functions

- +
@@ -645,7 +645,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -660,7 +660,7 @@

Functions

- +
@@ -675,7 +675,7 @@

Functions

- +
@@ -690,7 +690,7 @@

Functions

- +
@@ -705,7 +705,7 @@

Functions

- +
@@ -765,7 +765,7 @@

Functions

- +
@@ -840,7 +840,7 @@

Functions

- +
@@ -900,7 +900,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -915,7 +915,7 @@

Functions

- +
@@ -930,7 +930,7 @@

Functions

- +
@@ -945,7 +945,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -960,7 +960,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -990,7 +990,7 @@

Functions

- +
@@ -1035,7 +1035,7 @@

Functions

- +
@@ -1200,7 +1200,7 @@

Functions

- +
@@ -1260,7 +1260,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1275,7 +1275,7 @@

Functions

- +
@@ -1290,7 +1290,7 @@

Functions

-
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

+
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

@@ -1305,7 +1305,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1335,7 +1335,7 @@

Functions

- +
@@ -1365,7 +1365,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1380,7 +1380,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1395,7 +1395,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1425,7 +1425,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1440,7 +1440,7 @@

Functions

- +
@@ -1455,7 +1455,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1485,7 +1485,7 @@

Functions

- +
@@ -1530,7 +1530,7 @@

Functions

- +
@@ -1545,7 +1545,7 @@

Functions

- +
@@ -1560,7 +1560,7 @@

Functions

- +
@@ -1575,7 +1575,7 @@

Functions

- +
@@ -1590,7 +1590,7 @@

Functions

- +
@@ -1605,7 +1605,7 @@

Functions

- +
@@ -1620,7 +1620,7 @@

Functions

- +
@@ -1635,7 +1635,7 @@

Functions

- +
@@ -1650,7 +1650,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1665,7 +1665,7 @@

Functions

- +
@@ -1680,7 +1680,7 @@

Functions

- +
@@ -1695,7 +1695,7 @@

Functions

- +
@@ -1710,7 +1710,7 @@

Functions

- +
@@ -1725,7 +1725,7 @@

Functions

- +
@@ -1740,7 +1740,7 @@

Functions

- +
@@ -1755,7 +1755,7 @@

Functions

- +
@@ -1770,7 +1770,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1785,7 +1785,7 @@

Functions

- +
@@ -1815,7 +1815,7 @@

Functions

- +
@@ -1830,7 +1830,7 @@

Functions

- +
@@ -1845,7 +1845,7 @@

Functions

- +
@@ -1860,7 +1860,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1875,7 +1875,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1890,7 +1890,7 @@

Functions

- +
@@ -1905,7 +1905,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1920,7 +1920,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1935,7 +1935,7 @@

Functions

- +
@@ -1965,7 +1965,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -1980,7 +1980,7 @@

Functions

- +
@@ -1995,7 +1995,7 @@

Functions

- +
@@ -2010,7 +2010,7 @@

Functions

- +
@@ -2025,7 +2025,7 @@

Functions

- +
@@ -2040,7 +2040,7 @@

Functions

- +
@@ -2055,7 +2055,7 @@

Functions

- +
@@ -2070,7 +2070,7 @@

Functions

- +
@@ -2085,7 +2085,7 @@

Functions

-

Return type of exact appearance and interaction model of this widget.

+

Return type of exact appearance and interaction model of this widget.

@@ -2100,7 +2100,7 @@

Functions

-

Return regex date representation format.

+

Return regex date representation format.

@@ -2115,7 +2115,7 @@

Functions

- +
@@ -2130,7 +2130,7 @@

Functions

- +
@@ -2145,7 +2145,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2160,7 +2160,7 @@

Functions

- +
@@ -2175,7 +2175,7 @@

Functions

- +
@@ -2190,7 +2190,7 @@

Functions

- +
@@ -2205,7 +2205,7 @@

Functions

- +
@@ -2220,7 +2220,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2235,7 +2235,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2250,7 +2250,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2265,7 +2265,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2280,7 +2280,7 @@

Functions

-
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

+
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

@@ -2295,7 +2295,7 @@

Functions

-

Gets the current field type of the InputFieldView.

+

Gets the current field type of the InputFieldView.

@@ -2310,7 +2310,7 @@

Functions

- +
@@ -2325,7 +2325,7 @@

Functions

- +
@@ -2340,7 +2340,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2355,7 +2355,7 @@

Functions

- +
@@ -2370,7 +2370,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2385,7 +2385,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2400,7 +2400,7 @@

Functions

- +
@@ -2415,7 +2415,7 @@

Functions

- +
@@ -2430,7 +2430,7 @@

Functions

- +
@@ -2445,7 +2445,7 @@

Functions

- +
@@ -2460,7 +2460,7 @@

Functions

- +
@@ -2475,7 +2475,7 @@

Functions

- +
@@ -2490,7 +2490,7 @@

Functions

-
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

+
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

@@ -2505,7 +2505,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2520,7 +2520,7 @@

Functions

- +
@@ -2535,7 +2535,7 @@

Functions

- +
@@ -2550,7 +2550,7 @@

Functions

- +
@@ -2565,7 +2565,7 @@

Functions

- +
@@ -2580,7 +2580,7 @@

Functions

- +
@@ -2595,7 +2595,7 @@

Functions

- +
@@ -2610,7 +2610,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2625,7 +2625,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2640,7 +2640,7 @@

Functions

- +
@@ -2655,7 +2655,7 @@

Functions

- +
@@ -2670,7 +2670,7 @@

Functions

- +
@@ -2685,7 +2685,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2700,7 +2700,7 @@

Functions

-

Get the type of the Input Method Editor (IME).

+

Get the type of the Input Method Editor (IME).

@@ -2715,7 +2715,7 @@

Functions

- +
@@ -2730,7 +2730,7 @@

Functions

- +
@@ -2745,7 +2745,7 @@

Functions

- +
@@ -2760,7 +2760,7 @@

Functions

-
open fun getInputType(): Int

Get the type of the editable content.

+
open fun getInputType(): Int

Get the type of the editable content.

@@ -2775,7 +2775,7 @@

Functions

- +
@@ -2790,7 +2790,7 @@

Functions

- +
@@ -2805,7 +2805,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2820,7 +2820,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2835,7 +2835,7 @@

Functions

- +
@@ -2850,7 +2850,7 @@

Functions

- +
@@ -2865,7 +2865,7 @@

Functions

- +
@@ -2880,7 +2880,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2895,7 +2895,7 @@

Functions

- +
@@ -2910,7 +2910,7 @@

Functions

- +
@@ -2925,7 +2925,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2940,7 +2940,7 @@

Functions

- +
@@ -2955,7 +2955,7 @@

Functions

- +
@@ -2970,7 +2970,7 @@

Functions

- +
@@ -2985,7 +2985,7 @@

Functions

- +
@@ -3000,7 +3000,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -3015,7 +3015,7 @@

Functions

- +
@@ -3030,7 +3030,7 @@

Functions

- +
@@ -3045,7 +3045,7 @@

Functions

- +
@@ -3060,7 +3060,7 @@

Functions

- +
@@ -3075,7 +3075,7 @@

Functions

- +
@@ -3090,7 +3090,7 @@

Functions

- +
@@ -3105,7 +3105,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3120,7 +3120,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3135,7 +3135,7 @@

Functions

- +
@@ -3150,7 +3150,7 @@

Functions

- +
@@ -3165,7 +3165,7 @@

Functions

- +
@@ -3180,7 +3180,7 @@

Functions

- +
@@ -3195,7 +3195,7 @@

Functions

- +
@@ -3210,7 +3210,7 @@

Functions

- +
@@ -3225,7 +3225,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3240,7 +3240,7 @@

Functions

- +
@@ -3255,7 +3255,7 @@

Functions

- +
@@ -3270,7 +3270,7 @@

Functions

- +
@@ -3285,7 +3285,7 @@

Functions

- +
@@ -3315,7 +3315,7 @@

Functions

- +
@@ -3420,7 +3420,7 @@

Functions

- +
@@ -3435,7 +3435,7 @@

Functions

- +
@@ -3450,7 +3450,7 @@

Functions

- +
@@ -3465,7 +3465,7 @@

Functions

- +
@@ -3480,7 +3480,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3495,7 +3495,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3510,7 +3510,7 @@

Functions

- +
@@ -3525,7 +3525,7 @@

Functions

- +
@@ -3540,7 +3540,7 @@

Functions

- +
@@ -3555,7 +3555,7 @@

Functions

- +
@@ -3570,7 +3570,7 @@

Functions

- +
@@ -3585,7 +3585,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3600,7 +3600,7 @@

Functions

- +
@@ -3615,7 +3615,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3630,7 +3630,7 @@

Functions

- +
@@ -3645,7 +3645,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3660,7 +3660,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3675,7 +3675,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3690,7 +3690,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3705,7 +3705,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3720,7 +3720,7 @@

Functions

- +
@@ -3735,7 +3735,7 @@

Functions

- +
@@ -3750,7 +3750,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3765,7 +3765,7 @@

Functions

- +
@@ -3780,7 +3780,7 @@

Functions

- +
@@ -3795,7 +3795,7 @@

Functions

- +
@@ -3810,7 +3810,7 @@

Functions

- +
@@ -3825,7 +3825,7 @@

Functions

- +
@@ -3840,7 +3840,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3855,7 +3855,7 @@

Functions

- +
@@ -3870,7 +3870,7 @@

Functions

-

It return current state of the field.

+

It return current state of the field.

@@ -3885,7 +3885,7 @@

Functions

- +
@@ -3900,7 +3900,7 @@

Functions

- +
@@ -3915,7 +3915,7 @@

Functions

- +
@@ -3930,7 +3930,7 @@

Functions

- +
@@ -3945,7 +3945,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -3960,7 +3960,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -3975,7 +3975,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -3990,7 +3990,7 @@

Functions

- +
@@ -4005,7 +4005,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -4020,7 +4020,7 @@

Functions

- +
@@ -4035,7 +4035,7 @@

Functions

- +
@@ -4050,7 +4050,7 @@

Functions

- +
@@ -4065,7 +4065,7 @@

Functions

- +
@@ -4080,7 +4080,7 @@

Functions

- +
@@ -4095,7 +4095,7 @@

Functions

- +
@@ -4110,7 +4110,7 @@

Functions

- +
@@ -4125,7 +4125,7 @@

Functions

- +
@@ -4140,7 +4140,7 @@

Functions

-
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

+
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

@@ -4155,7 +4155,7 @@

Functions

- +
@@ -4170,7 +4170,7 @@

Functions

- +
@@ -4185,7 +4185,7 @@

Functions

- +
@@ -4200,7 +4200,7 @@

Functions

- +
@@ -4215,7 +4215,7 @@

Functions

- +
@@ -4230,7 +4230,7 @@

Functions

- +
@@ -4245,7 +4245,7 @@

Functions

- +
@@ -4260,7 +4260,7 @@

Functions

- +
@@ -4275,7 +4275,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4290,7 +4290,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4305,7 +4305,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4320,7 +4320,7 @@

Functions

- +
@@ -4335,7 +4335,7 @@

Functions

- +
@@ -4350,7 +4350,7 @@

Functions

- +
@@ -4365,7 +4365,7 @@

Functions

- +
@@ -4380,7 +4380,7 @@

Functions

- +
@@ -4395,7 +4395,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4410,7 +4410,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4425,7 +4425,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4440,7 +4440,7 @@

Functions

- +
@@ -4470,7 +4470,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4485,7 +4485,7 @@

Functions

- +
@@ -4500,7 +4500,7 @@

Functions

- +
@@ -4515,7 +4515,7 @@

Functions

- +
@@ -4530,7 +4530,7 @@

Functions

- +
@@ -4545,7 +4545,7 @@

Functions

- +
@@ -4575,7 +4575,7 @@

Functions

- +
@@ -4590,7 +4590,7 @@

Functions

-

Request to hide the soft input window from the context of the window that is currently accepting input.

+

Request to hide the soft input window from the context of the window that is currently accepting input.

@@ -4605,7 +4605,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4620,7 +4620,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4680,7 +4680,7 @@

Functions

- +
@@ -4695,7 +4695,7 @@

Functions

- +
@@ -4710,7 +4710,7 @@

Functions

- +
@@ -4725,7 +4725,7 @@

Functions

- +
@@ -4740,7 +4740,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4755,7 +4755,7 @@

Functions

- +
@@ -4770,7 +4770,7 @@

Functions

- +
@@ -4785,7 +4785,7 @@

Functions

- +
@@ -4800,7 +4800,7 @@

Functions

- +
@@ -4815,7 +4815,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4830,7 +4830,7 @@

Functions

-

Returns true if view content same, false otherwise.

+

Returns true if view content same, false otherwise.

@@ -4845,7 +4845,7 @@

Functions

- +
@@ -4860,7 +4860,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4875,7 +4875,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4890,7 +4890,7 @@

Functions

- +
@@ -4905,7 +4905,7 @@

Functions

- +
@@ -4920,7 +4920,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4935,7 +4935,7 @@

Functions

- +
@@ -4950,7 +4950,7 @@

Functions

- +
@@ -4980,7 +4980,7 @@

Functions

- +
@@ -4995,7 +4995,7 @@

Functions

- +
@@ -5010,7 +5010,7 @@

Functions

- +
@@ -5025,7 +5025,7 @@

Functions

- +
@@ -5040,7 +5040,7 @@

Functions

- +
@@ -5055,7 +5055,7 @@

Functions

- +
@@ -5070,7 +5070,7 @@

Functions

- +
@@ -5085,7 +5085,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -5100,7 +5100,7 @@

Functions

- +
@@ -5115,7 +5115,7 @@

Functions

- +
@@ -5130,7 +5130,7 @@

Functions

- +
@@ -5145,7 +5145,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5160,7 +5160,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5175,7 +5175,7 @@

Functions

- +
@@ -5190,7 +5190,7 @@

Functions

- +
@@ -5205,7 +5205,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5220,7 +5220,7 @@

Functions

- +
@@ -5235,7 +5235,7 @@

Functions

- +
@@ -5250,7 +5250,7 @@

Functions

- +
@@ -5265,7 +5265,7 @@

Functions

- +
@@ -5280,7 +5280,7 @@

Functions

- +
@@ -5295,7 +5295,7 @@

Functions

- +
@@ -5310,7 +5310,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5325,7 +5325,7 @@

Functions

- +
@@ -5340,7 +5340,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5355,7 +5355,7 @@

Functions

- +
@@ -5370,7 +5370,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5385,7 +5385,7 @@

Functions

-
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

+
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

@@ -5400,7 +5400,7 @@

Functions

- +
@@ -5415,7 +5415,7 @@

Functions

- +
@@ -5430,7 +5430,7 @@

Functions

- +
@@ -5445,7 +5445,7 @@

Functions

- +
@@ -5460,7 +5460,7 @@

Functions

- +
@@ -5475,7 +5475,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5490,7 +5490,7 @@

Functions

- +
@@ -5505,7 +5505,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5520,7 +5520,7 @@

Functions

- +
@@ -5535,7 +5535,7 @@

Functions

- +
@@ -5550,7 +5550,7 @@

Functions

- +
@@ -5565,7 +5565,7 @@

Functions

- +
@@ -5580,7 +5580,7 @@

Functions

- +
@@ -5595,7 +5595,7 @@

Functions

-

Returns the validation status for this view.

+

Returns the validation status for this view.

@@ -5610,7 +5610,7 @@

Functions

- +
@@ -5625,7 +5625,7 @@

Functions

- +
@@ -5640,7 +5640,7 @@

Functions

- +
@@ -5670,7 +5670,7 @@

Functions

- +
@@ -5700,7 +5700,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5730,7 +5730,7 @@

Functions

- +
@@ -5745,7 +5745,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5760,7 +5760,7 @@

Functions

- +
@@ -5775,7 +5775,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5790,7 +5790,7 @@

Functions

- +
@@ -5820,7 +5820,7 @@

Functions

- +
@@ -5835,7 +5835,7 @@

Functions

- +
@@ -5850,7 +5850,7 @@

Functions

- +
@@ -5865,7 +5865,7 @@

Functions

- +
@@ -5880,7 +5880,7 @@

Functions

- +
@@ -5895,7 +5895,7 @@

Functions

- +
@@ -5925,7 +5925,7 @@

Functions

- +
@@ -5940,7 +5940,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -5955,7 +5955,7 @@

Functions

- +
@@ -5970,7 +5970,7 @@

Functions

- +
@@ -5985,7 +5985,7 @@

Functions

- +
@@ -6000,7 +6000,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -6015,7 +6015,7 @@

Functions

- +
@@ -6030,7 +6030,7 @@

Functions

- +
@@ -6045,7 +6045,7 @@

Functions

- +
@@ -6060,7 +6060,7 @@

Functions

- +
@@ -6075,7 +6075,7 @@

Functions

- +
@@ -6135,7 +6135,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -6150,7 +6150,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6270,7 +6270,7 @@

Functions

- +
@@ -6285,7 +6285,7 @@

Functions

- +
@@ -6300,7 +6300,7 @@

Functions

- +
@@ -6315,7 +6315,7 @@

Functions

- +
@@ -6330,7 +6330,7 @@

Functions

- +
@@ -6345,7 +6345,7 @@

Functions

- +
@@ -6360,7 +6360,7 @@

Functions

- +
@@ -6375,7 +6375,7 @@

Functions

- +
@@ -6390,7 +6390,7 @@

Functions

- +
@@ -6420,7 +6420,7 @@

Functions

- +
@@ -6435,7 +6435,7 @@

Functions

- +
@@ -6450,7 +6450,7 @@

Functions

- +
@@ -6480,7 +6480,7 @@

Functions

- +
@@ -6510,7 +6510,7 @@

Functions

- +
@@ -6525,7 +6525,7 @@

Functions

- +
@@ -6540,7 +6540,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6555,7 +6555,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6570,7 +6570,7 @@

Functions

- +
@@ -6585,7 +6585,7 @@

Functions

- +
@@ -6600,7 +6600,7 @@

Functions

- +
@@ -6615,7 +6615,7 @@

Functions

- +
@@ -6630,7 +6630,7 @@

Functions

- +
@@ -6645,7 +6645,7 @@

Functions

- +
@@ -6675,7 +6675,7 @@

Functions

- +
@@ -6690,7 +6690,7 @@

Functions

- +
@@ -6705,7 +6705,7 @@

Functions

- +
@@ -6720,7 +6720,7 @@

Functions

- +
@@ -6735,7 +6735,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6750,7 +6750,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6765,7 +6765,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6780,7 +6780,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6795,7 +6795,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6810,7 +6810,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6825,7 +6825,7 @@

Functions

- +
@@ -6840,7 +6840,7 @@

Functions

- +
@@ -6870,7 +6870,7 @@

Functions

- +
@@ -6885,7 +6885,7 @@

Functions

- +
@@ -6900,7 +6900,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6915,7 +6915,7 @@

Functions

- +
@@ -6930,7 +6930,7 @@

Functions

- +
@@ -6945,7 +6945,7 @@

Functions

- +
@@ -6960,7 +6960,7 @@

Functions

- +
@@ -6975,7 +6975,7 @@

Functions

- +
@@ -6990,7 +6990,7 @@

Functions

-

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

+

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

@@ -7020,7 +7020,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -7035,7 +7035,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -7050,7 +7050,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -7065,7 +7065,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -7080,7 +7080,7 @@

Functions

- +
@@ -7140,7 +7140,7 @@

Functions

- +
@@ -7155,7 +7155,7 @@

Functions

-

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

+

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

@@ -7170,7 +7170,7 @@

Functions

- +
@@ -7185,7 +7185,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7200,7 +7200,7 @@

Functions

- +
@@ -7215,7 +7215,7 @@

Functions

- +
@@ -7260,7 +7260,7 @@

Functions

- +
@@ -7275,7 +7275,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7290,7 +7290,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7320,7 +7320,7 @@

Functions

- +
@@ -7335,7 +7335,7 @@

Functions

- +
@@ -7350,7 +7350,7 @@

Functions

- +
@@ -7380,7 +7380,7 @@

Functions

- +
@@ -7395,7 +7395,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7410,7 +7410,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7455,7 +7455,7 @@

Functions

- +
@@ -7470,7 +7470,7 @@

Functions

- +
@@ -7485,7 +7485,7 @@

Functions

- +
@@ -7500,7 +7500,7 @@

Functions

- +
@@ -7515,7 +7515,7 @@

Functions

- +
@@ -7530,7 +7530,7 @@

Functions

- +
@@ -7545,7 +7545,7 @@

Functions

- +
@@ -7560,7 +7560,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7575,7 +7575,7 @@

Functions

- +
@@ -7590,7 +7590,7 @@

Functions

- +
@@ -7605,7 +7605,7 @@

Functions

- +
@@ -7620,7 +7620,7 @@

Functions

- +
@@ -7635,7 +7635,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7650,7 +7650,7 @@

Functions

- +
@@ -7665,7 +7665,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7680,7 +7680,7 @@

Functions

- +
@@ -7695,7 +7695,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7740,7 +7740,7 @@

Functions

- +
@@ -7785,7 +7785,7 @@

Functions

- +
@@ -7800,7 +7800,7 @@

Functions

- +
@@ -7815,7 +7815,7 @@

Functions

- +
@@ -7830,7 +7830,7 @@

Functions

- +
@@ -7845,7 +7845,7 @@

Functions

- +
@@ -7860,7 +7860,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7875,7 +7875,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7890,7 +7890,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -7905,7 +7905,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -7920,7 +7920,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -7935,7 +7935,7 @@

Functions

- +
@@ -7950,7 +7950,7 @@

Functions

- +
@@ -7965,7 +7965,7 @@

Functions

- +
@@ -7995,7 +7995,7 @@

Functions

- +
@@ -8010,7 +8010,7 @@

Functions

-
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

+
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

@@ -8025,7 +8025,7 @@

Functions

-

Sets type of exact appearance and interaction model of this widget.

+

Sets type of exact appearance and interaction model of this widget.

@@ -8040,7 +8040,7 @@

Functions

-

Sets a listener to be invoked when the DatePicker dialog visibility is changing.

+

Sets a listener to be invoked when the DatePicker dialog visibility is changing.

@@ -8055,7 +8055,7 @@

Functions

-
fun setDateRegex(regex: String)

Representation of dates and times is an international standard covering the exchange of date- and time-related data. The method uses the ISO 8601 standard.

+
fun setDateRegex(regex: String)

Representation of dates and times is an international standard covering the exchange of date- and time-related data. The method uses the ISO 8601 standard.

@@ -8070,7 +8070,7 @@

Functions

- +
@@ -8085,7 +8085,7 @@

Functions

- +
@@ -8100,7 +8100,7 @@

Functions

- +
@@ -8115,7 +8115,7 @@

Functions

- +
@@ -8130,7 +8130,7 @@

Functions

- +
@@ -8145,7 +8145,7 @@

Functions

- +
@@ -8160,7 +8160,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8175,7 +8175,7 @@

Functions

-
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

+
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

@@ -8205,7 +8205,7 @@

Functions

-

Defines if data requires tokenization.

+

Defines if data requires tokenization.

@@ -8220,7 +8220,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8235,7 +8235,7 @@

Functions

-
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -8250,7 +8250,7 @@

Functions

- +
@@ -8265,7 +8265,7 @@

Functions

- +
@@ -8310,7 +8310,7 @@

Functions

- +
@@ -8325,7 +8325,7 @@

Functions

- +
@@ -8340,7 +8340,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8370,7 +8370,7 @@

Functions

- +
@@ -8385,7 +8385,7 @@

Functions

- +
@@ -8400,7 +8400,7 @@

Functions

- +
@@ -8415,7 +8415,7 @@

Functions

-
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

+
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

@@ -8430,7 +8430,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8445,7 +8445,7 @@

Functions

- +
@@ -8460,7 +8460,7 @@

Functions

- +
@@ -8475,7 +8475,7 @@

Functions

- +
@@ -8490,7 +8490,7 @@

Functions

-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8505,7 +8505,7 @@

Functions

-

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

+

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

@@ -8520,7 +8520,7 @@

Functions

- +
@@ -8535,7 +8535,7 @@

Functions

- +
@@ -8550,7 +8550,7 @@

Functions

- +
@@ -8565,7 +8565,7 @@

Functions

- +
@@ -8580,7 +8580,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8595,7 +8595,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8610,7 +8610,7 @@

Functions

-
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

+
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

@@ -8655,7 +8655,7 @@

Functions

- +
@@ -8670,7 +8670,7 @@

Functions

-
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

+
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

@@ -8685,7 +8685,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8700,7 +8700,7 @@

Functions

- +
@@ -8715,7 +8715,7 @@

Functions

-
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

+
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

@@ -8730,7 +8730,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8745,7 +8745,7 @@

Functions

- +
@@ -8760,7 +8760,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8775,7 +8775,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8790,7 +8790,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8805,7 +8805,7 @@

Functions

- +
@@ -8820,7 +8820,7 @@

Functions

- +
@@ -8835,7 +8835,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8850,7 +8850,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8865,7 +8865,7 @@

Functions

- +
@@ -8880,7 +8880,7 @@

Functions

- +
@@ -8895,7 +8895,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8910,7 +8910,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8925,7 +8925,7 @@

Functions

- +
@@ -8940,7 +8940,7 @@

Functions

-
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

+
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

@@ -8955,7 +8955,7 @@

Functions

- +
@@ -8970,7 +8970,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -8985,7 +8985,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -9000,7 +9000,7 @@

Functions

-
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

+
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

@@ -9015,7 +9015,7 @@

Functions

- +
@@ -9030,7 +9030,7 @@

Functions

- +
@@ -9045,7 +9045,7 @@

Functions

- +
@@ -9135,7 +9135,7 @@

Functions

- +
@@ -9150,7 +9150,7 @@

Functions

- +
@@ -9165,7 +9165,7 @@

Functions

- +
@@ -9180,7 +9180,7 @@

Functions

- +
@@ -9195,7 +9195,7 @@

Functions

- +
@@ -9210,7 +9210,7 @@

Functions

- +
@@ -9225,7 +9225,7 @@

Functions

-

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

+

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

@@ -9240,7 +9240,7 @@

Functions

-

This method adds a listener whose methods are called whenever VGS secure field state changes.

+

This method adds a listener whose methods are called whenever VGS secure field state changes.

@@ -9270,7 +9270,7 @@

Functions

- +
@@ -9285,7 +9285,7 @@

Functions

- +
@@ -9300,7 +9300,7 @@

Functions

- +
@@ -9330,7 +9330,7 @@

Functions

- +
@@ -9345,7 +9345,7 @@

Functions

- +
@@ -9360,7 +9360,7 @@

Functions

- +
@@ -9375,7 +9375,7 @@

Functions

- +
@@ -9390,7 +9390,7 @@

Functions

- +
@@ -9405,7 +9405,7 @@

Functions

- +
@@ -9420,7 +9420,7 @@

Functions

- +
@@ -9435,7 +9435,7 @@

Functions

- +
@@ -9450,7 +9450,7 @@

Functions

-

Representation of date and times which will be sent to the Vault Proxy Server. The method uses the ISO 8601 standard.

+

Representation of date and times which will be sent to the Vault Proxy Server. The method uses the ISO 8601 standard.

@@ -9465,7 +9465,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9495,7 +9495,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9510,7 +9510,7 @@

Functions

- +
@@ -9525,7 +9525,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9540,7 +9540,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9555,7 +9555,7 @@

Functions

- +
@@ -9570,7 +9570,7 @@

Functions

- +
@@ -9585,7 +9585,7 @@

Functions

- +
@@ -9600,7 +9600,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9615,7 +9615,7 @@

Functions

- +
@@ -9630,7 +9630,7 @@

Functions

- +
@@ -9645,7 +9645,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9660,7 +9660,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9675,7 +9675,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9690,7 +9690,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9705,7 +9705,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9720,7 +9720,7 @@

Functions

- +
@@ -9735,7 +9735,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9750,7 +9750,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9765,7 +9765,7 @@

Functions

- +
@@ -9780,7 +9780,7 @@

Functions

- +
@@ -9795,7 +9795,7 @@

Functions

- +
@@ -9810,7 +9810,7 @@

Functions

- +
@@ -9825,7 +9825,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9840,7 +9840,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9855,7 +9855,7 @@

Functions

- +
@@ -9870,7 +9870,7 @@

Functions

- +
@@ -9885,7 +9885,7 @@

Functions

- +
@@ -9900,7 +9900,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -9915,7 +9915,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -9930,7 +9930,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -9945,7 +9945,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -9960,7 +9960,7 @@

Functions

-
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

+
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

@@ -9975,7 +9975,7 @@

Functions

-
fun setSerializer(serializer: FieldDataSerializer<*, *>?)

Sets output data serializers, which will serialize data before send it to back-end.

+
fun setSerializer(serializer: FieldDataSerializer<*, *>?)

Sets output data serializers, which will serialize data before send it to back-end.

@@ -9990,7 +9990,7 @@

Functions

-
fun setSerializers(serializers: List<FieldDataSerializer<*, *>>?)

Sets output data serializers, which will serialize data before send it to back-end.

+
fun setSerializers(serializers: List<FieldDataSerializer<*, *>>?)

Sets output data serializers, which will serialize data before send it to back-end.

@@ -10005,7 +10005,7 @@

Functions

-
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

+
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

@@ -10020,7 +10020,7 @@

Functions

- +
@@ -10035,7 +10035,7 @@

Functions

- +
@@ -10050,7 +10050,7 @@

Functions

- +
@@ -10065,7 +10065,7 @@

Functions

- +
@@ -10080,7 +10080,7 @@

Functions

- +
@@ -10095,7 +10095,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -10110,7 +10110,7 @@

Functions

-
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

+
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

@@ -10125,7 +10125,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10140,7 +10140,7 @@

Functions

-
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

+
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

@@ -10155,7 +10155,7 @@

Functions

-
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

+
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

@@ -10170,7 +10170,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10185,7 +10185,7 @@

Functions

-
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

+
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

@@ -10200,7 +10200,7 @@

Functions

- +
@@ -10215,7 +10215,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10230,7 +10230,7 @@

Functions

- +
@@ -10245,7 +10245,7 @@

Functions

- +
@@ -10260,7 +10260,7 @@

Functions

- +
@@ -10275,7 +10275,7 @@

Functions

- +
@@ -10290,7 +10290,7 @@

Functions

- +
@@ -10305,7 +10305,7 @@

Functions

- +
@@ -10320,7 +10320,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10335,7 +10335,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10350,7 +10350,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10365,7 +10365,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

@@ -10380,7 +10380,7 @@

Functions

-

Sets the vault alias format in which data stores on a backend.

+

Sets the vault alias format in which data stores on a backend.

@@ -10395,7 +10395,7 @@

Functions

-

Sets the vault storage type for storing.

+

Sets the vault storage type for storing.

@@ -10410,7 +10410,7 @@

Functions

- +
@@ -10425,7 +10425,7 @@

Functions

- +
@@ -10440,7 +10440,7 @@

Functions

- +
@@ -10455,7 +10455,7 @@

Functions

- +
@@ -10470,7 +10470,7 @@

Functions

- +
@@ -10485,7 +10485,7 @@

Functions

- +
@@ -10500,7 +10500,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10515,7 +10515,7 @@

Functions

- +
@@ -10530,7 +10530,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10560,7 +10560,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10575,7 +10575,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10590,7 +10590,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10620,7 +10620,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10650,7 +10650,7 @@

Functions

-
fun showDatePickerDialog(dialogMode: DatePickerMode = DatePickerMode.DEFAULT, ignoreFieldMode: Boolean = false)

Start the DatePicker dialog and display it on screen.

+
fun showDatePickerDialog(dialogMode: DatePickerMode = DatePickerMode.DEFAULT, ignoreFieldMode: Boolean = false)

Start the DatePicker dialog and display it on screen.

@@ -10665,7 +10665,7 @@

Functions

-

Explicitly request that the current input method's soft input area be shown to the user, if needed.

+

Explicitly request that the current input method's soft input area be shown to the user, if needed.

@@ -10680,7 +10680,7 @@

Functions

- +
@@ -10710,7 +10710,7 @@

Functions

- +
@@ -10725,7 +10725,7 @@

Functions

- +
@@ -10740,7 +10740,7 @@

Functions

- +
@@ -10755,7 +10755,7 @@

Functions

- +
@@ -10770,7 +10770,7 @@

Functions

- +
@@ -10785,7 +10785,7 @@

Functions

- +
@@ -10800,7 +10800,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10815,7 +10815,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10845,7 +10845,7 @@

Functions

- +
@@ -10860,7 +10860,7 @@

Functions

- +
@@ -10875,7 +10875,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10890,7 +10890,7 @@

Functions

- +
@@ -10920,7 +10920,7 @@

Functions

- +
@@ -10935,7 +10935,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-person-name-edit-text/add-rule.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-person-name-edit-text/add-rule.html index db8b81a44..abd8cace1 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-person-name-edit-text/add-rule.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-person-name-edit-text/add-rule.html @@ -66,7 +66,7 @@

addRule

-

Deprecated

Use setRule(rule) instead.

Replace with

setRule(rule)

Adds a validation rule for the field.

+

Deprecated

Use setRule(rule) instead.

Replace with

setRule(rule)

Adds a validation rule for the field.

-

Adds a validation rule for the field.

+

Adds a validation rule for the field.

-

It return current state of the field.

Return

current state.

+

It return current state of the field.

Return

current state.

- +
@@ -131,7 +131,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -146,7 +146,7 @@

Functions

- +
@@ -176,7 +176,7 @@

Functions

- +
@@ -191,7 +191,7 @@

Functions

-

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

+

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

@@ -206,7 +206,7 @@

Functions

- +
@@ -221,7 +221,7 @@

Functions

-

Adds a validation rule for the field.

+

Adds a validation rule for the field.

@@ -236,7 +236,7 @@

Functions

- +
@@ -251,7 +251,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -281,7 +281,7 @@

Functions

- +
@@ -296,7 +296,7 @@

Functions

- +
@@ -311,7 +311,7 @@

Functions

-

Adds a validation rule for the field.

+

Adds a validation rule for the field.

@@ -326,7 +326,7 @@

Functions

- +
@@ -356,7 +356,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -371,7 +371,7 @@

Functions

- +
@@ -386,7 +386,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -401,7 +401,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -416,7 +416,7 @@

Functions

- +
@@ -431,7 +431,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -446,7 +446,7 @@

Functions

- +
@@ -461,7 +461,7 @@

Functions

- +
@@ -476,7 +476,7 @@

Functions

- +
@@ -491,7 +491,7 @@

Functions

- +
@@ -506,7 +506,7 @@

Functions

-

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

+

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

@@ -521,7 +521,7 @@

Functions

- +
@@ -536,7 +536,7 @@

Functions

- +
@@ -581,7 +581,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -611,7 +611,7 @@

Functions

- +
@@ -641,7 +641,7 @@

Functions

- +
@@ -656,7 +656,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -671,7 +671,7 @@

Functions

- +
@@ -686,7 +686,7 @@

Functions

- +
@@ -701,7 +701,7 @@

Functions

- +
@@ -716,7 +716,7 @@

Functions

- +
@@ -776,7 +776,7 @@

Functions

- +
@@ -851,7 +851,7 @@

Functions

- +
@@ -911,7 +911,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -926,7 +926,7 @@

Functions

- +
@@ -941,7 +941,7 @@

Functions

- +
@@ -956,7 +956,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -971,7 +971,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -1001,7 +1001,7 @@

Functions

- +
@@ -1046,7 +1046,7 @@

Functions

- +
@@ -1211,7 +1211,7 @@

Functions

- +
@@ -1271,7 +1271,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1286,7 +1286,7 @@

Functions

- +
@@ -1301,7 +1301,7 @@

Functions

-
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

+
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

@@ -1316,7 +1316,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1346,7 +1346,7 @@

Functions

- +
@@ -1376,7 +1376,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1391,7 +1391,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1406,7 +1406,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1436,7 +1436,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1451,7 +1451,7 @@

Functions

- +
@@ -1466,7 +1466,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1496,7 +1496,7 @@

Functions

- +
@@ -1541,7 +1541,7 @@

Functions

- +
@@ -1556,7 +1556,7 @@

Functions

- +
@@ -1571,7 +1571,7 @@

Functions

- +
@@ -1586,7 +1586,7 @@

Functions

- +
@@ -1601,7 +1601,7 @@

Functions

- +
@@ -1616,7 +1616,7 @@

Functions

- +
@@ -1631,7 +1631,7 @@

Functions

- +
@@ -1646,7 +1646,7 @@

Functions

- +
@@ -1661,7 +1661,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1676,7 +1676,7 @@

Functions

- +
@@ -1691,7 +1691,7 @@

Functions

- +
@@ -1706,7 +1706,7 @@

Functions

- +
@@ -1721,7 +1721,7 @@

Functions

- +
@@ -1736,7 +1736,7 @@

Functions

- +
@@ -1751,7 +1751,7 @@

Functions

- +
@@ -1766,7 +1766,7 @@

Functions

- +
@@ -1781,7 +1781,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1796,7 +1796,7 @@

Functions

- +
@@ -1826,7 +1826,7 @@

Functions

- +
@@ -1841,7 +1841,7 @@

Functions

- +
@@ -1856,7 +1856,7 @@

Functions

- +
@@ -1871,7 +1871,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1886,7 +1886,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1901,7 +1901,7 @@

Functions

- +
@@ -1916,7 +1916,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1931,7 +1931,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1946,7 +1946,7 @@

Functions

- +
@@ -1976,7 +1976,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -1991,7 +1991,7 @@

Functions

- +
@@ -2006,7 +2006,7 @@

Functions

- +
@@ -2021,7 +2021,7 @@

Functions

- +
@@ -2036,7 +2036,7 @@

Functions

- +
@@ -2051,7 +2051,7 @@

Functions

- +
@@ -2066,7 +2066,7 @@

Functions

- +
@@ -2081,7 +2081,7 @@

Functions

- +
@@ -2096,7 +2096,7 @@

Functions

- +
@@ -2111,7 +2111,7 @@

Functions

- +
@@ -2126,7 +2126,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2141,7 +2141,7 @@

Functions

- +
@@ -2156,7 +2156,7 @@

Functions

- +
@@ -2171,7 +2171,7 @@

Functions

- +
@@ -2186,7 +2186,7 @@

Functions

- +
@@ -2201,7 +2201,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2216,7 +2216,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2231,7 +2231,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2246,7 +2246,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2261,7 +2261,7 @@

Functions

-
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

+
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

@@ -2276,7 +2276,7 @@

Functions

-

Gets the current field type of the InputFieldView.

+

Gets the current field type of the InputFieldView.

@@ -2291,7 +2291,7 @@

Functions

- +
@@ -2306,7 +2306,7 @@

Functions

- +
@@ -2321,7 +2321,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2336,7 +2336,7 @@

Functions

- +
@@ -2351,7 +2351,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2366,7 +2366,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2381,7 +2381,7 @@

Functions

- +
@@ -2396,7 +2396,7 @@

Functions

- +
@@ -2411,7 +2411,7 @@

Functions

- +
@@ -2426,7 +2426,7 @@

Functions

- +
@@ -2441,7 +2441,7 @@

Functions

- +
@@ -2456,7 +2456,7 @@

Functions

- +
@@ -2471,7 +2471,7 @@

Functions

-
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

+
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

@@ -2486,7 +2486,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2501,7 +2501,7 @@

Functions

- +
@@ -2516,7 +2516,7 @@

Functions

- +
@@ -2531,7 +2531,7 @@

Functions

- +
@@ -2546,7 +2546,7 @@

Functions

- +
@@ -2561,7 +2561,7 @@

Functions

- +
@@ -2576,7 +2576,7 @@

Functions

- +
@@ -2591,7 +2591,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2606,7 +2606,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2621,7 +2621,7 @@

Functions

- +
@@ -2636,7 +2636,7 @@

Functions

- +
@@ -2651,7 +2651,7 @@

Functions

- +
@@ -2666,7 +2666,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2681,7 +2681,7 @@

Functions

-

Get the type of the Input Method Editor (IME).

+

Get the type of the Input Method Editor (IME).

@@ -2696,7 +2696,7 @@

Functions

- +
@@ -2711,7 +2711,7 @@

Functions

- +
@@ -2726,7 +2726,7 @@

Functions

- +
@@ -2741,7 +2741,7 @@

Functions

-
open fun getInputType(): Int

Get the type of the editable content.

+
open fun getInputType(): Int

Get the type of the editable content.

@@ -2756,7 +2756,7 @@

Functions

- +
@@ -2771,7 +2771,7 @@

Functions

- +
@@ -2786,7 +2786,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2801,7 +2801,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2816,7 +2816,7 @@

Functions

- +
@@ -2831,7 +2831,7 @@

Functions

- +
@@ -2846,7 +2846,7 @@

Functions

- +
@@ -2861,7 +2861,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2876,7 +2876,7 @@

Functions

- +
@@ -2891,7 +2891,7 @@

Functions

- +
@@ -2906,7 +2906,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2921,7 +2921,7 @@

Functions

- +
@@ -2936,7 +2936,7 @@

Functions

- +
@@ -2951,7 +2951,7 @@

Functions

- +
@@ -2966,7 +2966,7 @@

Functions

- +
@@ -2981,7 +2981,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -2996,7 +2996,7 @@

Functions

- +
@@ -3011,7 +3011,7 @@

Functions

- +
@@ -3026,7 +3026,7 @@

Functions

- +
@@ -3041,7 +3041,7 @@

Functions

- +
@@ -3056,7 +3056,7 @@

Functions

- +
@@ -3071,7 +3071,7 @@

Functions

- +
@@ -3086,7 +3086,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3101,7 +3101,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3116,7 +3116,7 @@

Functions

- +
@@ -3131,7 +3131,7 @@

Functions

- +
@@ -3146,7 +3146,7 @@

Functions

- +
@@ -3161,7 +3161,7 @@

Functions

- +
@@ -3176,7 +3176,7 @@

Functions

- +
@@ -3191,7 +3191,7 @@

Functions

- +
@@ -3206,7 +3206,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3221,7 +3221,7 @@

Functions

- +
@@ -3236,7 +3236,7 @@

Functions

- +
@@ -3251,7 +3251,7 @@

Functions

- +
@@ -3266,7 +3266,7 @@

Functions

- +
@@ -3296,7 +3296,7 @@

Functions

- +
@@ -3401,7 +3401,7 @@

Functions

- +
@@ -3416,7 +3416,7 @@

Functions

- +
@@ -3431,7 +3431,7 @@

Functions

- +
@@ -3446,7 +3446,7 @@

Functions

- +
@@ -3461,7 +3461,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3476,7 +3476,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3491,7 +3491,7 @@

Functions

- +
@@ -3506,7 +3506,7 @@

Functions

- +
@@ -3521,7 +3521,7 @@

Functions

- +
@@ -3536,7 +3536,7 @@

Functions

- +
@@ -3551,7 +3551,7 @@

Functions

- +
@@ -3566,7 +3566,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3581,7 +3581,7 @@

Functions

- +
@@ -3596,7 +3596,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3611,7 +3611,7 @@

Functions

- +
@@ -3626,7 +3626,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3641,7 +3641,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3656,7 +3656,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3671,7 +3671,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3686,7 +3686,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3701,7 +3701,7 @@

Functions

- +
@@ -3716,7 +3716,7 @@

Functions

- +
@@ -3731,7 +3731,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3746,7 +3746,7 @@

Functions

- +
@@ -3761,7 +3761,7 @@

Functions

- +
@@ -3776,7 +3776,7 @@

Functions

- +
@@ -3791,7 +3791,7 @@

Functions

- +
@@ -3806,7 +3806,7 @@

Functions

- +
@@ -3821,7 +3821,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3836,7 +3836,7 @@

Functions

- +
@@ -3851,7 +3851,7 @@

Functions

-

It return current state of the field.

+

It return current state of the field.

@@ -3866,7 +3866,7 @@

Functions

- +
@@ -3881,7 +3881,7 @@

Functions

- +
@@ -3896,7 +3896,7 @@

Functions

- +
@@ -3911,7 +3911,7 @@

Functions

- +
@@ -3926,7 +3926,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -3941,7 +3941,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -3956,7 +3956,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -3971,7 +3971,7 @@

Functions

- +
@@ -3986,7 +3986,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -4001,7 +4001,7 @@

Functions

- +
@@ -4016,7 +4016,7 @@

Functions

- +
@@ -4031,7 +4031,7 @@

Functions

- +
@@ -4046,7 +4046,7 @@

Functions

- +
@@ -4061,7 +4061,7 @@

Functions

- +
@@ -4076,7 +4076,7 @@

Functions

- +
@@ -4091,7 +4091,7 @@

Functions

- +
@@ -4106,7 +4106,7 @@

Functions

- +
@@ -4121,7 +4121,7 @@

Functions

-
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

+
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

@@ -4136,7 +4136,7 @@

Functions

- +
@@ -4151,7 +4151,7 @@

Functions

- +
@@ -4166,7 +4166,7 @@

Functions

- +
@@ -4181,7 +4181,7 @@

Functions

- +
@@ -4196,7 +4196,7 @@

Functions

- +
@@ -4211,7 +4211,7 @@

Functions

- +
@@ -4226,7 +4226,7 @@

Functions

- +
@@ -4241,7 +4241,7 @@

Functions

- +
@@ -4256,7 +4256,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4271,7 +4271,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4286,7 +4286,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4301,7 +4301,7 @@

Functions

- +
@@ -4316,7 +4316,7 @@

Functions

- +
@@ -4331,7 +4331,7 @@

Functions

- +
@@ -4346,7 +4346,7 @@

Functions

- +
@@ -4361,7 +4361,7 @@

Functions

- +
@@ -4376,7 +4376,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4391,7 +4391,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4406,7 +4406,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4421,7 +4421,7 @@

Functions

- +
@@ -4451,7 +4451,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4466,7 +4466,7 @@

Functions

- +
@@ -4481,7 +4481,7 @@

Functions

- +
@@ -4496,7 +4496,7 @@

Functions

- +
@@ -4511,7 +4511,7 @@

Functions

- +
@@ -4526,7 +4526,7 @@

Functions

- +
@@ -4556,7 +4556,7 @@

Functions

- +
@@ -4571,7 +4571,7 @@

Functions

-

Request to hide the soft input window from the context of the window that is currently accepting input.

+

Request to hide the soft input window from the context of the window that is currently accepting input.

@@ -4586,7 +4586,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4601,7 +4601,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4661,7 +4661,7 @@

Functions

- +
@@ -4676,7 +4676,7 @@

Functions

- +
@@ -4691,7 +4691,7 @@

Functions

- +
@@ -4706,7 +4706,7 @@

Functions

- +
@@ -4721,7 +4721,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4736,7 +4736,7 @@

Functions

- +
@@ -4751,7 +4751,7 @@

Functions

- +
@@ -4766,7 +4766,7 @@

Functions

- +
@@ -4781,7 +4781,7 @@

Functions

- +
@@ -4796,7 +4796,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4811,7 +4811,7 @@

Functions

-

Returns true if view content same, false otherwise.

+

Returns true if view content same, false otherwise.

@@ -4826,7 +4826,7 @@

Functions

- +
@@ -4841,7 +4841,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4856,7 +4856,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4871,7 +4871,7 @@

Functions

- +
@@ -4886,7 +4886,7 @@

Functions

- +
@@ -4901,7 +4901,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4916,7 +4916,7 @@

Functions

- +
@@ -4931,7 +4931,7 @@

Functions

- +
@@ -4961,7 +4961,7 @@

Functions

- +
@@ -4976,7 +4976,7 @@

Functions

- +
@@ -4991,7 +4991,7 @@

Functions

- +
@@ -5006,7 +5006,7 @@

Functions

- +
@@ -5021,7 +5021,7 @@

Functions

- +
@@ -5036,7 +5036,7 @@

Functions

- +
@@ -5051,7 +5051,7 @@

Functions

- +
@@ -5066,7 +5066,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -5081,7 +5081,7 @@

Functions

- +
@@ -5096,7 +5096,7 @@

Functions

- +
@@ -5111,7 +5111,7 @@

Functions

- +
@@ -5126,7 +5126,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5141,7 +5141,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5156,7 +5156,7 @@

Functions

- +
@@ -5171,7 +5171,7 @@

Functions

- +
@@ -5186,7 +5186,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5201,7 +5201,7 @@

Functions

- +
@@ -5216,7 +5216,7 @@

Functions

- +
@@ -5231,7 +5231,7 @@

Functions

- +
@@ -5246,7 +5246,7 @@

Functions

- +
@@ -5261,7 +5261,7 @@

Functions

- +
@@ -5276,7 +5276,7 @@

Functions

- +
@@ -5291,7 +5291,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5306,7 +5306,7 @@

Functions

- +
@@ -5321,7 +5321,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5336,7 +5336,7 @@

Functions

- +
@@ -5351,7 +5351,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5366,7 +5366,7 @@

Functions

-
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

+
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

@@ -5381,7 +5381,7 @@

Functions

- +
@@ -5396,7 +5396,7 @@

Functions

- +
@@ -5411,7 +5411,7 @@

Functions

- +
@@ -5426,7 +5426,7 @@

Functions

- +
@@ -5441,7 +5441,7 @@

Functions

- +
@@ -5456,7 +5456,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5471,7 +5471,7 @@

Functions

- +
@@ -5486,7 +5486,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5501,7 +5501,7 @@

Functions

- +
@@ -5516,7 +5516,7 @@

Functions

- +
@@ -5531,7 +5531,7 @@

Functions

- +
@@ -5546,7 +5546,7 @@

Functions

- +
@@ -5561,7 +5561,7 @@

Functions

- +
@@ -5576,7 +5576,7 @@

Functions

-

Returns the validation status for this view.

+

Returns the validation status for this view.

@@ -5591,7 +5591,7 @@

Functions

- +
@@ -5606,7 +5606,7 @@

Functions

- +
@@ -5621,7 +5621,7 @@

Functions

- +
@@ -5651,7 +5651,7 @@

Functions

- +
@@ -5681,7 +5681,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5711,7 +5711,7 @@

Functions

- +
@@ -5726,7 +5726,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5741,7 +5741,7 @@

Functions

- +
@@ -5756,7 +5756,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5771,7 +5771,7 @@

Functions

- +
@@ -5801,7 +5801,7 @@

Functions

- +
@@ -5816,7 +5816,7 @@

Functions

- +
@@ -5831,7 +5831,7 @@

Functions

- +
@@ -5846,7 +5846,7 @@

Functions

- +
@@ -5861,7 +5861,7 @@

Functions

- +
@@ -5876,7 +5876,7 @@

Functions

- +
@@ -5906,7 +5906,7 @@

Functions

- +
@@ -5921,7 +5921,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -5936,7 +5936,7 @@

Functions

- +
@@ -5951,7 +5951,7 @@

Functions

- +
@@ -5966,7 +5966,7 @@

Functions

- +
@@ -5981,7 +5981,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -5996,7 +5996,7 @@

Functions

- +
@@ -6011,7 +6011,7 @@

Functions

- +
@@ -6026,7 +6026,7 @@

Functions

- +
@@ -6041,7 +6041,7 @@

Functions

- +
@@ -6056,7 +6056,7 @@

Functions

- +
@@ -6116,7 +6116,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -6131,7 +6131,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6251,7 +6251,7 @@

Functions

- +
@@ -6266,7 +6266,7 @@

Functions

- +
@@ -6281,7 +6281,7 @@

Functions

- +
@@ -6296,7 +6296,7 @@

Functions

- +
@@ -6311,7 +6311,7 @@

Functions

- +
@@ -6326,7 +6326,7 @@

Functions

- +
@@ -6341,7 +6341,7 @@

Functions

- +
@@ -6356,7 +6356,7 @@

Functions

- +
@@ -6371,7 +6371,7 @@

Functions

- +
@@ -6401,7 +6401,7 @@

Functions

- +
@@ -6416,7 +6416,7 @@

Functions

- +
@@ -6431,7 +6431,7 @@

Functions

- +
@@ -6461,7 +6461,7 @@

Functions

- +
@@ -6491,7 +6491,7 @@

Functions

- +
@@ -6506,7 +6506,7 @@

Functions

- +
@@ -6521,7 +6521,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6536,7 +6536,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6551,7 +6551,7 @@

Functions

- +
@@ -6566,7 +6566,7 @@

Functions

- +
@@ -6581,7 +6581,7 @@

Functions

- +
@@ -6596,7 +6596,7 @@

Functions

- +
@@ -6611,7 +6611,7 @@

Functions

- +
@@ -6626,7 +6626,7 @@

Functions

- +
@@ -6656,7 +6656,7 @@

Functions

- +
@@ -6671,7 +6671,7 @@

Functions

- +
@@ -6686,7 +6686,7 @@

Functions

- +
@@ -6701,7 +6701,7 @@

Functions

- +
@@ -6716,7 +6716,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6731,7 +6731,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6746,7 +6746,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6761,7 +6761,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6776,7 +6776,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6791,7 +6791,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6806,7 +6806,7 @@

Functions

- +
@@ -6821,7 +6821,7 @@

Functions

- +
@@ -6851,7 +6851,7 @@

Functions

- +
@@ -6866,7 +6866,7 @@

Functions

- +
@@ -6881,7 +6881,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6896,7 +6896,7 @@

Functions

- +
@@ -6911,7 +6911,7 @@

Functions

- +
@@ -6926,7 +6926,7 @@

Functions

- +
@@ -6941,7 +6941,7 @@

Functions

- +
@@ -6956,7 +6956,7 @@

Functions

- +
@@ -6971,7 +6971,7 @@

Functions

-

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

+

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

@@ -7001,7 +7001,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -7016,7 +7016,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -7031,7 +7031,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -7046,7 +7046,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -7061,7 +7061,7 @@

Functions

- +
@@ -7121,7 +7121,7 @@

Functions

- +
@@ -7136,7 +7136,7 @@

Functions

-

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

+

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

@@ -7151,7 +7151,7 @@

Functions

- +
@@ -7166,7 +7166,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7181,7 +7181,7 @@

Functions

- +
@@ -7196,7 +7196,7 @@

Functions

- +
@@ -7241,7 +7241,7 @@

Functions

- +
@@ -7256,7 +7256,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7271,7 +7271,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7301,7 +7301,7 @@

Functions

- +
@@ -7316,7 +7316,7 @@

Functions

- +
@@ -7331,7 +7331,7 @@

Functions

- +
@@ -7361,7 +7361,7 @@

Functions

- +
@@ -7376,7 +7376,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7391,7 +7391,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7436,7 +7436,7 @@

Functions

- +
@@ -7451,7 +7451,7 @@

Functions

- +
@@ -7466,7 +7466,7 @@

Functions

- +
@@ -7481,7 +7481,7 @@

Functions

- +
@@ -7496,7 +7496,7 @@

Functions

- +
@@ -7511,7 +7511,7 @@

Functions

- +
@@ -7526,7 +7526,7 @@

Functions

- +
@@ -7541,7 +7541,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7556,7 +7556,7 @@

Functions

- +
@@ -7571,7 +7571,7 @@

Functions

- +
@@ -7586,7 +7586,7 @@

Functions

- +
@@ -7601,7 +7601,7 @@

Functions

- +
@@ -7616,7 +7616,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7631,7 +7631,7 @@

Functions

- +
@@ -7646,7 +7646,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7661,7 +7661,7 @@

Functions

- +
@@ -7676,7 +7676,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7721,7 +7721,7 @@

Functions

- +
@@ -7766,7 +7766,7 @@

Functions

- +
@@ -7781,7 +7781,7 @@

Functions

- +
@@ -7796,7 +7796,7 @@

Functions

- +
@@ -7811,7 +7811,7 @@

Functions

- +
@@ -7826,7 +7826,7 @@

Functions

- +
@@ -7841,7 +7841,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7856,7 +7856,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7871,7 +7871,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -7886,7 +7886,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -7901,7 +7901,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -7916,7 +7916,7 @@

Functions

- +
@@ -7931,7 +7931,7 @@

Functions

- +
@@ -7946,7 +7946,7 @@

Functions

- +
@@ -7976,7 +7976,7 @@

Functions

- +
@@ -7991,7 +7991,7 @@

Functions

-
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

+
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

@@ -8006,7 +8006,7 @@

Functions

- +
@@ -8021,7 +8021,7 @@

Functions

- +
@@ -8036,7 +8036,7 @@

Functions

- +
@@ -8051,7 +8051,7 @@

Functions

- +
@@ -8066,7 +8066,7 @@

Functions

- +
@@ -8081,7 +8081,7 @@

Functions

- +
@@ -8096,7 +8096,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8111,7 +8111,7 @@

Functions

-
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

+
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

@@ -8141,7 +8141,7 @@

Functions

-

Defines if data requires tokenization.

+

Defines if data requires tokenization.

@@ -8156,7 +8156,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8171,7 +8171,7 @@

Functions

-
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -8186,7 +8186,7 @@

Functions

- +
@@ -8201,7 +8201,7 @@

Functions

- +
@@ -8246,7 +8246,7 @@

Functions

- +
@@ -8261,7 +8261,7 @@

Functions

- +
@@ -8276,7 +8276,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8306,7 +8306,7 @@

Functions

- +
@@ -8321,7 +8321,7 @@

Functions

- +
@@ -8336,7 +8336,7 @@

Functions

- +
@@ -8351,7 +8351,7 @@

Functions

-
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

+
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

@@ -8366,7 +8366,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8381,7 +8381,7 @@

Functions

- +
@@ -8396,7 +8396,7 @@

Functions

- +
@@ -8411,7 +8411,7 @@

Functions

- +
@@ -8426,7 +8426,7 @@

Functions

-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8441,7 +8441,7 @@

Functions

-

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

+

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

@@ -8456,7 +8456,7 @@

Functions

- +
@@ -8471,7 +8471,7 @@

Functions

- +
@@ -8486,7 +8486,7 @@

Functions

- +
@@ -8501,7 +8501,7 @@

Functions

- +
@@ -8516,7 +8516,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8531,7 +8531,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8546,7 +8546,7 @@

Functions

-
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

+
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

@@ -8591,7 +8591,7 @@

Functions

- +
@@ -8606,7 +8606,7 @@

Functions

-
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

+
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

@@ -8621,7 +8621,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8636,7 +8636,7 @@

Functions

- +
@@ -8651,7 +8651,7 @@

Functions

-
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

+
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

@@ -8666,7 +8666,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8681,7 +8681,7 @@

Functions

- +
@@ -8696,7 +8696,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8711,7 +8711,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8726,7 +8726,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8741,7 +8741,7 @@

Functions

- +
@@ -8756,7 +8756,7 @@

Functions

- +
@@ -8771,7 +8771,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8786,7 +8786,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8801,7 +8801,7 @@

Functions

- +
@@ -8816,7 +8816,7 @@

Functions

- +
@@ -8831,7 +8831,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8846,7 +8846,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8861,7 +8861,7 @@

Functions

- +
@@ -8876,7 +8876,7 @@

Functions

-
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

+
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

@@ -8891,7 +8891,7 @@

Functions

- +
@@ -8906,7 +8906,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -8921,7 +8921,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -8936,7 +8936,7 @@

Functions

-
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

+
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

@@ -8951,7 +8951,7 @@

Functions

- +
@@ -8966,7 +8966,7 @@

Functions

- +
@@ -8981,7 +8981,7 @@

Functions

- +
@@ -9071,7 +9071,7 @@

Functions

- +
@@ -9086,7 +9086,7 @@

Functions

- +
@@ -9101,7 +9101,7 @@

Functions

- +
@@ -9116,7 +9116,7 @@

Functions

- +
@@ -9131,7 +9131,7 @@

Functions

- +
@@ -9146,7 +9146,7 @@

Functions

- +
@@ -9161,7 +9161,7 @@

Functions

-

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

+

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

@@ -9176,7 +9176,7 @@

Functions

-

This method adds a listener whose methods are called whenever VGS secure field state changes.

+

This method adds a listener whose methods are called whenever VGS secure field state changes.

@@ -9206,7 +9206,7 @@

Functions

- +
@@ -9221,7 +9221,7 @@

Functions

- +
@@ -9236,7 +9236,7 @@

Functions

- +
@@ -9266,7 +9266,7 @@

Functions

- +
@@ -9281,7 +9281,7 @@

Functions

- +
@@ -9296,7 +9296,7 @@

Functions

- +
@@ -9311,7 +9311,7 @@

Functions

- +
@@ -9326,7 +9326,7 @@

Functions

- +
@@ -9341,7 +9341,7 @@

Functions

- +
@@ -9356,7 +9356,7 @@

Functions

- +
@@ -9371,7 +9371,7 @@

Functions

- +
@@ -9386,7 +9386,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9416,7 +9416,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9431,7 +9431,7 @@

Functions

- +
@@ -9446,7 +9446,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9461,7 +9461,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9476,7 +9476,7 @@

Functions

- +
@@ -9491,7 +9491,7 @@

Functions

- +
@@ -9506,7 +9506,7 @@

Functions

- +
@@ -9521,7 +9521,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9536,7 +9536,7 @@

Functions

- +
@@ -9551,7 +9551,7 @@

Functions

- +
@@ -9566,7 +9566,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9581,7 +9581,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9596,7 +9596,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9611,7 +9611,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9626,7 +9626,7 @@

Functions

-

Set a validation rule for the field.

+

Set a validation rule for the field.

@@ -9641,7 +9641,7 @@

Functions

-

Set validation rules for the field.

+

Set validation rules for the field.

@@ -9656,7 +9656,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9671,7 +9671,7 @@

Functions

- +
@@ -9686,7 +9686,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9701,7 +9701,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9716,7 +9716,7 @@

Functions

- +
@@ -9731,7 +9731,7 @@

Functions

- +
@@ -9746,7 +9746,7 @@

Functions

- +
@@ -9761,7 +9761,7 @@

Functions

- +
@@ -9776,7 +9776,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9791,7 +9791,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9806,7 +9806,7 @@

Functions

- +
@@ -9821,7 +9821,7 @@

Functions

- +
@@ -9836,7 +9836,7 @@

Functions

- +
@@ -9851,7 +9851,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -9866,7 +9866,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -9881,7 +9881,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -9896,7 +9896,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -9911,7 +9911,7 @@

Functions

-
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

+
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

@@ -9926,7 +9926,7 @@

Functions

-
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

+
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

@@ -9941,7 +9941,7 @@

Functions

- +
@@ -9956,7 +9956,7 @@

Functions

- +
@@ -9971,7 +9971,7 @@

Functions

- +
@@ -9986,7 +9986,7 @@

Functions

- +
@@ -10001,7 +10001,7 @@

Functions

- +
@@ -10016,7 +10016,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -10031,7 +10031,7 @@

Functions

-
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

+
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

@@ -10046,7 +10046,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10061,7 +10061,7 @@

Functions

-
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

+
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

@@ -10076,7 +10076,7 @@

Functions

-
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

+
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

@@ -10091,7 +10091,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10106,7 +10106,7 @@

Functions

-
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

+
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

@@ -10121,7 +10121,7 @@

Functions

- +
@@ -10136,7 +10136,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10151,7 +10151,7 @@

Functions

- +
@@ -10166,7 +10166,7 @@

Functions

- +
@@ -10181,7 +10181,7 @@

Functions

- +
@@ -10196,7 +10196,7 @@

Functions

- +
@@ -10211,7 +10211,7 @@

Functions

- +
@@ -10226,7 +10226,7 @@

Functions

- +
@@ -10241,7 +10241,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10256,7 +10256,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10271,7 +10271,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10286,7 +10286,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

@@ -10301,7 +10301,7 @@

Functions

-

Sets the vault alias format in which data stores on a backend.

+

Sets the vault alias format in which data stores on a backend.

@@ -10316,7 +10316,7 @@

Functions

-

Sets the vault storage type for storing.

+

Sets the vault storage type for storing.

@@ -10331,7 +10331,7 @@

Functions

- +
@@ -10346,7 +10346,7 @@

Functions

- +
@@ -10361,7 +10361,7 @@

Functions

- +
@@ -10376,7 +10376,7 @@

Functions

- +
@@ -10391,7 +10391,7 @@

Functions

- +
@@ -10406,7 +10406,7 @@

Functions

- +
@@ -10421,7 +10421,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10436,7 +10436,7 @@

Functions

- +
@@ -10451,7 +10451,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10481,7 +10481,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10496,7 +10496,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10511,7 +10511,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10541,7 +10541,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10571,7 +10571,7 @@

Functions

-

Explicitly request that the current input method's soft input area be shown to the user, if needed.

+

Explicitly request that the current input method's soft input area be shown to the user, if needed.

@@ -10586,7 +10586,7 @@

Functions

- +
@@ -10616,7 +10616,7 @@

Functions

- +
@@ -10631,7 +10631,7 @@

Functions

- +
@@ -10646,7 +10646,7 @@

Functions

- +
@@ -10661,7 +10661,7 @@

Functions

- +
@@ -10676,7 +10676,7 @@

Functions

- +
@@ -10691,7 +10691,7 @@

Functions

- +
@@ -10706,7 +10706,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10721,7 +10721,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10751,7 +10751,7 @@

Functions

- +
@@ -10766,7 +10766,7 @@

Functions

- +
@@ -10781,7 +10781,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10796,7 +10796,7 @@

Functions

- +
@@ -10826,7 +10826,7 @@

Functions

- +
@@ -10841,7 +10841,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-person-name-edit-text/set-enabled-tokenization.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-person-name-edit-text/set-enabled-tokenization.html index 5951d0b65..1b7ffe960 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-person-name-edit-text/set-enabled-tokenization.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-person-name-edit-text/set-enabled-tokenization.html @@ -66,7 +66,7 @@

setEnabledTokenization

-

Defines if data requires tokenization.

Parameters

isEnabled

Is tokenization enabled.

+

Defines if data requires tokenization.

Parameters

isEnabled

Is tokenization enabled.

-

Set a validation rule for the field.

+

Set a validation rule for the field.

-

Set validation rules for the field.

+

Set validation rules for the field.

-

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

+

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

-

Sets the vault storage type for storing.

Parameters

storage

The VGS storage type.

+

Sets the vault storage type for storing.

Parameters

storage

The VGS storage type.

-
abstract fun onDismiss()

Called when the DatePicker Dialog was dismissed.

+
abstract fun onDismiss()

Called when the DatePicker Dialog was dismissed.

@@ -97,7 +97,7 @@

Functions

-
abstract fun onShow()

Called when the DatePicker Dialog was shown.

+
abstract fun onShow()

Called when the DatePicker Dialog was shown.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-range-date-edit-text/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-range-date-edit-text/index.html index 6110e7b02..eca2a0f2d 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-range-date-edit-text/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-range-date-edit-text/index.html @@ -120,7 +120,7 @@

Functions

- +
@@ -150,7 +150,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -165,7 +165,7 @@

Functions

- +
@@ -195,7 +195,7 @@

Functions

- +
@@ -210,7 +210,7 @@

Functions

-

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

+

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

@@ -225,7 +225,7 @@

Functions

- +
@@ -240,7 +240,7 @@

Functions

- +
@@ -255,7 +255,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -285,7 +285,7 @@

Functions

- +
@@ -300,7 +300,7 @@

Functions

- +
@@ -315,7 +315,7 @@

Functions

- +
@@ -345,7 +345,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -360,7 +360,7 @@

Functions

- +
@@ -375,7 +375,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -390,7 +390,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -405,7 +405,7 @@

Functions

- +
@@ -420,7 +420,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -435,7 +435,7 @@

Functions

- +
@@ -450,7 +450,7 @@

Functions

- +
@@ -465,7 +465,7 @@

Functions

- +
@@ -480,7 +480,7 @@

Functions

- +
@@ -495,7 +495,7 @@

Functions

-

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

+

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

@@ -510,7 +510,7 @@

Functions

- +
@@ -525,7 +525,7 @@

Functions

- +
@@ -570,7 +570,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -600,7 +600,7 @@

Functions

- +
@@ -630,7 +630,7 @@

Functions

- +
@@ -645,7 +645,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -660,7 +660,7 @@

Functions

- +
@@ -675,7 +675,7 @@

Functions

- +
@@ -690,7 +690,7 @@

Functions

- +
@@ -705,7 +705,7 @@

Functions

- +
@@ -765,7 +765,7 @@

Functions

- +
@@ -840,7 +840,7 @@

Functions

- +
@@ -900,7 +900,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -915,7 +915,7 @@

Functions

- +
@@ -930,7 +930,7 @@

Functions

- +
@@ -945,7 +945,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -960,7 +960,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -990,7 +990,7 @@

Functions

- +
@@ -1035,7 +1035,7 @@

Functions

- +
@@ -1200,7 +1200,7 @@

Functions

- +
@@ -1260,7 +1260,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1275,7 +1275,7 @@

Functions

- +
@@ -1290,7 +1290,7 @@

Functions

-
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

+
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

@@ -1305,7 +1305,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1335,7 +1335,7 @@

Functions

- +
@@ -1365,7 +1365,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1380,7 +1380,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1395,7 +1395,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1425,7 +1425,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1440,7 +1440,7 @@

Functions

- +
@@ -1455,7 +1455,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1485,7 +1485,7 @@

Functions

- +
@@ -1530,7 +1530,7 @@

Functions

- +
@@ -1545,7 +1545,7 @@

Functions

- +
@@ -1560,7 +1560,7 @@

Functions

- +
@@ -1575,7 +1575,7 @@

Functions

- +
@@ -1590,7 +1590,7 @@

Functions

- +
@@ -1605,7 +1605,7 @@

Functions

- +
@@ -1620,7 +1620,7 @@

Functions

- +
@@ -1635,7 +1635,7 @@

Functions

- +
@@ -1650,7 +1650,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1665,7 +1665,7 @@

Functions

- +
@@ -1680,7 +1680,7 @@

Functions

- +
@@ -1695,7 +1695,7 @@

Functions

- +
@@ -1710,7 +1710,7 @@

Functions

- +
@@ -1725,7 +1725,7 @@

Functions

- +
@@ -1740,7 +1740,7 @@

Functions

- +
@@ -1755,7 +1755,7 @@

Functions

- +
@@ -1770,7 +1770,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1785,7 +1785,7 @@

Functions

- +
@@ -1815,7 +1815,7 @@

Functions

- +
@@ -1830,7 +1830,7 @@

Functions

- +
@@ -1845,7 +1845,7 @@

Functions

- +
@@ -1860,7 +1860,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1875,7 +1875,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1890,7 +1890,7 @@

Functions

- +
@@ -1905,7 +1905,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1920,7 +1920,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1935,7 +1935,7 @@

Functions

- +
@@ -1965,7 +1965,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -1980,7 +1980,7 @@

Functions

- +
@@ -1995,7 +1995,7 @@

Functions

- +
@@ -2010,7 +2010,7 @@

Functions

- +
@@ -2025,7 +2025,7 @@

Functions

- +
@@ -2040,7 +2040,7 @@

Functions

- +
@@ -2055,7 +2055,7 @@

Functions

- +
@@ -2070,7 +2070,7 @@

Functions

- +
@@ -2085,7 +2085,7 @@

Functions

-

Return type of exact appearance and interaction model of this widget.

+

Return type of exact appearance and interaction model of this widget.

@@ -2100,7 +2100,7 @@

Functions

-

Return regex date representation format.

+

Return regex date representation format.

@@ -2115,7 +2115,7 @@

Functions

- +
@@ -2130,7 +2130,7 @@

Functions

- +
@@ -2145,7 +2145,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2160,7 +2160,7 @@

Functions

- +
@@ -2175,7 +2175,7 @@

Functions

- +
@@ -2190,7 +2190,7 @@

Functions

- +
@@ -2205,7 +2205,7 @@

Functions

- +
@@ -2220,7 +2220,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2235,7 +2235,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2250,7 +2250,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2265,7 +2265,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2280,7 +2280,7 @@

Functions

-
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

+
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

@@ -2295,7 +2295,7 @@

Functions

-

Gets the current field type of the InputFieldView.

+

Gets the current field type of the InputFieldView.

@@ -2310,7 +2310,7 @@

Functions

- +
@@ -2325,7 +2325,7 @@

Functions

- +
@@ -2340,7 +2340,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2355,7 +2355,7 @@

Functions

- +
@@ -2370,7 +2370,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2385,7 +2385,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2400,7 +2400,7 @@

Functions

- +
@@ -2415,7 +2415,7 @@

Functions

- +
@@ -2430,7 +2430,7 @@

Functions

- +
@@ -2445,7 +2445,7 @@

Functions

- +
@@ -2460,7 +2460,7 @@

Functions

- +
@@ -2475,7 +2475,7 @@

Functions

- +
@@ -2490,7 +2490,7 @@

Functions

-
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

+
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

@@ -2505,7 +2505,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2520,7 +2520,7 @@

Functions

- +
@@ -2535,7 +2535,7 @@

Functions

- +
@@ -2550,7 +2550,7 @@

Functions

- +
@@ -2565,7 +2565,7 @@

Functions

- +
@@ -2580,7 +2580,7 @@

Functions

- +
@@ -2595,7 +2595,7 @@

Functions

- +
@@ -2610,7 +2610,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2625,7 +2625,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2640,7 +2640,7 @@

Functions

- +
@@ -2655,7 +2655,7 @@

Functions

- +
@@ -2670,7 +2670,7 @@

Functions

- +
@@ -2685,7 +2685,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2700,7 +2700,7 @@

Functions

-

Get the type of the Input Method Editor (IME).

+

Get the type of the Input Method Editor (IME).

@@ -2715,7 +2715,7 @@

Functions

- +
@@ -2730,7 +2730,7 @@

Functions

- +
@@ -2745,7 +2745,7 @@

Functions

- +
@@ -2760,7 +2760,7 @@

Functions

-
open fun getInputType(): Int

Get the type of the editable content.

+
open fun getInputType(): Int

Get the type of the editable content.

@@ -2775,7 +2775,7 @@

Functions

- +
@@ -2790,7 +2790,7 @@

Functions

- +
@@ -2805,7 +2805,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2820,7 +2820,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2835,7 +2835,7 @@

Functions

- +
@@ -2850,7 +2850,7 @@

Functions

- +
@@ -2865,7 +2865,7 @@

Functions

- +
@@ -2880,7 +2880,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2895,7 +2895,7 @@

Functions

- +
@@ -2910,7 +2910,7 @@

Functions

- +
@@ -2925,7 +2925,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2940,7 +2940,7 @@

Functions

- +
@@ -2955,7 +2955,7 @@

Functions

- +
@@ -2970,7 +2970,7 @@

Functions

- +
@@ -2985,7 +2985,7 @@

Functions

- +
@@ -3000,7 +3000,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -3015,7 +3015,7 @@

Functions

- +
@@ -3030,7 +3030,7 @@

Functions

- +
@@ -3045,7 +3045,7 @@

Functions

- +
@@ -3060,7 +3060,7 @@

Functions

- +
@@ -3075,7 +3075,7 @@

Functions

- +
@@ -3090,7 +3090,7 @@

Functions

- +
@@ -3105,7 +3105,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3120,7 +3120,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3135,7 +3135,7 @@

Functions

- +
@@ -3150,7 +3150,7 @@

Functions

- +
@@ -3165,7 +3165,7 @@

Functions

- +
@@ -3180,7 +3180,7 @@

Functions

- +
@@ -3195,7 +3195,7 @@

Functions

- +
@@ -3210,7 +3210,7 @@

Functions

- +
@@ -3225,7 +3225,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3240,7 +3240,7 @@

Functions

- +
@@ -3255,7 +3255,7 @@

Functions

- +
@@ -3270,7 +3270,7 @@

Functions

- +
@@ -3285,7 +3285,7 @@

Functions

- +
@@ -3315,7 +3315,7 @@

Functions

- +
@@ -3420,7 +3420,7 @@

Functions

- +
@@ -3435,7 +3435,7 @@

Functions

- +
@@ -3450,7 +3450,7 @@

Functions

- +
@@ -3465,7 +3465,7 @@

Functions

- +
@@ -3480,7 +3480,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3495,7 +3495,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3510,7 +3510,7 @@

Functions

- +
@@ -3525,7 +3525,7 @@

Functions

- +
@@ -3540,7 +3540,7 @@

Functions

- +
@@ -3555,7 +3555,7 @@

Functions

- +
@@ -3570,7 +3570,7 @@

Functions

- +
@@ -3585,7 +3585,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3600,7 +3600,7 @@

Functions

- +
@@ -3615,7 +3615,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3630,7 +3630,7 @@

Functions

- +
@@ -3645,7 +3645,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3660,7 +3660,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3675,7 +3675,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3690,7 +3690,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3705,7 +3705,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3720,7 +3720,7 @@

Functions

- +
@@ -3735,7 +3735,7 @@

Functions

- +
@@ -3750,7 +3750,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3765,7 +3765,7 @@

Functions

- +
@@ -3780,7 +3780,7 @@

Functions

- +
@@ -3795,7 +3795,7 @@

Functions

- +
@@ -3810,7 +3810,7 @@

Functions

- +
@@ -3825,7 +3825,7 @@

Functions

- +
@@ -3840,7 +3840,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3855,7 +3855,7 @@

Functions

- +
@@ -3870,7 +3870,7 @@

Functions

-

It return current state of the field.

+

It return current state of the field.

@@ -3885,7 +3885,7 @@

Functions

- +
@@ -3900,7 +3900,7 @@

Functions

- +
@@ -3915,7 +3915,7 @@

Functions

- +
@@ -3930,7 +3930,7 @@

Functions

- +
@@ -3945,7 +3945,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -3960,7 +3960,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -3975,7 +3975,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -3990,7 +3990,7 @@

Functions

- +
@@ -4005,7 +4005,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -4020,7 +4020,7 @@

Functions

- +
@@ -4035,7 +4035,7 @@

Functions

- +
@@ -4050,7 +4050,7 @@

Functions

- +
@@ -4065,7 +4065,7 @@

Functions

- +
@@ -4080,7 +4080,7 @@

Functions

- +
@@ -4095,7 +4095,7 @@

Functions

- +
@@ -4110,7 +4110,7 @@

Functions

- +
@@ -4125,7 +4125,7 @@

Functions

- +
@@ -4140,7 +4140,7 @@

Functions

-
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

+
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

@@ -4155,7 +4155,7 @@

Functions

- +
@@ -4170,7 +4170,7 @@

Functions

- +
@@ -4185,7 +4185,7 @@

Functions

- +
@@ -4200,7 +4200,7 @@

Functions

- +
@@ -4215,7 +4215,7 @@

Functions

- +
@@ -4230,7 +4230,7 @@

Functions

- +
@@ -4245,7 +4245,7 @@

Functions

- +
@@ -4260,7 +4260,7 @@

Functions

- +
@@ -4275,7 +4275,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4290,7 +4290,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4305,7 +4305,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4320,7 +4320,7 @@

Functions

- +
@@ -4335,7 +4335,7 @@

Functions

- +
@@ -4350,7 +4350,7 @@

Functions

- +
@@ -4365,7 +4365,7 @@

Functions

- +
@@ -4380,7 +4380,7 @@

Functions

- +
@@ -4395,7 +4395,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4410,7 +4410,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4425,7 +4425,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4440,7 +4440,7 @@

Functions

- +
@@ -4470,7 +4470,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4485,7 +4485,7 @@

Functions

- +
@@ -4500,7 +4500,7 @@

Functions

- +
@@ -4515,7 +4515,7 @@

Functions

- +
@@ -4530,7 +4530,7 @@

Functions

- +
@@ -4545,7 +4545,7 @@

Functions

- +
@@ -4575,7 +4575,7 @@

Functions

- +
@@ -4590,7 +4590,7 @@

Functions

-

Request to hide the soft input window from the context of the window that is currently accepting input.

+

Request to hide the soft input window from the context of the window that is currently accepting input.

@@ -4605,7 +4605,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4620,7 +4620,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4680,7 +4680,7 @@

Functions

- +
@@ -4695,7 +4695,7 @@

Functions

- +
@@ -4710,7 +4710,7 @@

Functions

- +
@@ -4725,7 +4725,7 @@

Functions

- +
@@ -4740,7 +4740,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4755,7 +4755,7 @@

Functions

- +
@@ -4770,7 +4770,7 @@

Functions

- +
@@ -4785,7 +4785,7 @@

Functions

- +
@@ -4800,7 +4800,7 @@

Functions

- +
@@ -4815,7 +4815,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4830,7 +4830,7 @@

Functions

-

Returns true if view content same, false otherwise.

+

Returns true if view content same, false otherwise.

@@ -4845,7 +4845,7 @@

Functions

- +
@@ -4860,7 +4860,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4875,7 +4875,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4890,7 +4890,7 @@

Functions

- +
@@ -4905,7 +4905,7 @@

Functions

- +
@@ -4920,7 +4920,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4935,7 +4935,7 @@

Functions

- +
@@ -4950,7 +4950,7 @@

Functions

- +
@@ -4980,7 +4980,7 @@

Functions

- +
@@ -4995,7 +4995,7 @@

Functions

- +
@@ -5010,7 +5010,7 @@

Functions

- +
@@ -5025,7 +5025,7 @@

Functions

- +
@@ -5040,7 +5040,7 @@

Functions

- +
@@ -5055,7 +5055,7 @@

Functions

- +
@@ -5070,7 +5070,7 @@

Functions

- +
@@ -5085,7 +5085,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -5100,7 +5100,7 @@

Functions

- +
@@ -5115,7 +5115,7 @@

Functions

- +
@@ -5130,7 +5130,7 @@

Functions

- +
@@ -5145,7 +5145,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5160,7 +5160,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5175,7 +5175,7 @@

Functions

- +
@@ -5190,7 +5190,7 @@

Functions

- +
@@ -5205,7 +5205,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5220,7 +5220,7 @@

Functions

- +
@@ -5235,7 +5235,7 @@

Functions

- +
@@ -5250,7 +5250,7 @@

Functions

- +
@@ -5265,7 +5265,7 @@

Functions

- +
@@ -5280,7 +5280,7 @@

Functions

- +
@@ -5295,7 +5295,7 @@

Functions

- +
@@ -5310,7 +5310,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5325,7 +5325,7 @@

Functions

- +
@@ -5340,7 +5340,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5355,7 +5355,7 @@

Functions

- +
@@ -5370,7 +5370,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5385,7 +5385,7 @@

Functions

-
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

+
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

@@ -5400,7 +5400,7 @@

Functions

- +
@@ -5415,7 +5415,7 @@

Functions

- +
@@ -5430,7 +5430,7 @@

Functions

- +
@@ -5445,7 +5445,7 @@

Functions

- +
@@ -5460,7 +5460,7 @@

Functions

- +
@@ -5475,7 +5475,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5490,7 +5490,7 @@

Functions

- +
@@ -5505,7 +5505,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5520,7 +5520,7 @@

Functions

- +
@@ -5535,7 +5535,7 @@

Functions

- +
@@ -5550,7 +5550,7 @@

Functions

- +
@@ -5565,7 +5565,7 @@

Functions

- +
@@ -5580,7 +5580,7 @@

Functions

- +
@@ -5595,7 +5595,7 @@

Functions

-

Returns the validation status for this view.

+

Returns the validation status for this view.

@@ -5610,7 +5610,7 @@

Functions

- +
@@ -5625,7 +5625,7 @@

Functions

- +
@@ -5640,7 +5640,7 @@

Functions

- +
@@ -5670,7 +5670,7 @@

Functions

- +
@@ -5700,7 +5700,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5730,7 +5730,7 @@

Functions

- +
@@ -5745,7 +5745,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5760,7 +5760,7 @@

Functions

- +
@@ -5775,7 +5775,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5790,7 +5790,7 @@

Functions

- +
@@ -5820,7 +5820,7 @@

Functions

- +
@@ -5835,7 +5835,7 @@

Functions

- +
@@ -5850,7 +5850,7 @@

Functions

- +
@@ -5865,7 +5865,7 @@

Functions

- +
@@ -5880,7 +5880,7 @@

Functions

- +
@@ -5895,7 +5895,7 @@

Functions

- +
@@ -5925,7 +5925,7 @@

Functions

- +
@@ -5940,7 +5940,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -5955,7 +5955,7 @@

Functions

- +
@@ -5970,7 +5970,7 @@

Functions

- +
@@ -5985,7 +5985,7 @@

Functions

- +
@@ -6000,7 +6000,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -6015,7 +6015,7 @@

Functions

- +
@@ -6030,7 +6030,7 @@

Functions

- +
@@ -6045,7 +6045,7 @@

Functions

- +
@@ -6060,7 +6060,7 @@

Functions

- +
@@ -6075,7 +6075,7 @@

Functions

- +
@@ -6135,7 +6135,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -6150,7 +6150,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6270,7 +6270,7 @@

Functions

- +
@@ -6285,7 +6285,7 @@

Functions

- +
@@ -6300,7 +6300,7 @@

Functions

- +
@@ -6315,7 +6315,7 @@

Functions

- +
@@ -6330,7 +6330,7 @@

Functions

- +
@@ -6345,7 +6345,7 @@

Functions

- +
@@ -6360,7 +6360,7 @@

Functions

- +
@@ -6375,7 +6375,7 @@

Functions

- +
@@ -6390,7 +6390,7 @@

Functions

- +
@@ -6420,7 +6420,7 @@

Functions

- +
@@ -6435,7 +6435,7 @@

Functions

- +
@@ -6450,7 +6450,7 @@

Functions

- +
@@ -6480,7 +6480,7 @@

Functions

- +
@@ -6510,7 +6510,7 @@

Functions

- +
@@ -6525,7 +6525,7 @@

Functions

- +
@@ -6540,7 +6540,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6555,7 +6555,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6570,7 +6570,7 @@

Functions

- +
@@ -6585,7 +6585,7 @@

Functions

- +
@@ -6600,7 +6600,7 @@

Functions

- +
@@ -6615,7 +6615,7 @@

Functions

- +
@@ -6630,7 +6630,7 @@

Functions

- +
@@ -6645,7 +6645,7 @@

Functions

- +
@@ -6675,7 +6675,7 @@

Functions

- +
@@ -6690,7 +6690,7 @@

Functions

- +
@@ -6705,7 +6705,7 @@

Functions

- +
@@ -6720,7 +6720,7 @@

Functions

- +
@@ -6735,7 +6735,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6750,7 +6750,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6765,7 +6765,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6780,7 +6780,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6795,7 +6795,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6810,7 +6810,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6825,7 +6825,7 @@

Functions

- +
@@ -6840,7 +6840,7 @@

Functions

- +
@@ -6870,7 +6870,7 @@

Functions

- +
@@ -6885,7 +6885,7 @@

Functions

- +
@@ -6900,7 +6900,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6915,7 +6915,7 @@

Functions

- +
@@ -6930,7 +6930,7 @@

Functions

- +
@@ -6945,7 +6945,7 @@

Functions

- +
@@ -6960,7 +6960,7 @@

Functions

- +
@@ -6975,7 +6975,7 @@

Functions

- +
@@ -6990,7 +6990,7 @@

Functions

-

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

+

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

@@ -7020,7 +7020,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -7035,7 +7035,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -7050,7 +7050,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -7065,7 +7065,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -7080,7 +7080,7 @@

Functions

- +
@@ -7140,7 +7140,7 @@

Functions

- +
@@ -7155,7 +7155,7 @@

Functions

-

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

+

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

@@ -7170,7 +7170,7 @@

Functions

- +
@@ -7185,7 +7185,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7200,7 +7200,7 @@

Functions

- +
@@ -7215,7 +7215,7 @@

Functions

- +
@@ -7260,7 +7260,7 @@

Functions

- +
@@ -7275,7 +7275,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7290,7 +7290,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7320,7 +7320,7 @@

Functions

- +
@@ -7335,7 +7335,7 @@

Functions

- +
@@ -7350,7 +7350,7 @@

Functions

- +
@@ -7380,7 +7380,7 @@

Functions

- +
@@ -7395,7 +7395,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7410,7 +7410,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7455,7 +7455,7 @@

Functions

- +
@@ -7470,7 +7470,7 @@

Functions

- +
@@ -7485,7 +7485,7 @@

Functions

- +
@@ -7500,7 +7500,7 @@

Functions

- +
@@ -7515,7 +7515,7 @@

Functions

- +
@@ -7530,7 +7530,7 @@

Functions

- +
@@ -7545,7 +7545,7 @@

Functions

- +
@@ -7560,7 +7560,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7575,7 +7575,7 @@

Functions

- +
@@ -7590,7 +7590,7 @@

Functions

- +
@@ -7605,7 +7605,7 @@

Functions

- +
@@ -7620,7 +7620,7 @@

Functions

- +
@@ -7635,7 +7635,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7650,7 +7650,7 @@

Functions

- +
@@ -7665,7 +7665,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7680,7 +7680,7 @@

Functions

- +
@@ -7695,7 +7695,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7740,7 +7740,7 @@

Functions

- +
@@ -7785,7 +7785,7 @@

Functions

- +
@@ -7800,7 +7800,7 @@

Functions

- +
@@ -7815,7 +7815,7 @@

Functions

- +
@@ -7830,7 +7830,7 @@

Functions

- +
@@ -7845,7 +7845,7 @@

Functions

- +
@@ -7860,7 +7860,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7875,7 +7875,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7890,7 +7890,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -7905,7 +7905,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -7920,7 +7920,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -7935,7 +7935,7 @@

Functions

- +
@@ -7950,7 +7950,7 @@

Functions

- +
@@ -7965,7 +7965,7 @@

Functions

- +
@@ -7995,7 +7995,7 @@

Functions

- +
@@ -8010,7 +8010,7 @@

Functions

-
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

+
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

@@ -8025,7 +8025,7 @@

Functions

-

Sets type of exact appearance and interaction model of this widget.

+

Sets type of exact appearance and interaction model of this widget.

@@ -8040,7 +8040,7 @@

Functions

-

Sets a listener to be invoked when the DatePicker dialog visibility is changing.

+

Sets a listener to be invoked when the DatePicker dialog visibility is changing.

@@ -8055,7 +8055,7 @@

Functions

-
fun setDateRegex(regex: String)

Representation of dates and times is an international standard covering the exchange of date- and time-related data. The method uses the ISO 8601 standard.

+
fun setDateRegex(regex: String)

Representation of dates and times is an international standard covering the exchange of date- and time-related data. The method uses the ISO 8601 standard.

@@ -8070,7 +8070,7 @@

Functions

- +
@@ -8085,7 +8085,7 @@

Functions

- +
@@ -8100,7 +8100,7 @@

Functions

- +
@@ -8115,7 +8115,7 @@

Functions

- +
@@ -8130,7 +8130,7 @@

Functions

- +
@@ -8145,7 +8145,7 @@

Functions

- +
@@ -8160,7 +8160,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8175,7 +8175,7 @@

Functions

-
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

+
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

@@ -8205,7 +8205,7 @@

Functions

-

Defines if data requires tokenization.

+

Defines if data requires tokenization.

@@ -8220,7 +8220,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8235,7 +8235,7 @@

Functions

-
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -8250,7 +8250,7 @@

Functions

- +
@@ -8265,7 +8265,7 @@

Functions

- +
@@ -8310,7 +8310,7 @@

Functions

- +
@@ -8325,7 +8325,7 @@

Functions

- +
@@ -8340,7 +8340,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8370,7 +8370,7 @@

Functions

- +
@@ -8385,7 +8385,7 @@

Functions

- +
@@ -8400,7 +8400,7 @@

Functions

- +
@@ -8415,7 +8415,7 @@

Functions

-
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

+
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

@@ -8430,7 +8430,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8445,7 +8445,7 @@

Functions

- +
@@ -8460,7 +8460,7 @@

Functions

- +
@@ -8475,7 +8475,7 @@

Functions

- +
@@ -8490,7 +8490,7 @@

Functions

-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8505,7 +8505,7 @@

Functions

-

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

+

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

@@ -8520,7 +8520,7 @@

Functions

- +
@@ -8535,7 +8535,7 @@

Functions

- +
@@ -8550,7 +8550,7 @@

Functions

- +
@@ -8565,7 +8565,7 @@

Functions

- +
@@ -8580,7 +8580,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8595,7 +8595,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8610,7 +8610,7 @@

Functions

-
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

+
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

@@ -8655,7 +8655,7 @@

Functions

- +
@@ -8670,7 +8670,7 @@

Functions

-
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

+
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

@@ -8685,7 +8685,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8700,7 +8700,7 @@

Functions

- +
@@ -8715,7 +8715,7 @@

Functions

-
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

+
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

@@ -8730,7 +8730,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8745,7 +8745,7 @@

Functions

- +
@@ -8760,7 +8760,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8775,7 +8775,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8790,7 +8790,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8805,7 +8805,7 @@

Functions

- +
@@ -8820,7 +8820,7 @@

Functions

- +
@@ -8835,7 +8835,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8850,7 +8850,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8865,7 +8865,7 @@

Functions

- +
@@ -8880,7 +8880,7 @@

Functions

- +
@@ -8895,7 +8895,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8910,7 +8910,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8925,7 +8925,7 @@

Functions

- +
@@ -8940,7 +8940,7 @@

Functions

-
fun setMaxDate(date: VGSDate)

Set maximum date allowed

+
fun setMaxDate(date: VGSDate)

Set maximum date allowed

@@ -8955,7 +8955,7 @@

Functions

-
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

+
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

@@ -8970,7 +8970,7 @@

Functions

- +
@@ -8985,7 +8985,7 @@

Functions

-
fun setMinDate(date: VGSDate)

Set minimum date allowed

+
fun setMinDate(date: VGSDate)

Set minimum date allowed

@@ -9000,7 +9000,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -9015,7 +9015,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -9030,7 +9030,7 @@

Functions

-
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

+
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

@@ -9045,7 +9045,7 @@

Functions

- +
@@ -9060,7 +9060,7 @@

Functions

- +
@@ -9075,7 +9075,7 @@

Functions

- +
@@ -9165,7 +9165,7 @@

Functions

- +
@@ -9180,7 +9180,7 @@

Functions

- +
@@ -9195,7 +9195,7 @@

Functions

- +
@@ -9210,7 +9210,7 @@

Functions

- +
@@ -9225,7 +9225,7 @@

Functions

- +
@@ -9240,7 +9240,7 @@

Functions

- +
@@ -9255,7 +9255,7 @@

Functions

-

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

+

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

@@ -9270,7 +9270,7 @@

Functions

-

This method adds a listener whose methods are called whenever VGS secure field state changes.

+

This method adds a listener whose methods are called whenever VGS secure field state changes.

@@ -9300,7 +9300,7 @@

Functions

- +
@@ -9315,7 +9315,7 @@

Functions

- +
@@ -9330,7 +9330,7 @@

Functions

- +
@@ -9360,7 +9360,7 @@

Functions

- +
@@ -9375,7 +9375,7 @@

Functions

- +
@@ -9390,7 +9390,7 @@

Functions

- +
@@ -9405,7 +9405,7 @@

Functions

- +
@@ -9420,7 +9420,7 @@

Functions

- +
@@ -9435,7 +9435,7 @@

Functions

- +
@@ -9450,7 +9450,7 @@

Functions

- +
@@ -9465,7 +9465,7 @@

Functions

- +
@@ -9480,7 +9480,7 @@

Functions

-

Representation of date and times which will be sent to the Vault Proxy Server. The method uses the ISO 8601 standard.

+

Representation of date and times which will be sent to the Vault Proxy Server. The method uses the ISO 8601 standard.

@@ -9495,7 +9495,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9525,7 +9525,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9540,7 +9540,7 @@

Functions

- +
@@ -9555,7 +9555,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9570,7 +9570,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9585,7 +9585,7 @@

Functions

- +
@@ -9600,7 +9600,7 @@

Functions

- +
@@ -9615,7 +9615,7 @@

Functions

- +
@@ -9630,7 +9630,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9645,7 +9645,7 @@

Functions

- +
@@ -9660,7 +9660,7 @@

Functions

- +
@@ -9675,7 +9675,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9690,7 +9690,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9705,7 +9705,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9720,7 +9720,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9735,7 +9735,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9750,7 +9750,7 @@

Functions

- +
@@ -9765,7 +9765,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9780,7 +9780,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9795,7 +9795,7 @@

Functions

- +
@@ -9810,7 +9810,7 @@

Functions

- +
@@ -9825,7 +9825,7 @@

Functions

- +
@@ -9840,7 +9840,7 @@

Functions

- +
@@ -9855,7 +9855,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9870,7 +9870,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9885,7 +9885,7 @@

Functions

- +
@@ -9900,7 +9900,7 @@

Functions

- +
@@ -9915,7 +9915,7 @@

Functions

- +
@@ -9930,7 +9930,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -9945,7 +9945,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -9960,7 +9960,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -9975,7 +9975,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -9990,7 +9990,7 @@

Functions

-
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

+
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

@@ -10005,7 +10005,7 @@

Functions

-
fun setSerializer(serializer: FieldDataSerializer<*, *>?)

Sets output data serializers, which will serialize data before send it to back-end.

+
fun setSerializer(serializer: FieldDataSerializer<*, *>?)

Sets output data serializers, which will serialize data before send it to back-end.

@@ -10020,7 +10020,7 @@

Functions

-
fun setSerializers(serializers: List<FieldDataSerializer<*, *>>?)

Sets output data serializers, which will serialize data before send it to back-end.

+
fun setSerializers(serializers: List<FieldDataSerializer<*, *>>?)

Sets output data serializers, which will serialize data before send it to back-end.

@@ -10035,7 +10035,7 @@

Functions

-
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

+
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

@@ -10050,7 +10050,7 @@

Functions

- +
@@ -10065,7 +10065,7 @@

Functions

- +
@@ -10080,7 +10080,7 @@

Functions

- +
@@ -10095,7 +10095,7 @@

Functions

- +
@@ -10110,7 +10110,7 @@

Functions

- +
@@ -10125,7 +10125,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -10140,7 +10140,7 @@

Functions

-
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

+
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

@@ -10155,7 +10155,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10170,7 +10170,7 @@

Functions

-
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

+
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

@@ -10185,7 +10185,7 @@

Functions

-
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

+
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

@@ -10200,7 +10200,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10215,7 +10215,7 @@

Functions

-
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

+
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

@@ -10230,7 +10230,7 @@

Functions

- +
@@ -10245,7 +10245,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10260,7 +10260,7 @@

Functions

- +
@@ -10275,7 +10275,7 @@

Functions

- +
@@ -10290,7 +10290,7 @@

Functions

- +
@@ -10305,7 +10305,7 @@

Functions

- +
@@ -10320,7 +10320,7 @@

Functions

- +
@@ -10335,7 +10335,7 @@

Functions

- +
@@ -10350,7 +10350,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10365,7 +10365,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10380,7 +10380,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10395,7 +10395,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

@@ -10410,7 +10410,7 @@

Functions

-

Sets the vault alias format in which data stores on a backend.

+

Sets the vault alias format in which data stores on a backend.

@@ -10425,7 +10425,7 @@

Functions

-

Sets the vault storage type for storing.

+

Sets the vault storage type for storing.

@@ -10440,7 +10440,7 @@

Functions

- +
@@ -10455,7 +10455,7 @@

Functions

- +
@@ -10470,7 +10470,7 @@

Functions

- +
@@ -10485,7 +10485,7 @@

Functions

- +
@@ -10500,7 +10500,7 @@

Functions

- +
@@ -10515,7 +10515,7 @@

Functions

- +
@@ -10530,7 +10530,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10545,7 +10545,7 @@

Functions

- +
@@ -10560,7 +10560,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10590,7 +10590,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10605,7 +10605,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10620,7 +10620,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10650,7 +10650,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10680,7 +10680,7 @@

Functions

-
fun showDatePickerDialog(dialogMode: DatePickerMode = DatePickerMode.DEFAULT, ignoreFieldMode: Boolean = false)

Start the DatePicker dialog and display it on screen.

+
fun showDatePickerDialog(dialogMode: DatePickerMode = DatePickerMode.DEFAULT, ignoreFieldMode: Boolean = false)

Start the DatePicker dialog and display it on screen.

@@ -10695,7 +10695,7 @@

Functions

-

Explicitly request that the current input method's soft input area be shown to the user, if needed.

+

Explicitly request that the current input method's soft input area be shown to the user, if needed.

@@ -10710,7 +10710,7 @@

Functions

- +
@@ -10740,7 +10740,7 @@

Functions

- +
@@ -10755,7 +10755,7 @@

Functions

- +
@@ -10770,7 +10770,7 @@

Functions

- +
@@ -10785,7 +10785,7 @@

Functions

- +
@@ -10800,7 +10800,7 @@

Functions

- +
@@ -10815,7 +10815,7 @@

Functions

- +
@@ -10830,7 +10830,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10845,7 +10845,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10875,7 +10875,7 @@

Functions

- +
@@ -10890,7 +10890,7 @@

Functions

- +
@@ -10905,7 +10905,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10920,7 +10920,7 @@

Functions

- +
@@ -10950,7 +10950,7 @@

Functions

- +
@@ -10965,7 +10965,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-range-date-edit-text/set-max-date.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-range-date-edit-text/set-max-date.html index f64490995..4e86be9d6 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-range-date-edit-text/set-max-date.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-range-date-edit-text/set-max-date.html @@ -66,7 +66,7 @@

setMaxDate

-
fun setMaxDate(date: VGSDate)

Set maximum date allowed

+
fun setMaxDate(date: VGSDate)

Set maximum date allowed

-
fun setMinDate(date: VGSDate)

Set minimum date allowed

+
fun setMinDate(date: VGSDate)

Set minimum date allowed

-

Return symbol that will divide groups of digits in the number.

Return

divider symbol

+

Return symbol that will divide groups of digits in the number.

Return

divider symbol

-

Return symbol that will divide groups of digits in the number before submitting on Proxy.

Return

divider symbol

+

Return symbol that will divide groups of digits in the number before submitting on Proxy.

Return

divider symbol

-

It return current state of the field.

Return

current state.

+

It return current state of the field.

Return

current state.

- +
@@ -150,7 +150,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -165,7 +165,7 @@

Functions

- +
@@ -195,7 +195,7 @@

Functions

- +
@@ -210,7 +210,7 @@

Functions

-

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

+

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

@@ -225,7 +225,7 @@

Functions

- +
@@ -240,7 +240,7 @@

Functions

- +
@@ -255,7 +255,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -285,7 +285,7 @@

Functions

- +
@@ -300,7 +300,7 @@

Functions

- +
@@ -315,7 +315,7 @@

Functions

- +
@@ -345,7 +345,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -360,7 +360,7 @@

Functions

- +
@@ -375,7 +375,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -390,7 +390,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -405,7 +405,7 @@

Functions

- +
@@ -420,7 +420,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -435,7 +435,7 @@

Functions

- +
@@ -450,7 +450,7 @@

Functions

- +
@@ -465,7 +465,7 @@

Functions

- +
@@ -480,7 +480,7 @@

Functions

- +
@@ -495,7 +495,7 @@

Functions

-

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

+

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

@@ -510,7 +510,7 @@

Functions

- +
@@ -525,7 +525,7 @@

Functions

- +
@@ -570,7 +570,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -600,7 +600,7 @@

Functions

- +
@@ -630,7 +630,7 @@

Functions

- +
@@ -645,7 +645,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -660,7 +660,7 @@

Functions

- +
@@ -675,7 +675,7 @@

Functions

- +
@@ -690,7 +690,7 @@

Functions

- +
@@ -705,7 +705,7 @@

Functions

- +
@@ -765,7 +765,7 @@

Functions

- +
@@ -840,7 +840,7 @@

Functions

- +
@@ -900,7 +900,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -915,7 +915,7 @@

Functions

- +
@@ -930,7 +930,7 @@

Functions

- +
@@ -945,7 +945,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -960,7 +960,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -990,7 +990,7 @@

Functions

- +
@@ -1035,7 +1035,7 @@

Functions

- +
@@ -1200,7 +1200,7 @@

Functions

- +
@@ -1260,7 +1260,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1275,7 +1275,7 @@

Functions

- +
@@ -1290,7 +1290,7 @@

Functions

-
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

+
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

@@ -1305,7 +1305,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1335,7 +1335,7 @@

Functions

- +
@@ -1365,7 +1365,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1380,7 +1380,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1395,7 +1395,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1425,7 +1425,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1440,7 +1440,7 @@

Functions

- +
@@ -1455,7 +1455,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1485,7 +1485,7 @@

Functions

- +
@@ -1530,7 +1530,7 @@

Functions

- +
@@ -1545,7 +1545,7 @@

Functions

- +
@@ -1560,7 +1560,7 @@

Functions

- +
@@ -1575,7 +1575,7 @@

Functions

- +
@@ -1590,7 +1590,7 @@

Functions

- +
@@ -1605,7 +1605,7 @@

Functions

- +
@@ -1620,7 +1620,7 @@

Functions

- +
@@ -1635,7 +1635,7 @@

Functions

- +
@@ -1650,7 +1650,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1665,7 +1665,7 @@

Functions

- +
@@ -1680,7 +1680,7 @@

Functions

- +
@@ -1695,7 +1695,7 @@

Functions

- +
@@ -1710,7 +1710,7 @@

Functions

- +
@@ -1725,7 +1725,7 @@

Functions

- +
@@ -1740,7 +1740,7 @@

Functions

- +
@@ -1755,7 +1755,7 @@

Functions

- +
@@ -1770,7 +1770,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1785,7 +1785,7 @@

Functions

- +
@@ -1815,7 +1815,7 @@

Functions

- +
@@ -1830,7 +1830,7 @@

Functions

- +
@@ -1845,7 +1845,7 @@

Functions

- +
@@ -1860,7 +1860,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1875,7 +1875,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1890,7 +1890,7 @@

Functions

- +
@@ -1905,7 +1905,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1920,7 +1920,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1935,7 +1935,7 @@

Functions

- +
@@ -1965,7 +1965,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -1980,7 +1980,7 @@

Functions

- +
@@ -1995,7 +1995,7 @@

Functions

- +
@@ -2010,7 +2010,7 @@

Functions

- +
@@ -2025,7 +2025,7 @@

Functions

- +
@@ -2040,7 +2040,7 @@

Functions

- +
@@ -2055,7 +2055,7 @@

Functions

- +
@@ -2070,7 +2070,7 @@

Functions

- +
@@ -2085,7 +2085,7 @@

Functions

- +
@@ -2100,7 +2100,7 @@

Functions

- +
@@ -2115,7 +2115,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2130,7 +2130,7 @@

Functions

-

Return symbol that will divide groups of digits in the number.

+

Return symbol that will divide groups of digits in the number.

@@ -2145,7 +2145,7 @@

Functions

- +
@@ -2160,7 +2160,7 @@

Functions

- +
@@ -2175,7 +2175,7 @@

Functions

- +
@@ -2190,7 +2190,7 @@

Functions

- +
@@ -2205,7 +2205,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2220,7 +2220,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2235,7 +2235,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2250,7 +2250,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2265,7 +2265,7 @@

Functions

-
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

+
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

@@ -2280,7 +2280,7 @@

Functions

-

Gets the current field type of the InputFieldView.

+

Gets the current field type of the InputFieldView.

@@ -2295,7 +2295,7 @@

Functions

- +
@@ -2310,7 +2310,7 @@

Functions

- +
@@ -2325,7 +2325,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2340,7 +2340,7 @@

Functions

- +
@@ -2355,7 +2355,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2370,7 +2370,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2385,7 +2385,7 @@

Functions

- +
@@ -2400,7 +2400,7 @@

Functions

- +
@@ -2415,7 +2415,7 @@

Functions

- +
@@ -2430,7 +2430,7 @@

Functions

- +
@@ -2445,7 +2445,7 @@

Functions

- +
@@ -2460,7 +2460,7 @@

Functions

- +
@@ -2475,7 +2475,7 @@

Functions

-
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

+
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

@@ -2490,7 +2490,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2505,7 +2505,7 @@

Functions

- +
@@ -2520,7 +2520,7 @@

Functions

- +
@@ -2535,7 +2535,7 @@

Functions

- +
@@ -2550,7 +2550,7 @@

Functions

- +
@@ -2565,7 +2565,7 @@

Functions

- +
@@ -2580,7 +2580,7 @@

Functions

- +
@@ -2595,7 +2595,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2610,7 +2610,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2625,7 +2625,7 @@

Functions

- +
@@ -2640,7 +2640,7 @@

Functions

- +
@@ -2655,7 +2655,7 @@

Functions

- +
@@ -2670,7 +2670,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2685,7 +2685,7 @@

Functions

-

Get the type of the Input Method Editor (IME).

+

Get the type of the Input Method Editor (IME).

@@ -2700,7 +2700,7 @@

Functions

- +
@@ -2715,7 +2715,7 @@

Functions

- +
@@ -2730,7 +2730,7 @@

Functions

- +
@@ -2745,7 +2745,7 @@

Functions

-
open fun getInputType(): Int

Get the type of the editable content.

+
open fun getInputType(): Int

Get the type of the editable content.

@@ -2760,7 +2760,7 @@

Functions

- +
@@ -2775,7 +2775,7 @@

Functions

- +
@@ -2790,7 +2790,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2805,7 +2805,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2820,7 +2820,7 @@

Functions

- +
@@ -2835,7 +2835,7 @@

Functions

- +
@@ -2850,7 +2850,7 @@

Functions

- +
@@ -2865,7 +2865,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2880,7 +2880,7 @@

Functions

- +
@@ -2895,7 +2895,7 @@

Functions

- +
@@ -2910,7 +2910,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2925,7 +2925,7 @@

Functions

- +
@@ -2940,7 +2940,7 @@

Functions

- +
@@ -2955,7 +2955,7 @@

Functions

- +
@@ -2970,7 +2970,7 @@

Functions

- +
@@ -2985,7 +2985,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -3000,7 +3000,7 @@

Functions

- +
@@ -3015,7 +3015,7 @@

Functions

- +
@@ -3030,7 +3030,7 @@

Functions

- +
@@ -3045,7 +3045,7 @@

Functions

- +
@@ -3060,7 +3060,7 @@

Functions

- +
@@ -3075,7 +3075,7 @@

Functions

- +
@@ -3090,7 +3090,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3105,7 +3105,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3120,7 +3120,7 @@

Functions

- +
@@ -3135,7 +3135,7 @@

Functions

- +
@@ -3150,7 +3150,7 @@

Functions

- +
@@ -3165,7 +3165,7 @@

Functions

- +
@@ -3180,7 +3180,7 @@

Functions

- +
@@ -3195,7 +3195,7 @@

Functions

- +
@@ -3210,7 +3210,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3225,7 +3225,7 @@

Functions

- +
@@ -3240,7 +3240,7 @@

Functions

- +
@@ -3255,7 +3255,7 @@

Functions

- +
@@ -3270,7 +3270,7 @@

Functions

- +
@@ -3285,7 +3285,7 @@

Functions

-

Return symbol that will divide groups of digits in the number before submitting on Proxy.

+

Return symbol that will divide groups of digits in the number before submitting on Proxy.

@@ -3315,7 +3315,7 @@

Functions

- +
@@ -3420,7 +3420,7 @@

Functions

- +
@@ -3435,7 +3435,7 @@

Functions

- +
@@ -3450,7 +3450,7 @@

Functions

- +
@@ -3465,7 +3465,7 @@

Functions

- +
@@ -3480,7 +3480,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3495,7 +3495,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3510,7 +3510,7 @@

Functions

- +
@@ -3525,7 +3525,7 @@

Functions

- +
@@ -3540,7 +3540,7 @@

Functions

- +
@@ -3555,7 +3555,7 @@

Functions

- +
@@ -3570,7 +3570,7 @@

Functions

- +
@@ -3585,7 +3585,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3600,7 +3600,7 @@

Functions

- +
@@ -3615,7 +3615,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3630,7 +3630,7 @@

Functions

- +
@@ -3645,7 +3645,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3660,7 +3660,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3675,7 +3675,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3690,7 +3690,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3705,7 +3705,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3720,7 +3720,7 @@

Functions

- +
@@ -3735,7 +3735,7 @@

Functions

- +
@@ -3750,7 +3750,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3765,7 +3765,7 @@

Functions

- +
@@ -3780,7 +3780,7 @@

Functions

- +
@@ -3795,7 +3795,7 @@

Functions

- +
@@ -3810,7 +3810,7 @@

Functions

- +
@@ -3825,7 +3825,7 @@

Functions

- +
@@ -3840,7 +3840,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3855,7 +3855,7 @@

Functions

- +
@@ -3870,7 +3870,7 @@

Functions

-

It return current state of the field.

+

It return current state of the field.

@@ -3885,7 +3885,7 @@

Functions

- +
@@ -3900,7 +3900,7 @@

Functions

- +
@@ -3915,7 +3915,7 @@

Functions

- +
@@ -3930,7 +3930,7 @@

Functions

- +
@@ -3945,7 +3945,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -3960,7 +3960,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -3975,7 +3975,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -3990,7 +3990,7 @@

Functions

- +
@@ -4005,7 +4005,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -4020,7 +4020,7 @@

Functions

- +
@@ -4035,7 +4035,7 @@

Functions

- +
@@ -4050,7 +4050,7 @@

Functions

- +
@@ -4065,7 +4065,7 @@

Functions

- +
@@ -4080,7 +4080,7 @@

Functions

- +
@@ -4095,7 +4095,7 @@

Functions

- +
@@ -4110,7 +4110,7 @@

Functions

- +
@@ -4125,7 +4125,7 @@

Functions

- +
@@ -4140,7 +4140,7 @@

Functions

-
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

+
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

@@ -4155,7 +4155,7 @@

Functions

- +
@@ -4170,7 +4170,7 @@

Functions

- +
@@ -4185,7 +4185,7 @@

Functions

- +
@@ -4200,7 +4200,7 @@

Functions

- +
@@ -4215,7 +4215,7 @@

Functions

- +
@@ -4230,7 +4230,7 @@

Functions

- +
@@ -4245,7 +4245,7 @@

Functions

- +
@@ -4260,7 +4260,7 @@

Functions

- +
@@ -4275,7 +4275,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4290,7 +4290,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4305,7 +4305,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4320,7 +4320,7 @@

Functions

- +
@@ -4335,7 +4335,7 @@

Functions

- +
@@ -4350,7 +4350,7 @@

Functions

- +
@@ -4365,7 +4365,7 @@

Functions

- +
@@ -4380,7 +4380,7 @@

Functions

- +
@@ -4395,7 +4395,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4410,7 +4410,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4425,7 +4425,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4440,7 +4440,7 @@

Functions

- +
@@ -4470,7 +4470,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4485,7 +4485,7 @@

Functions

- +
@@ -4500,7 +4500,7 @@

Functions

- +
@@ -4515,7 +4515,7 @@

Functions

- +
@@ -4530,7 +4530,7 @@

Functions

- +
@@ -4545,7 +4545,7 @@

Functions

- +
@@ -4575,7 +4575,7 @@

Functions

- +
@@ -4590,7 +4590,7 @@

Functions

-

Request to hide the soft input window from the context of the window that is currently accepting input.

+

Request to hide the soft input window from the context of the window that is currently accepting input.

@@ -4605,7 +4605,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4620,7 +4620,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4680,7 +4680,7 @@

Functions

- +
@@ -4695,7 +4695,7 @@

Functions

- +
@@ -4710,7 +4710,7 @@

Functions

- +
@@ -4725,7 +4725,7 @@

Functions

- +
@@ -4740,7 +4740,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4755,7 +4755,7 @@

Functions

- +
@@ -4770,7 +4770,7 @@

Functions

- +
@@ -4785,7 +4785,7 @@

Functions

- +
@@ -4800,7 +4800,7 @@

Functions

- +
@@ -4815,7 +4815,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4830,7 +4830,7 @@

Functions

-

Returns true if view content same, false otherwise.

+

Returns true if view content same, false otherwise.

@@ -4845,7 +4845,7 @@

Functions

- +
@@ -4860,7 +4860,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4875,7 +4875,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4890,7 +4890,7 @@

Functions

- +
@@ -4905,7 +4905,7 @@

Functions

- +
@@ -4920,7 +4920,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4935,7 +4935,7 @@

Functions

- +
@@ -4950,7 +4950,7 @@

Functions

- +
@@ -4980,7 +4980,7 @@

Functions

- +
@@ -4995,7 +4995,7 @@

Functions

- +
@@ -5010,7 +5010,7 @@

Functions

- +
@@ -5025,7 +5025,7 @@

Functions

- +
@@ -5040,7 +5040,7 @@

Functions

- +
@@ -5055,7 +5055,7 @@

Functions

- +
@@ -5070,7 +5070,7 @@

Functions

- +
@@ -5085,7 +5085,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -5100,7 +5100,7 @@

Functions

- +
@@ -5115,7 +5115,7 @@

Functions

- +
@@ -5130,7 +5130,7 @@

Functions

- +
@@ -5145,7 +5145,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5160,7 +5160,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5175,7 +5175,7 @@

Functions

- +
@@ -5190,7 +5190,7 @@

Functions

- +
@@ -5205,7 +5205,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5220,7 +5220,7 @@

Functions

- +
@@ -5235,7 +5235,7 @@

Functions

- +
@@ -5250,7 +5250,7 @@

Functions

- +
@@ -5265,7 +5265,7 @@

Functions

- +
@@ -5280,7 +5280,7 @@

Functions

- +
@@ -5295,7 +5295,7 @@

Functions

- +
@@ -5310,7 +5310,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5325,7 +5325,7 @@

Functions

- +
@@ -5340,7 +5340,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5355,7 +5355,7 @@

Functions

- +
@@ -5370,7 +5370,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5385,7 +5385,7 @@

Functions

-
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

+
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

@@ -5400,7 +5400,7 @@

Functions

- +
@@ -5415,7 +5415,7 @@

Functions

- +
@@ -5430,7 +5430,7 @@

Functions

- +
@@ -5445,7 +5445,7 @@

Functions

- +
@@ -5460,7 +5460,7 @@

Functions

- +
@@ -5475,7 +5475,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5490,7 +5490,7 @@

Functions

- +
@@ -5505,7 +5505,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5520,7 +5520,7 @@

Functions

- +
@@ -5535,7 +5535,7 @@

Functions

- +
@@ -5550,7 +5550,7 @@

Functions

- +
@@ -5565,7 +5565,7 @@

Functions

- +
@@ -5580,7 +5580,7 @@

Functions

- +
@@ -5595,7 +5595,7 @@

Functions

-

Returns the validation status for this view.

+

Returns the validation status for this view.

@@ -5610,7 +5610,7 @@

Functions

- +
@@ -5625,7 +5625,7 @@

Functions

- +
@@ -5640,7 +5640,7 @@

Functions

- +
@@ -5670,7 +5670,7 @@

Functions

- +
@@ -5700,7 +5700,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5730,7 +5730,7 @@

Functions

- +
@@ -5745,7 +5745,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5760,7 +5760,7 @@

Functions

- +
@@ -5775,7 +5775,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5790,7 +5790,7 @@

Functions

- +
@@ -5820,7 +5820,7 @@

Functions

- +
@@ -5835,7 +5835,7 @@

Functions

- +
@@ -5850,7 +5850,7 @@

Functions

- +
@@ -5865,7 +5865,7 @@

Functions

- +
@@ -5880,7 +5880,7 @@

Functions

- +
@@ -5895,7 +5895,7 @@

Functions

- +
@@ -5925,7 +5925,7 @@

Functions

- +
@@ -5940,7 +5940,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -5955,7 +5955,7 @@

Functions

- +
@@ -5970,7 +5970,7 @@

Functions

- +
@@ -5985,7 +5985,7 @@

Functions

- +
@@ -6000,7 +6000,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -6015,7 +6015,7 @@

Functions

- +
@@ -6030,7 +6030,7 @@

Functions

- +
@@ -6045,7 +6045,7 @@

Functions

- +
@@ -6060,7 +6060,7 @@

Functions

- +
@@ -6075,7 +6075,7 @@

Functions

- +
@@ -6135,7 +6135,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -6150,7 +6150,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6270,7 +6270,7 @@

Functions

- +
@@ -6285,7 +6285,7 @@

Functions

- +
@@ -6300,7 +6300,7 @@

Functions

- +
@@ -6315,7 +6315,7 @@

Functions

- +
@@ -6330,7 +6330,7 @@

Functions

- +
@@ -6345,7 +6345,7 @@

Functions

- +
@@ -6360,7 +6360,7 @@

Functions

- +
@@ -6375,7 +6375,7 @@

Functions

- +
@@ -6390,7 +6390,7 @@

Functions

- +
@@ -6420,7 +6420,7 @@

Functions

- +
@@ -6435,7 +6435,7 @@

Functions

- +
@@ -6450,7 +6450,7 @@

Functions

- +
@@ -6480,7 +6480,7 @@

Functions

- +
@@ -6510,7 +6510,7 @@

Functions

- +
@@ -6525,7 +6525,7 @@

Functions

- +
@@ -6540,7 +6540,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6555,7 +6555,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6570,7 +6570,7 @@

Functions

- +
@@ -6585,7 +6585,7 @@

Functions

- +
@@ -6600,7 +6600,7 @@

Functions

- +
@@ -6615,7 +6615,7 @@

Functions

- +
@@ -6630,7 +6630,7 @@

Functions

- +
@@ -6645,7 +6645,7 @@

Functions

- +
@@ -6675,7 +6675,7 @@

Functions

- +
@@ -6690,7 +6690,7 @@

Functions

- +
@@ -6705,7 +6705,7 @@

Functions

- +
@@ -6720,7 +6720,7 @@

Functions

- +
@@ -6735,7 +6735,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6750,7 +6750,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6765,7 +6765,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6780,7 +6780,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6795,7 +6795,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6810,7 +6810,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6825,7 +6825,7 @@

Functions

- +
@@ -6840,7 +6840,7 @@

Functions

- +
@@ -6870,7 +6870,7 @@

Functions

- +
@@ -6885,7 +6885,7 @@

Functions

- +
@@ -6900,7 +6900,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6915,7 +6915,7 @@

Functions

- +
@@ -6930,7 +6930,7 @@

Functions

- +
@@ -6945,7 +6945,7 @@

Functions

- +
@@ -6960,7 +6960,7 @@

Functions

- +
@@ -6975,7 +6975,7 @@

Functions

- +
@@ -6990,7 +6990,7 @@

Functions

-

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

+

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

@@ -7020,7 +7020,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -7035,7 +7035,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -7050,7 +7050,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -7065,7 +7065,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -7080,7 +7080,7 @@

Functions

- +
@@ -7140,7 +7140,7 @@

Functions

- +
@@ -7155,7 +7155,7 @@

Functions

-

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

+

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

@@ -7170,7 +7170,7 @@

Functions

- +
@@ -7185,7 +7185,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7200,7 +7200,7 @@

Functions

- +
@@ -7215,7 +7215,7 @@

Functions

- +
@@ -7260,7 +7260,7 @@

Functions

- +
@@ -7275,7 +7275,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7290,7 +7290,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7320,7 +7320,7 @@

Functions

- +
@@ -7335,7 +7335,7 @@

Functions

- +
@@ -7350,7 +7350,7 @@

Functions

- +
@@ -7380,7 +7380,7 @@

Functions

- +
@@ -7395,7 +7395,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7410,7 +7410,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7455,7 +7455,7 @@

Functions

- +
@@ -7470,7 +7470,7 @@

Functions

- +
@@ -7485,7 +7485,7 @@

Functions

- +
@@ -7500,7 +7500,7 @@

Functions

- +
@@ -7515,7 +7515,7 @@

Functions

- +
@@ -7530,7 +7530,7 @@

Functions

- +
@@ -7545,7 +7545,7 @@

Functions

- +
@@ -7560,7 +7560,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7575,7 +7575,7 @@

Functions

- +
@@ -7590,7 +7590,7 @@

Functions

- +
@@ -7605,7 +7605,7 @@

Functions

- +
@@ -7620,7 +7620,7 @@

Functions

- +
@@ -7635,7 +7635,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7650,7 +7650,7 @@

Functions

- +
@@ -7665,7 +7665,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7680,7 +7680,7 @@

Functions

- +
@@ -7695,7 +7695,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7740,7 +7740,7 @@

Functions

- +
@@ -7785,7 +7785,7 @@

Functions

- +
@@ -7800,7 +7800,7 @@

Functions

- +
@@ -7815,7 +7815,7 @@

Functions

- +
@@ -7830,7 +7830,7 @@

Functions

- +
@@ -7845,7 +7845,7 @@

Functions

- +
@@ -7860,7 +7860,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7875,7 +7875,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7890,7 +7890,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -7905,7 +7905,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -7920,7 +7920,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -7935,7 +7935,7 @@

Functions

- +
@@ -7950,7 +7950,7 @@

Functions

- +
@@ -7965,7 +7965,7 @@

Functions

- +
@@ -7995,7 +7995,7 @@

Functions

- +
@@ -8010,7 +8010,7 @@

Functions

-
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

+
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

@@ -8025,7 +8025,7 @@

Functions

- +
@@ -8040,7 +8040,7 @@

Functions

- +
@@ -8055,7 +8055,7 @@

Functions

-
fun setDivider(char: Char?)

Sets the symbol that will divide groups of digits in the number. The divider make impact only on UI. 000 00 0000

+
fun setDivider(char: Char?)

Sets the symbol that will divide groups of digits in the number. The divider make impact only on UI. 000 00 0000

@@ -8070,7 +8070,7 @@

Functions

- +
@@ -8085,7 +8085,7 @@

Functions

- +
@@ -8100,7 +8100,7 @@

Functions

- +
@@ -8115,7 +8115,7 @@

Functions

- +
@@ -8130,7 +8130,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8145,7 +8145,7 @@

Functions

-
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

+
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

@@ -8175,7 +8175,7 @@

Functions

-

Defines if data requires tokenization.

+

Defines if data requires tokenization.

@@ -8190,7 +8190,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8205,7 +8205,7 @@

Functions

-
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -8220,7 +8220,7 @@

Functions

- +
@@ -8235,7 +8235,7 @@

Functions

- +
@@ -8280,7 +8280,7 @@

Functions

- +
@@ -8295,7 +8295,7 @@

Functions

- +
@@ -8310,7 +8310,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8340,7 +8340,7 @@

Functions

- +
@@ -8355,7 +8355,7 @@

Functions

- +
@@ -8370,7 +8370,7 @@

Functions

- +
@@ -8385,7 +8385,7 @@

Functions

-
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

+
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

@@ -8400,7 +8400,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8415,7 +8415,7 @@

Functions

- +
@@ -8430,7 +8430,7 @@

Functions

- +
@@ -8445,7 +8445,7 @@

Functions

- +
@@ -8460,7 +8460,7 @@

Functions

-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8475,7 +8475,7 @@

Functions

-

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

+

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

@@ -8490,7 +8490,7 @@

Functions

- +
@@ -8505,7 +8505,7 @@

Functions

- +
@@ -8520,7 +8520,7 @@

Functions

- +
@@ -8535,7 +8535,7 @@

Functions

- +
@@ -8550,7 +8550,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8565,7 +8565,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8580,7 +8580,7 @@

Functions

-
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

+
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

@@ -8625,7 +8625,7 @@

Functions

- +
@@ -8640,7 +8640,7 @@

Functions

-
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

+
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

@@ -8655,7 +8655,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8670,7 +8670,7 @@

Functions

- +
@@ -8685,7 +8685,7 @@

Functions

-
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

+
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

@@ -8700,7 +8700,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8715,7 +8715,7 @@

Functions

- +
@@ -8730,7 +8730,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8745,7 +8745,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8760,7 +8760,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8775,7 +8775,7 @@

Functions

- +
@@ -8790,7 +8790,7 @@

Functions

- +
@@ -8805,7 +8805,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8820,7 +8820,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8835,7 +8835,7 @@

Functions

- +
@@ -8850,7 +8850,7 @@

Functions

- +
@@ -8865,7 +8865,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8880,7 +8880,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8895,7 +8895,7 @@

Functions

- +
@@ -8910,7 +8910,7 @@

Functions

-
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

+
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

@@ -8925,7 +8925,7 @@

Functions

- +
@@ -8940,7 +8940,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -8955,7 +8955,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -8970,7 +8970,7 @@

Functions

-
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

+
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

@@ -8985,7 +8985,7 @@

Functions

- +
@@ -9000,7 +9000,7 @@

Functions

- +
@@ -9015,7 +9015,7 @@

Functions

- +
@@ -9105,7 +9105,7 @@

Functions

- +
@@ -9120,7 +9120,7 @@

Functions

- +
@@ -9135,7 +9135,7 @@

Functions

- +
@@ -9150,7 +9150,7 @@

Functions

- +
@@ -9165,7 +9165,7 @@

Functions

- +
@@ -9180,7 +9180,7 @@

Functions

- +
@@ -9195,7 +9195,7 @@

Functions

-

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

+

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

@@ -9210,7 +9210,7 @@

Functions

-

This method adds a listener whose methods are called whenever VGS secure field state changes.

+

This method adds a listener whose methods are called whenever VGS secure field state changes.

@@ -9240,7 +9240,7 @@

Functions

- +
@@ -9255,7 +9255,7 @@

Functions

- +
@@ -9270,7 +9270,7 @@

Functions

- +
@@ -9300,7 +9300,7 @@

Functions

- +
@@ -9315,7 +9315,7 @@

Functions

- +
@@ -9330,7 +9330,7 @@

Functions

- +
@@ -9345,7 +9345,7 @@

Functions

- +
@@ -9360,7 +9360,7 @@

Functions

- +
@@ -9375,7 +9375,7 @@

Functions

- +
@@ -9390,7 +9390,7 @@

Functions

- +
@@ -9405,7 +9405,7 @@

Functions

- +
@@ -9420,7 +9420,7 @@

Functions

-

Sets the symbol that will divide groups of digits in the number before submit it. The divider has no impact on UI. 000 00 0000

+

Sets the symbol that will divide groups of digits in the number before submit it. The divider has no impact on UI. 000 00 0000

@@ -9435,7 +9435,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9465,7 +9465,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9480,7 +9480,7 @@

Functions

- +
@@ -9495,7 +9495,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9510,7 +9510,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9525,7 +9525,7 @@

Functions

- +
@@ -9540,7 +9540,7 @@

Functions

- +
@@ -9555,7 +9555,7 @@

Functions

- +
@@ -9570,7 +9570,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9585,7 +9585,7 @@

Functions

- +
@@ -9600,7 +9600,7 @@

Functions

- +
@@ -9615,7 +9615,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9630,7 +9630,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9645,7 +9645,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9660,7 +9660,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9675,7 +9675,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9690,7 +9690,7 @@

Functions

- +
@@ -9705,7 +9705,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9720,7 +9720,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9735,7 +9735,7 @@

Functions

- +
@@ -9750,7 +9750,7 @@

Functions

- +
@@ -9765,7 +9765,7 @@

Functions

- +
@@ -9780,7 +9780,7 @@

Functions

- +
@@ -9795,7 +9795,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9810,7 +9810,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9825,7 +9825,7 @@

Functions

- +
@@ -9840,7 +9840,7 @@

Functions

- +
@@ -9855,7 +9855,7 @@

Functions

- +
@@ -9870,7 +9870,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -9885,7 +9885,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -9900,7 +9900,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -9915,7 +9915,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -9930,7 +9930,7 @@

Functions

-
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

+
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

@@ -9945,7 +9945,7 @@

Functions

-
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

+
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

@@ -9960,7 +9960,7 @@

Functions

- +
@@ -9975,7 +9975,7 @@

Functions

- +
@@ -9990,7 +9990,7 @@

Functions

- +
@@ -10005,7 +10005,7 @@

Functions

- +
@@ -10020,7 +10020,7 @@

Functions

- +
@@ -10035,7 +10035,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -10050,7 +10050,7 @@

Functions

-
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

+
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

@@ -10065,7 +10065,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10080,7 +10080,7 @@

Functions

-
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

+
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

@@ -10095,7 +10095,7 @@

Functions

-
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

+
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

@@ -10110,7 +10110,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10125,7 +10125,7 @@

Functions

-
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

+
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

@@ -10140,7 +10140,7 @@

Functions

- +
@@ -10155,7 +10155,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10170,7 +10170,7 @@

Functions

- +
@@ -10185,7 +10185,7 @@

Functions

- +
@@ -10200,7 +10200,7 @@

Functions

- +
@@ -10215,7 +10215,7 @@

Functions

- +
@@ -10230,7 +10230,7 @@

Functions

- +
@@ -10245,7 +10245,7 @@

Functions

- +
@@ -10260,7 +10260,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10275,7 +10275,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10290,7 +10290,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10305,7 +10305,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

@@ -10320,7 +10320,7 @@

Functions

-

Sets the vault alias format in which data stores on a backend.

+

Sets the vault alias format in which data stores on a backend.

@@ -10335,7 +10335,7 @@

Functions

-

Sets the vault storage type for storing.

+

Sets the vault storage type for storing.

@@ -10350,7 +10350,7 @@

Functions

- +
@@ -10365,7 +10365,7 @@

Functions

- +
@@ -10380,7 +10380,7 @@

Functions

- +
@@ -10395,7 +10395,7 @@

Functions

- +
@@ -10410,7 +10410,7 @@

Functions

- +
@@ -10425,7 +10425,7 @@

Functions

- +
@@ -10440,7 +10440,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10455,7 +10455,7 @@

Functions

- +
@@ -10470,7 +10470,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10500,7 +10500,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10515,7 +10515,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10530,7 +10530,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10560,7 +10560,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10590,7 +10590,7 @@

Functions

-

Explicitly request that the current input method's soft input area be shown to the user, if needed.

+

Explicitly request that the current input method's soft input area be shown to the user, if needed.

@@ -10605,7 +10605,7 @@

Functions

- +
@@ -10635,7 +10635,7 @@

Functions

- +
@@ -10650,7 +10650,7 @@

Functions

- +
@@ -10665,7 +10665,7 @@

Functions

- +
@@ -10680,7 +10680,7 @@

Functions

- +
@@ -10695,7 +10695,7 @@

Functions

- +
@@ -10710,7 +10710,7 @@

Functions

- +
@@ -10725,7 +10725,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10740,7 +10740,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10770,7 +10770,7 @@

Functions

- +
@@ -10785,7 +10785,7 @@

Functions

- +
@@ -10800,7 +10800,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10815,7 +10815,7 @@

Functions

- +
@@ -10845,7 +10845,7 @@

Functions

- +
@@ -10860,7 +10860,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-s-s-n-edit-text/set-divider.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-s-s-n-edit-text/set-divider.html index 81b94f011..7365f191a 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-s-s-n-edit-text/set-divider.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-s-s-n-edit-text/set-divider.html @@ -66,7 +66,7 @@

setDivider

-
fun setDivider(char: Char?)

Sets the symbol that will divide groups of digits in the number. The divider make impact only on UI. 000 00 0000

Parameters

char

The divider symbol.

+
fun setDivider(char: Char?)

Sets the symbol that will divide groups of digits in the number. The divider make impact only on UI. 000 00 0000

Parameters

char

The divider symbol.

-

Defines if data requires tokenization.

Parameters

isEnabled

Is tokenization enabled.

+

Defines if data requires tokenization.

Parameters

isEnabled

Is tokenization enabled.

-

Sets the symbol that will divide groups of digits in the number before submit it. The divider has no impact on UI. 000 00 0000

Parameters

char

The divider symbol.

+

Sets the symbol that will divide groups of digits in the number before submit it. The divider has no impact on UI. 000 00 0000

Parameters

char

The divider symbol.

-

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

+

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

-

Sets the vault storage type for storing.

Parameters

type

The VGS storage type.

+

Sets the vault storage type for storing.

Parameters

type

The VGS storage type.

-

It may be useful to add new brands in addition to already defined brands or override existing ones.

Parameters

c

new card definition

+

It may be useful to add new brands in addition to already defined brands or override existing ones.

Parameters

c

new card definition

-

Deprecated

Use setRule(rule) instead.

Replace with

setRule(rule)

Adds a validation rule for the field.

+

Deprecated

Use setRule(rule) instead.

Replace with

setRule(rule)

Adds a validation rule for the field.

-

Adds a validation rule for the field.

+

Adds a validation rule for the field.

-

Return the align the icon by the view’s x-axis.

Return

the icon gravity value.

+

Return the align the icon by the view’s x-axis.

Return

the icon gravity value.

-

Return symbol that will divide groups of digits in the card number.

Return

divider symbol

+

Return symbol that will divide groups of digits in the card number.

Return

divider symbol

-

Return symbol that will divide groups of digits in the card number before submitting on Proxy.

Return

divider symbol

+

Return symbol that will divide groups of digits in the card number before submitting on Proxy.

Return

divider symbol

-

It return current state of the field.

Return

current state.

+

It return current state of the field.

Return

current state.

-

It may be useful to add new brands in addition to already defined brands or override existing ones.

+

It may be useful to add new brands in addition to already defined brands or override existing ones.

@@ -135,7 +135,7 @@

Functions

- +
@@ -165,7 +165,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -180,7 +180,7 @@

Functions

- +
@@ -210,7 +210,7 @@

Functions

- +
@@ -225,7 +225,7 @@

Functions

-

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

+

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

@@ -240,7 +240,7 @@

Functions

- +
@@ -255,7 +255,7 @@

Functions

-

Adds a validation rule for the field.

+

Adds a validation rule for the field.

@@ -270,7 +270,7 @@

Functions

- +
@@ -285,7 +285,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -315,7 +315,7 @@

Functions

- +
@@ -330,7 +330,7 @@

Functions

- +
@@ -345,7 +345,7 @@

Functions

-

Adds a validation rule for the field.

+

Adds a validation rule for the field.

@@ -360,7 +360,7 @@

Functions

- +
@@ -390,7 +390,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -405,7 +405,7 @@

Functions

- +
@@ -420,7 +420,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -435,7 +435,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -450,7 +450,7 @@

Functions

- +
@@ -465,7 +465,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -480,7 +480,7 @@

Functions

- +
@@ -495,7 +495,7 @@

Functions

- +
@@ -510,7 +510,7 @@

Functions

- +
@@ -525,7 +525,7 @@

Functions

- +
@@ -540,7 +540,7 @@

Functions

-

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

+

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

@@ -555,7 +555,7 @@

Functions

- +
@@ -570,7 +570,7 @@

Functions

- +
@@ -615,7 +615,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -645,7 +645,7 @@

Functions

- +
@@ -675,7 +675,7 @@

Functions

- +
@@ -690,7 +690,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -705,7 +705,7 @@

Functions

- +
@@ -720,7 +720,7 @@

Functions

- +
@@ -735,7 +735,7 @@

Functions

- +
@@ -750,7 +750,7 @@

Functions

- +
@@ -810,7 +810,7 @@

Functions

- +
@@ -885,7 +885,7 @@

Functions

- +
@@ -945,7 +945,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -960,7 +960,7 @@

Functions

- +
@@ -975,7 +975,7 @@

Functions

- +
@@ -990,7 +990,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -1005,7 +1005,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -1035,7 +1035,7 @@

Functions

- +
@@ -1080,7 +1080,7 @@

Functions

- +
@@ -1245,7 +1245,7 @@

Functions

- +
@@ -1305,7 +1305,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1320,7 +1320,7 @@

Functions

- +
@@ -1335,7 +1335,7 @@

Functions

-
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

+
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

@@ -1350,7 +1350,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1380,7 +1380,7 @@

Functions

- +
@@ -1410,7 +1410,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1425,7 +1425,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1440,7 +1440,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1470,7 +1470,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1485,7 +1485,7 @@

Functions

- +
@@ -1500,7 +1500,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1530,7 +1530,7 @@

Functions

- +
@@ -1575,7 +1575,7 @@

Functions

- +
@@ -1590,7 +1590,7 @@

Functions

- +
@@ -1605,7 +1605,7 @@

Functions

- +
@@ -1620,7 +1620,7 @@

Functions

- +
@@ -1635,7 +1635,7 @@

Functions

- +
@@ -1650,7 +1650,7 @@

Functions

- +
@@ -1665,7 +1665,7 @@

Functions

- +
@@ -1680,7 +1680,7 @@

Functions

- +
@@ -1695,7 +1695,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1710,7 +1710,7 @@

Functions

- +
@@ -1725,7 +1725,7 @@

Functions

- +
@@ -1740,7 +1740,7 @@

Functions

- +
@@ -1755,7 +1755,7 @@

Functions

- +
@@ -1770,7 +1770,7 @@

Functions

- +
@@ -1785,7 +1785,7 @@

Functions

- +
@@ -1800,7 +1800,7 @@

Functions

- +
@@ -1815,7 +1815,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1830,7 +1830,7 @@

Functions

- +
@@ -1860,7 +1860,7 @@

Functions

- +
@@ -1875,7 +1875,7 @@

Functions

- +
@@ -1890,7 +1890,7 @@

Functions

- +
@@ -1905,7 +1905,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1920,7 +1920,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1935,7 +1935,7 @@

Functions

- +
@@ -1950,7 +1950,7 @@

Functions

-

Return the align the icon by the view’s x-axis.

+

Return the align the icon by the view’s x-axis.

@@ -1965,7 +1965,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1980,7 +1980,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1995,7 +1995,7 @@

Functions

- +
@@ -2025,7 +2025,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -2040,7 +2040,7 @@

Functions

- +
@@ -2055,7 +2055,7 @@

Functions

- +
@@ -2070,7 +2070,7 @@

Functions

- +
@@ -2085,7 +2085,7 @@

Functions

- +
@@ -2100,7 +2100,7 @@

Functions

- +
@@ -2115,7 +2115,7 @@

Functions

- +
@@ -2130,7 +2130,7 @@

Functions

- +
@@ -2145,7 +2145,7 @@

Functions

- +
@@ -2160,7 +2160,7 @@

Functions

- +
@@ -2175,7 +2175,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2190,7 +2190,7 @@

Functions

-

Return symbol that will divide groups of digits in the card number.

+

Return symbol that will divide groups of digits in the card number.

@@ -2205,7 +2205,7 @@

Functions

- +
@@ -2220,7 +2220,7 @@

Functions

- +
@@ -2235,7 +2235,7 @@

Functions

- +
@@ -2250,7 +2250,7 @@

Functions

- +
@@ -2265,7 +2265,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2280,7 +2280,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2295,7 +2295,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2310,7 +2310,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2325,7 +2325,7 @@

Functions

-
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

+
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

@@ -2340,7 +2340,7 @@

Functions

-

Gets the current field type of the InputFieldView.

+

Gets the current field type of the InputFieldView.

@@ -2355,7 +2355,7 @@

Functions

- +
@@ -2370,7 +2370,7 @@

Functions

- +
@@ -2385,7 +2385,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2400,7 +2400,7 @@

Functions

- +
@@ -2415,7 +2415,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2430,7 +2430,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2445,7 +2445,7 @@

Functions

- +
@@ -2460,7 +2460,7 @@

Functions

- +
@@ -2475,7 +2475,7 @@

Functions

- +
@@ -2490,7 +2490,7 @@

Functions

- +
@@ -2505,7 +2505,7 @@

Functions

- +
@@ -2520,7 +2520,7 @@

Functions

- +
@@ -2535,7 +2535,7 @@

Functions

-
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

+
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

@@ -2550,7 +2550,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2565,7 +2565,7 @@

Functions

- +
@@ -2580,7 +2580,7 @@

Functions

- +
@@ -2595,7 +2595,7 @@

Functions

- +
@@ -2610,7 +2610,7 @@

Functions

- +
@@ -2625,7 +2625,7 @@

Functions

- +
@@ -2640,7 +2640,7 @@

Functions

- +
@@ -2655,7 +2655,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2670,7 +2670,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2685,7 +2685,7 @@

Functions

- +
@@ -2700,7 +2700,7 @@

Functions

- +
@@ -2715,7 +2715,7 @@

Functions

- +
@@ -2730,7 +2730,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2745,7 +2745,7 @@

Functions

-

Get the type of the Input Method Editor (IME).

+

Get the type of the Input Method Editor (IME).

@@ -2760,7 +2760,7 @@

Functions

- +
@@ -2775,7 +2775,7 @@

Functions

- +
@@ -2790,7 +2790,7 @@

Functions

- +
@@ -2805,7 +2805,7 @@

Functions

-
open fun getInputType(): Int

Get the type of the editable content.

+
open fun getInputType(): Int

Get the type of the editable content.

@@ -2820,7 +2820,7 @@

Functions

- +
@@ -2835,7 +2835,7 @@

Functions

- +
@@ -2850,7 +2850,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2865,7 +2865,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2880,7 +2880,7 @@

Functions

- +
@@ -2895,7 +2895,7 @@

Functions

- +
@@ -2910,7 +2910,7 @@

Functions

- +
@@ -2925,7 +2925,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2940,7 +2940,7 @@

Functions

- +
@@ -2955,7 +2955,7 @@

Functions

- +
@@ -2970,7 +2970,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2985,7 +2985,7 @@

Functions

- +
@@ -3000,7 +3000,7 @@

Functions

- +
@@ -3015,7 +3015,7 @@

Functions

- +
@@ -3030,7 +3030,7 @@

Functions

- +
@@ -3045,7 +3045,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -3060,7 +3060,7 @@

Functions

- +
@@ -3075,7 +3075,7 @@

Functions

- +
@@ -3090,7 +3090,7 @@

Functions

- +
@@ -3105,7 +3105,7 @@

Functions

- +
@@ -3120,7 +3120,7 @@

Functions

- +
@@ -3135,7 +3135,7 @@

Functions

- +
@@ -3150,7 +3150,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3165,7 +3165,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3180,7 +3180,7 @@

Functions

- +
@@ -3195,7 +3195,7 @@

Functions

- +
@@ -3210,7 +3210,7 @@

Functions

- +
@@ -3225,7 +3225,7 @@

Functions

- +
@@ -3240,7 +3240,7 @@

Functions

- +
@@ -3255,7 +3255,7 @@

Functions

- +
@@ -3270,7 +3270,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3285,7 +3285,7 @@

Functions

- +
@@ -3300,7 +3300,7 @@

Functions

- +
@@ -3315,7 +3315,7 @@

Functions

- +
@@ -3330,7 +3330,7 @@

Functions

- +
@@ -3345,7 +3345,7 @@

Functions

-

Return symbol that will divide groups of digits in the card number before submitting on Proxy.

+

Return symbol that will divide groups of digits in the card number before submitting on Proxy.

@@ -3375,7 +3375,7 @@

Functions

- +
@@ -3480,7 +3480,7 @@

Functions

- +
@@ -3495,7 +3495,7 @@

Functions

- +
@@ -3510,7 +3510,7 @@

Functions

- +
@@ -3525,7 +3525,7 @@

Functions

- +
@@ -3540,7 +3540,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3555,7 +3555,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3570,7 +3570,7 @@

Functions

- +
@@ -3585,7 +3585,7 @@

Functions

- +
@@ -3600,7 +3600,7 @@

Functions

- +
@@ -3615,7 +3615,7 @@

Functions

- +
@@ -3630,7 +3630,7 @@

Functions

- +
@@ -3645,7 +3645,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3660,7 +3660,7 @@

Functions

- +
@@ -3675,7 +3675,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3690,7 +3690,7 @@

Functions

- +
@@ -3705,7 +3705,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3720,7 +3720,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3735,7 +3735,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3750,7 +3750,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3765,7 +3765,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3780,7 +3780,7 @@

Functions

- +
@@ -3795,7 +3795,7 @@

Functions

- +
@@ -3810,7 +3810,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3825,7 +3825,7 @@

Functions

- +
@@ -3840,7 +3840,7 @@

Functions

- +
@@ -3855,7 +3855,7 @@

Functions

- +
@@ -3870,7 +3870,7 @@

Functions

- +
@@ -3885,7 +3885,7 @@

Functions

- +
@@ -3900,7 +3900,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3915,7 +3915,7 @@

Functions

- +
@@ -3930,7 +3930,7 @@

Functions

-

It return current state of the field.

+

It return current state of the field.

@@ -3945,7 +3945,7 @@

Functions

- +
@@ -3960,7 +3960,7 @@

Functions

- +
@@ -3975,7 +3975,7 @@

Functions

- +
@@ -3990,7 +3990,7 @@

Functions

- +
@@ -4005,7 +4005,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -4020,7 +4020,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -4035,7 +4035,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -4050,7 +4050,7 @@

Functions

- +
@@ -4065,7 +4065,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -4080,7 +4080,7 @@

Functions

- +
@@ -4095,7 +4095,7 @@

Functions

- +
@@ -4110,7 +4110,7 @@

Functions

- +
@@ -4125,7 +4125,7 @@

Functions

- +
@@ -4140,7 +4140,7 @@

Functions

- +
@@ -4155,7 +4155,7 @@

Functions

- +
@@ -4170,7 +4170,7 @@

Functions

- +
@@ -4185,7 +4185,7 @@

Functions

- +
@@ -4200,7 +4200,7 @@

Functions

-
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

+
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

@@ -4215,7 +4215,7 @@

Functions

- +
@@ -4230,7 +4230,7 @@

Functions

- +
@@ -4245,7 +4245,7 @@

Functions

- +
@@ -4260,7 +4260,7 @@

Functions

- +
@@ -4275,7 +4275,7 @@

Functions

- +
@@ -4290,7 +4290,7 @@

Functions

- +
@@ -4305,7 +4305,7 @@

Functions

- +
@@ -4320,7 +4320,7 @@

Functions

- +
@@ -4335,7 +4335,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4350,7 +4350,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4365,7 +4365,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4380,7 +4380,7 @@

Functions

- +
@@ -4395,7 +4395,7 @@

Functions

- +
@@ -4410,7 +4410,7 @@

Functions

- +
@@ -4425,7 +4425,7 @@

Functions

- +
@@ -4440,7 +4440,7 @@

Functions

- +
@@ -4455,7 +4455,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4470,7 +4470,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4485,7 +4485,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4500,7 +4500,7 @@

Functions

- +
@@ -4530,7 +4530,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4545,7 +4545,7 @@

Functions

- +
@@ -4560,7 +4560,7 @@

Functions

- +
@@ -4575,7 +4575,7 @@

Functions

- +
@@ -4590,7 +4590,7 @@

Functions

- +
@@ -4605,7 +4605,7 @@

Functions

- +
@@ -4635,7 +4635,7 @@

Functions

- +
@@ -4650,7 +4650,7 @@

Functions

-

Request to hide the soft input window from the context of the window that is currently accepting input.

+

Request to hide the soft input window from the context of the window that is currently accepting input.

@@ -4665,7 +4665,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4680,7 +4680,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4740,7 +4740,7 @@

Functions

- +
@@ -4755,7 +4755,7 @@

Functions

- +
@@ -4770,7 +4770,7 @@

Functions

- +
@@ -4785,7 +4785,7 @@

Functions

- +
@@ -4800,7 +4800,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4815,7 +4815,7 @@

Functions

- +
@@ -4830,7 +4830,7 @@

Functions

- +
@@ -4845,7 +4845,7 @@

Functions

- +
@@ -4860,7 +4860,7 @@

Functions

- +
@@ -4875,7 +4875,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4890,7 +4890,7 @@

Functions

-

Returns true if view content same, false otherwise.

+

Returns true if view content same, false otherwise.

@@ -4905,7 +4905,7 @@

Functions

- +
@@ -4920,7 +4920,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4935,7 +4935,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4950,7 +4950,7 @@

Functions

- +
@@ -4965,7 +4965,7 @@

Functions

- +
@@ -4980,7 +4980,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4995,7 +4995,7 @@

Functions

- +
@@ -5010,7 +5010,7 @@

Functions

- +
@@ -5040,7 +5040,7 @@

Functions

- +
@@ -5055,7 +5055,7 @@

Functions

- +
@@ -5070,7 +5070,7 @@

Functions

- +
@@ -5085,7 +5085,7 @@

Functions

- +
@@ -5100,7 +5100,7 @@

Functions

- +
@@ -5115,7 +5115,7 @@

Functions

- +
@@ -5130,7 +5130,7 @@

Functions

- +
@@ -5145,7 +5145,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -5160,7 +5160,7 @@

Functions

- +
@@ -5175,7 +5175,7 @@

Functions

- +
@@ -5190,7 +5190,7 @@

Functions

- +
@@ -5205,7 +5205,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5220,7 +5220,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5235,7 +5235,7 @@

Functions

- +
@@ -5250,7 +5250,7 @@

Functions

- +
@@ -5265,7 +5265,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5280,7 +5280,7 @@

Functions

- +
@@ -5295,7 +5295,7 @@

Functions

- +
@@ -5310,7 +5310,7 @@

Functions

- +
@@ -5325,7 +5325,7 @@

Functions

- +
@@ -5340,7 +5340,7 @@

Functions

- +
@@ -5355,7 +5355,7 @@

Functions

- +
@@ -5370,7 +5370,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5385,7 +5385,7 @@

Functions

- +
@@ -5400,7 +5400,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5415,7 +5415,7 @@

Functions

- +
@@ -5430,7 +5430,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5445,7 +5445,7 @@

Functions

-
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

+
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

@@ -5460,7 +5460,7 @@

Functions

- +
@@ -5475,7 +5475,7 @@

Functions

- +
@@ -5490,7 +5490,7 @@

Functions

- +
@@ -5505,7 +5505,7 @@

Functions

- +
@@ -5520,7 +5520,7 @@

Functions

- +
@@ -5535,7 +5535,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5550,7 +5550,7 @@

Functions

- +
@@ -5565,7 +5565,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5580,7 +5580,7 @@

Functions

- +
@@ -5595,7 +5595,7 @@

Functions

- +
@@ -5610,7 +5610,7 @@

Functions

- +
@@ -5625,7 +5625,7 @@

Functions

- +
@@ -5640,7 +5640,7 @@

Functions

- +
@@ -5655,7 +5655,7 @@

Functions

-

Returns the validation status for this view.

+

Returns the validation status for this view.

@@ -5670,7 +5670,7 @@

Functions

- +
@@ -5685,7 +5685,7 @@

Functions

- +
@@ -5700,7 +5700,7 @@

Functions

- +
@@ -5730,7 +5730,7 @@

Functions

- +
@@ -5760,7 +5760,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5790,7 +5790,7 @@

Functions

- +
@@ -5805,7 +5805,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5820,7 +5820,7 @@

Functions

- +
@@ -5835,7 +5835,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5850,7 +5850,7 @@

Functions

- +
@@ -5880,7 +5880,7 @@

Functions

- +
@@ -5895,7 +5895,7 @@

Functions

- +
@@ -5910,7 +5910,7 @@

Functions

- +
@@ -5925,7 +5925,7 @@

Functions

- +
@@ -5940,7 +5940,7 @@

Functions

- +
@@ -5955,7 +5955,7 @@

Functions

- +
@@ -5985,7 +5985,7 @@

Functions

- +
@@ -6000,7 +6000,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -6015,7 +6015,7 @@

Functions

- +
@@ -6030,7 +6030,7 @@

Functions

- +
@@ -6045,7 +6045,7 @@

Functions

- +
@@ -6060,7 +6060,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -6075,7 +6075,7 @@

Functions

- +
@@ -6090,7 +6090,7 @@

Functions

- +
@@ -6105,7 +6105,7 @@

Functions

- +
@@ -6120,7 +6120,7 @@

Functions

- +
@@ -6135,7 +6135,7 @@

Functions

- +
@@ -6195,7 +6195,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -6210,7 +6210,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6330,7 +6330,7 @@

Functions

- +
@@ -6345,7 +6345,7 @@

Functions

- +
@@ -6360,7 +6360,7 @@

Functions

- +
@@ -6375,7 +6375,7 @@

Functions

- +
@@ -6390,7 +6390,7 @@

Functions

- +
@@ -6405,7 +6405,7 @@

Functions

- +
@@ -6420,7 +6420,7 @@

Functions

- +
@@ -6435,7 +6435,7 @@

Functions

- +
@@ -6450,7 +6450,7 @@

Functions

- +
@@ -6480,7 +6480,7 @@

Functions

- +
@@ -6495,7 +6495,7 @@

Functions

- +
@@ -6510,7 +6510,7 @@

Functions

- +
@@ -6540,7 +6540,7 @@

Functions

- +
@@ -6570,7 +6570,7 @@

Functions

- +
@@ -6585,7 +6585,7 @@

Functions

- +
@@ -6600,7 +6600,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6615,7 +6615,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6630,7 +6630,7 @@

Functions

- +
@@ -6645,7 +6645,7 @@

Functions

- +
@@ -6660,7 +6660,7 @@

Functions

- +
@@ -6675,7 +6675,7 @@

Functions

- +
@@ -6690,7 +6690,7 @@

Functions

- +
@@ -6705,7 +6705,7 @@

Functions

- +
@@ -6735,7 +6735,7 @@

Functions

- +
@@ -6750,7 +6750,7 @@

Functions

- +
@@ -6765,7 +6765,7 @@

Functions

- +
@@ -6780,7 +6780,7 @@

Functions

- +
@@ -6795,7 +6795,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6810,7 +6810,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6825,7 +6825,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6840,7 +6840,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6855,7 +6855,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6870,7 +6870,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6885,7 +6885,7 @@

Functions

- +
@@ -6900,7 +6900,7 @@

Functions

- +
@@ -6930,7 +6930,7 @@

Functions

- +
@@ -6945,7 +6945,7 @@

Functions

- +
@@ -6960,7 +6960,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6975,7 +6975,7 @@

Functions

- +
@@ -6990,7 +6990,7 @@

Functions

- +
@@ -7005,7 +7005,7 @@

Functions

- +
@@ -7020,7 +7020,7 @@

Functions

- +
@@ -7035,7 +7035,7 @@

Functions

- +
@@ -7050,7 +7050,7 @@

Functions

-

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

+

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

@@ -7080,7 +7080,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -7095,7 +7095,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -7110,7 +7110,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -7125,7 +7125,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -7140,7 +7140,7 @@

Functions

- +
@@ -7200,7 +7200,7 @@

Functions

- +
@@ -7215,7 +7215,7 @@

Functions

-

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

+

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

@@ -7230,7 +7230,7 @@

Functions

- +
@@ -7245,7 +7245,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7260,7 +7260,7 @@

Functions

- +
@@ -7275,7 +7275,7 @@

Functions

- +
@@ -7320,7 +7320,7 @@

Functions

- +
@@ -7335,7 +7335,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7350,7 +7350,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7380,7 +7380,7 @@

Functions

- +
@@ -7395,7 +7395,7 @@

Functions

- +
@@ -7410,7 +7410,7 @@

Functions

- +
@@ -7440,7 +7440,7 @@

Functions

- +
@@ -7455,7 +7455,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7470,7 +7470,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7515,7 +7515,7 @@

Functions

- +
@@ -7530,7 +7530,7 @@

Functions

- +
@@ -7545,7 +7545,7 @@

Functions

- +
@@ -7560,7 +7560,7 @@

Functions

- +
@@ -7575,7 +7575,7 @@

Functions

- +
@@ -7590,7 +7590,7 @@

Functions

- +
@@ -7605,7 +7605,7 @@

Functions

- +
@@ -7620,7 +7620,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7635,7 +7635,7 @@

Functions

- +
@@ -7650,7 +7650,7 @@

Functions

- +
@@ -7665,7 +7665,7 @@

Functions

- +
@@ -7680,7 +7680,7 @@

Functions

- +
@@ -7695,7 +7695,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7710,7 +7710,7 @@

Functions

- +
@@ -7725,7 +7725,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7740,7 +7740,7 @@

Functions

- +
@@ -7755,7 +7755,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7800,7 +7800,7 @@

Functions

- +
@@ -7845,7 +7845,7 @@

Functions

- +
@@ -7860,7 +7860,7 @@

Functions

- +
@@ -7875,7 +7875,7 @@

Functions

- +
@@ -7890,7 +7890,7 @@

Functions

- +
@@ -7905,7 +7905,7 @@

Functions

- +
@@ -7920,7 +7920,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7935,7 +7935,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7950,7 +7950,7 @@

Functions

-

Specifies how to align the icon by the view’s x-axis. To specify gravity programmatically you could use android Gravity class.

+

Specifies how to align the icon by the view’s x-axis. To specify gravity programmatically you could use android Gravity class.

@@ -7965,7 +7965,7 @@

Functions

-

Sets the custom icons for Brand.

+

Sets the custom icons for Brand.

@@ -7980,7 +7980,7 @@

Functions

-

Sets the custom mask for formatting card number.

+

Sets the custom mask for formatting card number.

@@ -7995,7 +7995,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -8010,7 +8010,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -8025,7 +8025,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -8040,7 +8040,7 @@

Functions

- +
@@ -8055,7 +8055,7 @@

Functions

- +
@@ -8070,7 +8070,7 @@

Functions

- +
@@ -8100,7 +8100,7 @@

Functions

- +
@@ -8115,7 +8115,7 @@

Functions

-
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

+
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

@@ -8130,7 +8130,7 @@

Functions

- +
@@ -8145,7 +8145,7 @@

Functions

- +
@@ -8160,7 +8160,7 @@

Functions

-
fun setDivider(char: Char?)

Sets the symbol that will divide groups of digits in the card number. 0000 0000 0000 0000

+
fun setDivider(char: Char?)

Sets the symbol that will divide groups of digits in the card number. 0000 0000 0000 0000

@@ -8175,7 +8175,7 @@

Functions

- +
@@ -8190,7 +8190,7 @@

Functions

- +
@@ -8205,7 +8205,7 @@

Functions

- +
@@ -8220,7 +8220,7 @@

Functions

- +
@@ -8235,7 +8235,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8250,7 +8250,7 @@

Functions

-
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

+
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

@@ -8280,7 +8280,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8295,7 +8295,7 @@

Functions

-
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -8310,7 +8310,7 @@

Functions

- +
@@ -8325,7 +8325,7 @@

Functions

- +
@@ -8370,7 +8370,7 @@

Functions

- +
@@ -8385,7 +8385,7 @@

Functions

- +
@@ -8400,7 +8400,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8430,7 +8430,7 @@

Functions

- +
@@ -8445,7 +8445,7 @@

Functions

- +
@@ -8460,7 +8460,7 @@

Functions

- +
@@ -8475,7 +8475,7 @@

Functions

-
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

+
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

@@ -8490,7 +8490,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8505,7 +8505,7 @@

Functions

- +
@@ -8520,7 +8520,7 @@

Functions

- +
@@ -8535,7 +8535,7 @@

Functions

- +
@@ -8550,7 +8550,7 @@

Functions

-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8565,7 +8565,7 @@

Functions

-

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

+

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

@@ -8580,7 +8580,7 @@

Functions

- +
@@ -8595,7 +8595,7 @@

Functions

- +
@@ -8610,7 +8610,7 @@

Functions

- +
@@ -8625,7 +8625,7 @@

Functions

- +
@@ -8640,7 +8640,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8655,7 +8655,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8670,7 +8670,7 @@

Functions

-
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

+
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

@@ -8715,7 +8715,7 @@

Functions

- +
@@ -8730,7 +8730,7 @@

Functions

-
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

+
open fun setInputType(inputType: Int)

Set the type of the content with a constant as defined for input field.

@@ -8745,7 +8745,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8760,7 +8760,7 @@

Functions

- +
@@ -8775,7 +8775,7 @@

Functions

-
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

+
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

@@ -8790,7 +8790,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8805,7 +8805,7 @@

Functions

- +
@@ -8820,7 +8820,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8835,7 +8835,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8850,7 +8850,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8865,7 +8865,7 @@

Functions

- +
@@ -8880,7 +8880,7 @@

Functions

- +
@@ -8895,7 +8895,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8910,7 +8910,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8925,7 +8925,7 @@

Functions

- +
@@ -8940,7 +8940,7 @@

Functions

- +
@@ -8955,7 +8955,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8970,7 +8970,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8985,7 +8985,7 @@

Functions

- +
@@ -9000,7 +9000,7 @@

Functions

-
fun setMaxInputLength(length: Int)

The max card number length to display. Counting the length of a card number divider chars is ignored.

+
fun setMaxInputLength(length: Int)

The max card number length to display. Counting the length of a card number divider chars is ignored.

@@ -9015,7 +9015,7 @@

Functions

-
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

+
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

@@ -9030,7 +9030,7 @@

Functions

- +
@@ -9045,7 +9045,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -9060,7 +9060,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -9075,7 +9075,7 @@

Functions

-
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

+
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

@@ -9090,7 +9090,7 @@

Functions

- +
@@ -9105,7 +9105,7 @@

Functions

- +
@@ -9120,7 +9120,7 @@

Functions

- +
@@ -9210,7 +9210,7 @@

Functions

- +
@@ -9225,7 +9225,7 @@

Functions

- +
@@ -9240,7 +9240,7 @@

Functions

- +
@@ -9255,7 +9255,7 @@

Functions

- +
@@ -9270,7 +9270,7 @@

Functions

- +
@@ -9285,7 +9285,7 @@

Functions

- +
@@ -9300,7 +9300,7 @@

Functions

-

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

+

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

@@ -9315,7 +9315,7 @@

Functions

-

This method adds a listener whose methods are called whenever VGS secure field state changes.

+

This method adds a listener whose methods are called whenever VGS secure field state changes.

@@ -9345,7 +9345,7 @@

Functions

- +
@@ -9360,7 +9360,7 @@

Functions

- +
@@ -9375,7 +9375,7 @@

Functions

- +
@@ -9405,7 +9405,7 @@

Functions

- +
@@ -9420,7 +9420,7 @@

Functions

- +
@@ -9435,7 +9435,7 @@

Functions

- +
@@ -9450,7 +9450,7 @@

Functions

- +
@@ -9465,7 +9465,7 @@

Functions

- +
@@ -9480,7 +9480,7 @@

Functions

- +
@@ -9495,7 +9495,7 @@

Functions

- +
@@ -9510,7 +9510,7 @@

Functions

- +
@@ -9525,7 +9525,7 @@

Functions

-

Sets the symbol that will divide groups of digits in the card number before submit it. The divider has no impact on UI. 0000 0000 0000 0000

+

Sets the symbol that will divide groups of digits in the card number before submit it. The divider has no impact on UI. 0000 0000 0000 0000

@@ -9540,7 +9540,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9570,7 +9570,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9585,7 +9585,7 @@

Functions

- +
@@ -9600,7 +9600,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9615,7 +9615,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9630,7 +9630,7 @@

Functions

- +
@@ -9645,7 +9645,7 @@

Functions

- +
@@ -9660,7 +9660,7 @@

Functions

- +
@@ -9675,7 +9675,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9690,7 +9690,7 @@

Functions

- +
@@ -9705,7 +9705,7 @@

Functions

- +
@@ -9720,7 +9720,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9735,7 +9735,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9750,7 +9750,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9765,7 +9765,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9780,7 +9780,7 @@

Functions

-

Set a validation rule for the field.

+

Set a validation rule for the field.

@@ -9795,7 +9795,7 @@

Functions

-

Set validation rules for the field.

+

Set validation rules for the field.

@@ -9810,7 +9810,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9825,7 +9825,7 @@

Functions

- +
@@ -9840,7 +9840,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9855,7 +9855,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9870,7 +9870,7 @@

Functions

- +
@@ -9885,7 +9885,7 @@

Functions

- +
@@ -9900,7 +9900,7 @@

Functions

- +
@@ -9915,7 +9915,7 @@

Functions

- +
@@ -9930,7 +9930,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9945,7 +9945,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9960,7 +9960,7 @@

Functions

- +
@@ -9975,7 +9975,7 @@

Functions

- +
@@ -9990,7 +9990,7 @@

Functions

- +
@@ -10005,7 +10005,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -10020,7 +10020,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -10035,7 +10035,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -10050,7 +10050,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -10065,7 +10065,7 @@

Functions

-
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

+
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

@@ -10080,7 +10080,7 @@

Functions

-
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

+
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

@@ -10095,7 +10095,7 @@

Functions

- +
@@ -10110,7 +10110,7 @@

Functions

- +
@@ -10125,7 +10125,7 @@

Functions

- +
@@ -10140,7 +10140,7 @@

Functions

- +
@@ -10155,7 +10155,7 @@

Functions

- +
@@ -10170,7 +10170,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -10185,7 +10185,7 @@

Functions

-
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

+
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

@@ -10200,7 +10200,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10215,7 +10215,7 @@

Functions

-
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

+
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

@@ -10230,7 +10230,7 @@

Functions

-
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

+
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

@@ -10245,7 +10245,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10260,7 +10260,7 @@

Functions

-
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

+
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

@@ -10275,7 +10275,7 @@

Functions

- +
@@ -10290,7 +10290,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10305,7 +10305,7 @@

Functions

- +
@@ -10320,7 +10320,7 @@

Functions

- +
@@ -10335,7 +10335,7 @@

Functions

- +
@@ -10350,7 +10350,7 @@

Functions

- +
@@ -10365,7 +10365,7 @@

Functions

- +
@@ -10380,7 +10380,7 @@

Functions

- +
@@ -10395,7 +10395,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10410,7 +10410,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10425,7 +10425,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10440,7 +10440,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

@@ -10455,7 +10455,7 @@

Functions

-
fun setValidCardBrands(vararg cardBrand: CardBrand)

Modify list of valid card brands. Only this brands will be valid all other brands will be marked as UNKNOWN. Please note, that items adding order is important for correct brand detect.

+
fun setValidCardBrands(vararg cardBrand: CardBrand)

Modify list of valid card brands. Only this brands will be valid all other brands will be marked as UNKNOWN. Please note, that items adding order is important for correct brand detect.

@@ -10470,7 +10470,7 @@

Functions

-

Sets the vault alias format in which data stores on a backend.

+

Sets the vault alias format in which data stores on a backend.

@@ -10485,7 +10485,7 @@

Functions

-

Sets the vault storage type for storing.

+

Sets the vault storage type for storing.

@@ -10500,7 +10500,7 @@

Functions

- +
@@ -10515,7 +10515,7 @@

Functions

- +
@@ -10530,7 +10530,7 @@

Functions

- +
@@ -10545,7 +10545,7 @@

Functions

- +
@@ -10560,7 +10560,7 @@

Functions

- +
@@ -10575,7 +10575,7 @@

Functions

- +
@@ -10590,7 +10590,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10605,7 +10605,7 @@

Functions

- +
@@ -10620,7 +10620,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10650,7 +10650,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10665,7 +10665,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10680,7 +10680,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10710,7 +10710,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10740,7 +10740,7 @@

Functions

-

Explicitly request that the current input method's soft input area be shown to the user, if needed.

+

Explicitly request that the current input method's soft input area be shown to the user, if needed.

@@ -10755,7 +10755,7 @@

Functions

- +
@@ -10785,7 +10785,7 @@

Functions

- +
@@ -10800,7 +10800,7 @@

Functions

- +
@@ -10815,7 +10815,7 @@

Functions

- +
@@ -10830,7 +10830,7 @@

Functions

- +
@@ -10845,7 +10845,7 @@

Functions

- +
@@ -10860,7 +10860,7 @@

Functions

- +
@@ -10875,7 +10875,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10890,7 +10890,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10920,7 +10920,7 @@

Functions

- +
@@ -10935,7 +10935,7 @@

Functions

- +
@@ -10950,7 +10950,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10965,7 +10965,7 @@

Functions

- +
@@ -10995,7 +10995,7 @@

Functions

- +
@@ -11010,7 +11010,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-v-g-s-card-number-edit-text/set-card-brand-icon-gravity.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-v-g-s-card-number-edit-text/set-card-brand-icon-gravity.html index a2e9dd3bf..f4cde6689 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-v-g-s-card-number-edit-text/set-card-brand-icon-gravity.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-v-g-s-card-number-edit-text/set-card-brand-icon-gravity.html @@ -66,7 +66,7 @@

setCardBrandIconGravity

-

Specifies how to align the icon by the view’s x-axis. To specify gravity programmatically you could use android Gravity class.

Parameters

gravity

Specifies how to align the icon by the view’s x-axis.

+

Specifies how to align the icon by the view’s x-axis. To specify gravity programmatically you could use android Gravity class.

Parameters

gravity

Specifies how to align the icon by the view’s x-axis.

-

Sets the custom icons for Brand.

Parameters

adapter

The adapter is responsible for maintaining the icons backing this view and for producing a drawable for preview.

+

Sets the custom icons for Brand.

Parameters

adapter

The adapter is responsible for maintaining the icons backing this view and for producing a drawable for preview.

-

Sets the custom mask for formatting card number.

Parameters

adapter

The adapter is responsible for maintaining the format of the card number.

+

Sets the custom mask for formatting card number.

Parameters

adapter

The adapter is responsible for maintaining the format of the card number.

-
fun setDivider(char: Char?)

Sets the symbol that will divide groups of digits in the card number. 0000 0000 0000 0000

Parameters

char

The divider symbol.

+
fun setDivider(char: Char?)

Sets the symbol that will divide groups of digits in the card number. 0000 0000 0000 0000

Parameters

char

The divider symbol.

-
fun setMaxInputLength(length: Int)

The max card number length to display. Counting the length of a card number divider chars is ignored.

+
fun setMaxInputLength(length: Int)

The max card number length to display. Counting the length of a card number divider chars is ignored.

-

Sets the symbol that will divide groups of digits in the card number before submit it. The divider has no impact on UI. 0000 0000 0000 0000

Parameters

char

The divider symbol.

+

Sets the symbol that will divide groups of digits in the card number before submit it. The divider has no impact on UI. 0000 0000 0000 0000

Parameters

char

The divider symbol.

-

Set a validation rule for the field.

+

Set a validation rule for the field.

-

Set validation rules for the field.

+

Set validation rules for the field.

-
fun setValidCardBrands(vararg cardBrand: CardBrand)

Modify list of valid card brands. Only this brands will be valid all other brands will be marked as UNKNOWN. Please note, that items adding order is important for correct brand detect.

Parameters

cardBrand

n number of valid card brands.

+
fun setValidCardBrands(vararg cardBrand: CardBrand)

Modify list of valid card brands. Only this brands will be valid all other brands will be marked as UNKNOWN. Please note, that items adding order is important for correct brand detect.

Parameters

cardBrand

n number of valid card brands.

-

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

+

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

-

Sets the vault storage type for storing.

Parameters

type

The VGS storage type.

+

Sets the vault storage type for storing.

Parameters

type

The VGS storage type.

-
fun addRule(rule: VGSInfoRule)

Deprecated

Use setRule(rule) instead.

Replace with

setRule(rule)

Adds a validation rule for the field.

+
fun addRule(rule: VGSInfoRule)

Deprecated

Use setRule(rule) instead.

Replace with

setRule(rule)

Adds a validation rule for the field.

-

Adds a validation rule for the field.

+

Adds a validation rule for the field.

-

It return current state of the field.

Return

current state.

+

It return current state of the field.

Return

current state.

- +
@@ -131,7 +131,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -146,7 +146,7 @@

Functions

- +
@@ -176,7 +176,7 @@

Functions

- +
@@ -191,7 +191,7 @@

Functions

-

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

+

Adds a OnTextChangedListener to the list of those whose methods are called whenever this field text changes.

@@ -206,7 +206,7 @@

Functions

- +
@@ -221,7 +221,7 @@

Functions

-
fun addRule(rule: VGSInfoRule)

Adds a validation rule for the field.

+
fun addRule(rule: VGSInfoRule)

Adds a validation rule for the field.

@@ -236,7 +236,7 @@

Functions

- +
@@ -251,7 +251,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -281,7 +281,7 @@

Functions

- +
@@ -296,7 +296,7 @@

Functions

- +
@@ -311,7 +311,7 @@

Functions

-

Adds a validation rule for the field.

+

Adds a validation rule for the field.

@@ -326,7 +326,7 @@

Functions

- +
@@ -356,7 +356,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -371,7 +371,7 @@

Functions

- +
@@ -386,7 +386,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -401,7 +401,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -416,7 +416,7 @@

Functions

- +
@@ -431,7 +431,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -446,7 +446,7 @@

Functions

- +
@@ -461,7 +461,7 @@

Functions

- +
@@ -476,7 +476,7 @@

Functions

- +
@@ -491,7 +491,7 @@

Functions

- +
@@ -506,7 +506,7 @@

Functions

-

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

+

open fun canScrollHorizontally(canScroll: Boolean)

Sets whether the text should be allowed to be wider than the View is. If false, it will be wrapped to the width of the View.

@@ -521,7 +521,7 @@

Functions

- +
@@ -536,7 +536,7 @@

Functions

- +
@@ -581,7 +581,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -611,7 +611,7 @@

Functions

- +
@@ -641,7 +641,7 @@

Functions

- +
@@ -656,7 +656,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -671,7 +671,7 @@

Functions

- +
@@ -686,7 +686,7 @@

Functions

- +
@@ -701,7 +701,7 @@

Functions

- +
@@ -716,7 +716,7 @@

Functions

- +
@@ -776,7 +776,7 @@

Functions

- +
@@ -851,7 +851,7 @@

Functions

- +
@@ -911,7 +911,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -926,7 +926,7 @@

Functions

- +
@@ -941,7 +941,7 @@

Functions

- +
@@ -956,7 +956,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -971,7 +971,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -1001,7 +1001,7 @@

Functions

- +
@@ -1046,7 +1046,7 @@

Functions

- +
@@ -1211,7 +1211,7 @@

Functions

- +
@@ -1271,7 +1271,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1286,7 +1286,7 @@

Functions

- +
@@ -1301,7 +1301,7 @@

Functions

-
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

+
fun enableValidation(isEnabled: Boolean)

Set the validation state of this view.

@@ -1316,7 +1316,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1346,7 +1346,7 @@

Functions

- +
@@ -1376,7 +1376,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1391,7 +1391,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1406,7 +1406,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1436,7 +1436,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1451,7 +1451,7 @@

Functions

- +
@@ -1466,7 +1466,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1496,7 +1496,7 @@

Functions

- +
@@ -1541,7 +1541,7 @@

Functions

- +
@@ -1556,7 +1556,7 @@

Functions

- +
@@ -1571,7 +1571,7 @@

Functions

- +
@@ -1586,7 +1586,7 @@

Functions

- +
@@ -1601,7 +1601,7 @@

Functions

- +
@@ -1616,7 +1616,7 @@

Functions

- +
@@ -1631,7 +1631,7 @@

Functions

- +
@@ -1646,7 +1646,7 @@

Functions

- +
@@ -1661,7 +1661,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1676,7 +1676,7 @@

Functions

- +
@@ -1691,7 +1691,7 @@

Functions

- +
@@ -1706,7 +1706,7 @@

Functions

- +
@@ -1721,7 +1721,7 @@

Functions

- +
@@ -1736,7 +1736,7 @@

Functions

- +
@@ -1751,7 +1751,7 @@

Functions

- +
@@ -1766,7 +1766,7 @@

Functions

- +
@@ -1781,7 +1781,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1796,7 +1796,7 @@

Functions

- +
@@ -1826,7 +1826,7 @@

Functions

- +
@@ -1841,7 +1841,7 @@

Functions

- +
@@ -1856,7 +1856,7 @@

Functions

- +
@@ -1871,7 +1871,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1886,7 +1886,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1901,7 +1901,7 @@

Functions

- +
@@ -1916,7 +1916,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1931,7 +1931,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1946,7 +1946,7 @@

Functions

- +
@@ -1976,7 +1976,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -1991,7 +1991,7 @@

Functions

- +
@@ -2006,7 +2006,7 @@

Functions

- +
@@ -2021,7 +2021,7 @@

Functions

- +
@@ -2036,7 +2036,7 @@

Functions

- +
@@ -2051,7 +2051,7 @@

Functions

- +
@@ -2066,7 +2066,7 @@

Functions

- +
@@ -2081,7 +2081,7 @@

Functions

- +
@@ -2096,7 +2096,7 @@

Functions

- +
@@ -2111,7 +2111,7 @@

Functions

- +
@@ -2126,7 +2126,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2141,7 +2141,7 @@

Functions

- +
@@ -2156,7 +2156,7 @@

Functions

- +
@@ -2171,7 +2171,7 @@

Functions

- +
@@ -2186,7 +2186,7 @@

Functions

- +
@@ -2201,7 +2201,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2216,7 +2216,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2231,7 +2231,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2246,7 +2246,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2261,7 +2261,7 @@

Functions

-
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

+
open fun getFieldName(): String?

Return the text that field is using for data transfer to VGS proxy.

@@ -2276,7 +2276,7 @@

Functions

-

Gets the current field type of the InputFieldView.

+

Gets the current field type of the InputFieldView.

@@ -2291,7 +2291,7 @@

Functions

- +
@@ -2306,7 +2306,7 @@

Functions

- +
@@ -2321,7 +2321,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2336,7 +2336,7 @@

Functions

- +
@@ -2351,7 +2351,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2366,7 +2366,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2381,7 +2381,7 @@

Functions

- +
@@ -2396,7 +2396,7 @@

Functions

- +
@@ -2411,7 +2411,7 @@

Functions

- +
@@ -2426,7 +2426,7 @@

Functions

- +
@@ -2441,7 +2441,7 @@

Functions

- +
@@ -2456,7 +2456,7 @@

Functions

- +
@@ -2471,7 +2471,7 @@

Functions

-
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

+
open fun getGravity(): Int

Returns the horizontal and vertical alignment of this TextView.

@@ -2486,7 +2486,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2501,7 +2501,7 @@

Functions

- +
@@ -2516,7 +2516,7 @@

Functions

- +
@@ -2531,7 +2531,7 @@

Functions

- +
@@ -2546,7 +2546,7 @@

Functions

- +
@@ -2561,7 +2561,7 @@

Functions

- +
@@ -2576,7 +2576,7 @@

Functions

- +
@@ -2591,7 +2591,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2606,7 +2606,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2621,7 +2621,7 @@

Functions

- +
@@ -2636,7 +2636,7 @@

Functions

- +
@@ -2651,7 +2651,7 @@

Functions

- +
@@ -2666,7 +2666,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2681,7 +2681,7 @@

Functions

-

Get the type of the Input Method Editor (IME).

+

Get the type of the Input Method Editor (IME).

@@ -2696,7 +2696,7 @@

Functions

- +
@@ -2711,7 +2711,7 @@

Functions

- +
@@ -2726,7 +2726,7 @@

Functions

- +
@@ -2741,7 +2741,7 @@

Functions

-
open fun getInputType(): Int

Get the type of the editable content.

+
open fun getInputType(): Int

Get the type of the editable content.

@@ -2756,7 +2756,7 @@

Functions

- +
@@ -2771,7 +2771,7 @@

Functions

- +
@@ -2786,7 +2786,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2801,7 +2801,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2816,7 +2816,7 @@

Functions

- +
@@ -2831,7 +2831,7 @@

Functions

- +
@@ -2846,7 +2846,7 @@

Functions

- +
@@ -2861,7 +2861,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2876,7 +2876,7 @@

Functions

- +
@@ -2891,7 +2891,7 @@

Functions

- +
@@ -2906,7 +2906,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2921,7 +2921,7 @@

Functions

- +
@@ -2936,7 +2936,7 @@

Functions

- +
@@ -2951,7 +2951,7 @@

Functions

- +
@@ -2966,7 +2966,7 @@

Functions

- +
@@ -2981,7 +2981,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -2996,7 +2996,7 @@

Functions

- +
@@ -3011,7 +3011,7 @@

Functions

- +
@@ -3026,7 +3026,7 @@

Functions

- +
@@ -3041,7 +3041,7 @@

Functions

- +
@@ -3056,7 +3056,7 @@

Functions

- +
@@ -3071,7 +3071,7 @@

Functions

- +
@@ -3086,7 +3086,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3101,7 +3101,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3116,7 +3116,7 @@

Functions

- +
@@ -3131,7 +3131,7 @@

Functions

- +
@@ -3146,7 +3146,7 @@

Functions

- +
@@ -3161,7 +3161,7 @@

Functions

- +
@@ -3176,7 +3176,7 @@

Functions

- +
@@ -3191,7 +3191,7 @@

Functions

- +
@@ -3206,7 +3206,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3221,7 +3221,7 @@

Functions

- +
@@ -3236,7 +3236,7 @@

Functions

- +
@@ -3251,7 +3251,7 @@

Functions

- +
@@ -3266,7 +3266,7 @@

Functions

- +
@@ -3296,7 +3296,7 @@

Functions

- +
@@ -3401,7 +3401,7 @@

Functions

- +
@@ -3416,7 +3416,7 @@

Functions

- +
@@ -3431,7 +3431,7 @@

Functions

- +
@@ -3446,7 +3446,7 @@

Functions

- +
@@ -3461,7 +3461,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3476,7 +3476,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3491,7 +3491,7 @@

Functions

- +
@@ -3506,7 +3506,7 @@

Functions

- +
@@ -3521,7 +3521,7 @@

Functions

- +
@@ -3536,7 +3536,7 @@

Functions

- +
@@ -3551,7 +3551,7 @@

Functions

- +
@@ -3566,7 +3566,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3581,7 +3581,7 @@

Functions

- +
@@ -3596,7 +3596,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3611,7 +3611,7 @@

Functions

- +
@@ -3626,7 +3626,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3641,7 +3641,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3656,7 +3656,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3671,7 +3671,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3686,7 +3686,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3701,7 +3701,7 @@

Functions

- +
@@ -3716,7 +3716,7 @@

Functions

- +
@@ -3731,7 +3731,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3746,7 +3746,7 @@

Functions

- +
@@ -3761,7 +3761,7 @@

Functions

- +
@@ -3776,7 +3776,7 @@

Functions

- +
@@ -3791,7 +3791,7 @@

Functions

- +
@@ -3806,7 +3806,7 @@

Functions

- +
@@ -3821,7 +3821,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3836,7 +3836,7 @@

Functions

- +
@@ -3851,7 +3851,7 @@

Functions

-

It return current state of the field.

+

It return current state of the field.

@@ -3866,7 +3866,7 @@

Functions

- +
@@ -3881,7 +3881,7 @@

Functions

- +
@@ -3896,7 +3896,7 @@

Functions

- +
@@ -3911,7 +3911,7 @@

Functions

- +
@@ -3926,7 +3926,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -3941,7 +3941,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -3956,7 +3956,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -3971,7 +3971,7 @@

Functions

- +
@@ -3986,7 +3986,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -4001,7 +4001,7 @@

Functions

- +
@@ -4016,7 +4016,7 @@

Functions

- +
@@ -4031,7 +4031,7 @@

Functions

- +
@@ -4046,7 +4046,7 @@

Functions

- +
@@ -4061,7 +4061,7 @@

Functions

- +
@@ -4076,7 +4076,7 @@

Functions

- +
@@ -4091,7 +4091,7 @@

Functions

- +
@@ -4106,7 +4106,7 @@

Functions

- +
@@ -4121,7 +4121,7 @@

Functions

-
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

+
open fun getTypeface(): Typeface?

Gets the current Typeface that is used to style the text.

@@ -4136,7 +4136,7 @@

Functions

- +
@@ -4151,7 +4151,7 @@

Functions

- +
@@ -4166,7 +4166,7 @@

Functions

- +
@@ -4181,7 +4181,7 @@

Functions

- +
@@ -4196,7 +4196,7 @@

Functions

- +
@@ -4211,7 +4211,7 @@

Functions

- +
@@ -4226,7 +4226,7 @@

Functions

- +
@@ -4241,7 +4241,7 @@

Functions

- +
@@ -4256,7 +4256,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4271,7 +4271,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4286,7 +4286,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4301,7 +4301,7 @@

Functions

- +
@@ -4316,7 +4316,7 @@

Functions

- +
@@ -4331,7 +4331,7 @@

Functions

- +
@@ -4346,7 +4346,7 @@

Functions

- +
@@ -4361,7 +4361,7 @@

Functions

- +
@@ -4376,7 +4376,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4391,7 +4391,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4406,7 +4406,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4421,7 +4421,7 @@

Functions

- +
@@ -4451,7 +4451,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4466,7 +4466,7 @@

Functions

- +
@@ -4481,7 +4481,7 @@

Functions

- +
@@ -4496,7 +4496,7 @@

Functions

- +
@@ -4511,7 +4511,7 @@

Functions

- +
@@ -4526,7 +4526,7 @@

Functions

- +
@@ -4556,7 +4556,7 @@

Functions

- +
@@ -4571,7 +4571,7 @@

Functions

-

Request to hide the soft input window from the context of the window that is currently accepting input.

+

Request to hide the soft input window from the context of the window that is currently accepting input.

@@ -4586,7 +4586,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4601,7 +4601,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4661,7 +4661,7 @@

Functions

- +
@@ -4676,7 +4676,7 @@

Functions

- +
@@ -4691,7 +4691,7 @@

Functions

- +
@@ -4706,7 +4706,7 @@

Functions

- +
@@ -4721,7 +4721,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4736,7 +4736,7 @@

Functions

- +
@@ -4751,7 +4751,7 @@

Functions

- +
@@ -4766,7 +4766,7 @@

Functions

- +
@@ -4781,7 +4781,7 @@

Functions

- +
@@ -4796,7 +4796,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4811,7 +4811,7 @@

Functions

-

Returns true if view content same, false otherwise.

+

Returns true if view content same, false otherwise.

@@ -4826,7 +4826,7 @@

Functions

- +
@@ -4841,7 +4841,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4856,7 +4856,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4871,7 +4871,7 @@

Functions

- +
@@ -4886,7 +4886,7 @@

Functions

- +
@@ -4901,7 +4901,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4916,7 +4916,7 @@

Functions

- +
@@ -4931,7 +4931,7 @@

Functions

- +
@@ -4961,7 +4961,7 @@

Functions

- +
@@ -4976,7 +4976,7 @@

Functions

- +
@@ -4991,7 +4991,7 @@

Functions

- +
@@ -5006,7 +5006,7 @@

Functions

- +
@@ -5021,7 +5021,7 @@

Functions

- +
@@ -5036,7 +5036,7 @@

Functions

- +
@@ -5051,7 +5051,7 @@

Functions

- +
@@ -5066,7 +5066,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -5081,7 +5081,7 @@

Functions

- +
@@ -5096,7 +5096,7 @@

Functions

- +
@@ -5111,7 +5111,7 @@

Functions

- +
@@ -5126,7 +5126,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5141,7 +5141,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5156,7 +5156,7 @@

Functions

- +
@@ -5171,7 +5171,7 @@

Functions

- +
@@ -5186,7 +5186,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5201,7 +5201,7 @@

Functions

- +
@@ -5216,7 +5216,7 @@

Functions

- +
@@ -5231,7 +5231,7 @@

Functions

- +
@@ -5246,7 +5246,7 @@

Functions

- +
@@ -5261,7 +5261,7 @@

Functions

- +
@@ -5276,7 +5276,7 @@

Functions

- +
@@ -5291,7 +5291,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5306,7 +5306,7 @@

Functions

- +
@@ -5321,7 +5321,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5336,7 +5336,7 @@

Functions

- +
@@ -5351,7 +5351,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5366,7 +5366,7 @@

Functions

-
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

+
open fun isRequired(): Boolean

Specifies whether the text inside input field is required to be filled before sending. If the field doesn't require, then it may be sent to the server as empty.

@@ -5381,7 +5381,7 @@

Functions

- +
@@ -5396,7 +5396,7 @@

Functions

- +
@@ -5411,7 +5411,7 @@

Functions

- +
@@ -5426,7 +5426,7 @@

Functions

- +
@@ -5441,7 +5441,7 @@

Functions

- +
@@ -5456,7 +5456,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5471,7 +5471,7 @@

Functions

- +
@@ -5486,7 +5486,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5501,7 +5501,7 @@

Functions

- +
@@ -5516,7 +5516,7 @@

Functions

- +
@@ -5531,7 +5531,7 @@

Functions

- +
@@ -5546,7 +5546,7 @@

Functions

- +
@@ -5561,7 +5561,7 @@

Functions

- +
@@ -5576,7 +5576,7 @@

Functions

-

Returns the validation status for this view.

+

Returns the validation status for this view.

@@ -5591,7 +5591,7 @@

Functions

- +
@@ -5606,7 +5606,7 @@

Functions

- +
@@ -5621,7 +5621,7 @@

Functions

- +
@@ -5651,7 +5651,7 @@

Functions

- +
@@ -5681,7 +5681,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5711,7 +5711,7 @@

Functions

- +
@@ -5726,7 +5726,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5741,7 +5741,7 @@

Functions

- +
@@ -5756,7 +5756,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5771,7 +5771,7 @@

Functions

- +
@@ -5801,7 +5801,7 @@

Functions

- +
@@ -5816,7 +5816,7 @@

Functions

- +
@@ -5831,7 +5831,7 @@

Functions

- +
@@ -5846,7 +5846,7 @@

Functions

- +
@@ -5861,7 +5861,7 @@

Functions

- +
@@ -5876,7 +5876,7 @@

Functions

- +
@@ -5906,7 +5906,7 @@

Functions

- +
@@ -5921,7 +5921,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -5936,7 +5936,7 @@

Functions

- +
@@ -5951,7 +5951,7 @@

Functions

- +
@@ -5966,7 +5966,7 @@

Functions

- +
@@ -5981,7 +5981,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -5996,7 +5996,7 @@

Functions

- +
@@ -6011,7 +6011,7 @@

Functions

- +
@@ -6026,7 +6026,7 @@

Functions

- +
@@ -6041,7 +6041,7 @@

Functions

- +
@@ -6056,7 +6056,7 @@

Functions

- +
@@ -6116,7 +6116,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -6131,7 +6131,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6251,7 +6251,7 @@

Functions

- +
@@ -6266,7 +6266,7 @@

Functions

- +
@@ -6281,7 +6281,7 @@

Functions

- +
@@ -6296,7 +6296,7 @@

Functions

- +
@@ -6311,7 +6311,7 @@

Functions

- +
@@ -6326,7 +6326,7 @@

Functions

- +
@@ -6341,7 +6341,7 @@

Functions

- +
@@ -6356,7 +6356,7 @@

Functions

- +
@@ -6371,7 +6371,7 @@

Functions

- +
@@ -6401,7 +6401,7 @@

Functions

- +
@@ -6416,7 +6416,7 @@

Functions

- +
@@ -6431,7 +6431,7 @@

Functions

- +
@@ -6461,7 +6461,7 @@

Functions

- +
@@ -6491,7 +6491,7 @@

Functions

- +
@@ -6506,7 +6506,7 @@

Functions

- +
@@ -6521,7 +6521,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6536,7 +6536,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6551,7 +6551,7 @@

Functions

- +
@@ -6566,7 +6566,7 @@

Functions

- +
@@ -6581,7 +6581,7 @@

Functions

- +
@@ -6596,7 +6596,7 @@

Functions

- +
@@ -6611,7 +6611,7 @@

Functions

- +
@@ -6626,7 +6626,7 @@

Functions

- +
@@ -6656,7 +6656,7 @@

Functions

- +
@@ -6671,7 +6671,7 @@

Functions

- +
@@ -6686,7 +6686,7 @@

Functions

- +
@@ -6701,7 +6701,7 @@

Functions

- +
@@ -6716,7 +6716,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6731,7 +6731,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6746,7 +6746,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6761,7 +6761,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6776,7 +6776,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6791,7 +6791,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6806,7 +6806,7 @@

Functions

- +
@@ -6821,7 +6821,7 @@

Functions

- +
@@ -6851,7 +6851,7 @@

Functions

- +
@@ -6866,7 +6866,7 @@

Functions

- +
@@ -6881,7 +6881,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6896,7 +6896,7 @@

Functions

- +
@@ -6911,7 +6911,7 @@

Functions

- +
@@ -6926,7 +6926,7 @@

Functions

- +
@@ -6941,7 +6941,7 @@

Functions

- +
@@ -6956,7 +6956,7 @@

Functions

- +
@@ -6971,7 +6971,7 @@

Functions

-

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

+

Removes the specified OnTextChangedListener from the list of those whose methods are called whenever this field text changes.

@@ -7001,7 +7001,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -7016,7 +7016,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -7031,7 +7031,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -7046,7 +7046,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -7061,7 +7061,7 @@

Functions

- +
@@ -7121,7 +7121,7 @@

Functions

- +
@@ -7136,7 +7136,7 @@

Functions

-

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

+

open override fun requestFocus(direction: Int, previouslyFocusedRect: Rect?): Boolean

Call this to try to give focus to a specific view or to one of its descendants and give it hints about the direction and a specific rectangle that the focus is coming from. The rectangle can help give larger views a finer grained hint about where focus is coming from, and therefore, where to show selection, or forward focus change internally.

@@ -7151,7 +7151,7 @@

Functions

- +
@@ -7166,7 +7166,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7181,7 +7181,7 @@

Functions

- +
@@ -7196,7 +7196,7 @@

Functions

- +
@@ -7241,7 +7241,7 @@

Functions

- +
@@ -7256,7 +7256,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7271,7 +7271,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7301,7 +7301,7 @@

Functions

- +
@@ -7316,7 +7316,7 @@

Functions

- +
@@ -7331,7 +7331,7 @@

Functions

- +
@@ -7361,7 +7361,7 @@

Functions

- +
@@ -7376,7 +7376,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7391,7 +7391,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7436,7 +7436,7 @@

Functions

- +
@@ -7451,7 +7451,7 @@

Functions

- +
@@ -7466,7 +7466,7 @@

Functions

- +
@@ -7481,7 +7481,7 @@

Functions

- +
@@ -7496,7 +7496,7 @@

Functions

- +
@@ -7511,7 +7511,7 @@

Functions

- +
@@ -7526,7 +7526,7 @@

Functions

- +
@@ -7541,7 +7541,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7556,7 +7556,7 @@

Functions

- +
@@ -7571,7 +7571,7 @@

Functions

- +
@@ -7586,7 +7586,7 @@

Functions

- +
@@ -7601,7 +7601,7 @@

Functions

- +
@@ -7616,7 +7616,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7631,7 +7631,7 @@

Functions

- +
@@ -7646,7 +7646,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7661,7 +7661,7 @@

Functions

- +
@@ -7676,7 +7676,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7721,7 +7721,7 @@

Functions

- +
@@ -7766,7 +7766,7 @@

Functions

- +
@@ -7781,7 +7781,7 @@

Functions

- +
@@ -7796,7 +7796,7 @@

Functions

- +
@@ -7811,7 +7811,7 @@

Functions

- +
@@ -7826,7 +7826,7 @@

Functions

- +
@@ -7841,7 +7841,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7856,7 +7856,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7871,7 +7871,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -7886,7 +7886,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -7901,7 +7901,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -7916,7 +7916,7 @@

Functions

- +
@@ -7931,7 +7931,7 @@

Functions

- +
@@ -7946,7 +7946,7 @@

Functions

- +
@@ -7976,7 +7976,7 @@

Functions

- +
@@ -7991,7 +7991,7 @@

Functions

-
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

+
open fun setCursorVisible(isVisible: Boolean)

Set whether the cursor is visible.

@@ -8006,7 +8006,7 @@

Functions

- +
@@ -8021,7 +8021,7 @@

Functions

- +
@@ -8036,7 +8036,7 @@

Functions

- +
@@ -8051,7 +8051,7 @@

Functions

- +
@@ -8066,7 +8066,7 @@

Functions

- +
@@ -8081,7 +8081,7 @@

Functions

- +
@@ -8096,7 +8096,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8111,7 +8111,7 @@

Functions

-
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

+
open fun setEllipsize(type: Int)

Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle.

@@ -8141,7 +8141,7 @@

Functions

-

Defines if data requires tokenization.

+

Defines if data requires tokenization.

@@ -8156,7 +8156,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8171,7 +8171,7 @@

Functions

-
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

+
open fun setFieldName(resId: Int)
open fun setFieldName(fieldName: String?)

Sets the text to be used for data transfer to VGS proxy. Usually, it is similar to field-name in JSON path in your inbound route filters.

@@ -8186,7 +8186,7 @@

Functions

- +
@@ -8201,7 +8201,7 @@

Functions

- +
@@ -8246,7 +8246,7 @@

Functions

- +
@@ -8261,7 +8261,7 @@

Functions

- +
@@ -8276,7 +8276,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8306,7 +8306,7 @@

Functions

- +
@@ -8321,7 +8321,7 @@

Functions

- +
@@ -8336,7 +8336,7 @@

Functions

- +
@@ -8351,7 +8351,7 @@

Functions

-
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

+
open fun setGravity(gravity: Int)

Sets the horizontal alignment of the text and the vertical gravity that will be used when there is extra space in the TextView beyond what is required for the text itself.

@@ -8366,7 +8366,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8381,7 +8381,7 @@

Functions

- +
@@ -8396,7 +8396,7 @@

Functions

- +
@@ -8411,7 +8411,7 @@

Functions

- +
@@ -8426,7 +8426,7 @@

Functions

-
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8441,7 +8441,7 @@

Functions

-

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

+

Sets the color of the hint text.

open fun setHintTextColor(color: Int)

Sets the color of the hint text for all the states (disabled, focussed, selected...) of this TextView.

@@ -8456,7 +8456,7 @@

Functions

- +
@@ -8471,7 +8471,7 @@

Functions

- +
@@ -8486,7 +8486,7 @@

Functions

- +
@@ -8501,7 +8501,7 @@

Functions

- +
@@ -8516,7 +8516,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8531,7 +8531,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8546,7 +8546,7 @@

Functions

-
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

+
fun setImeOptions(imeOptions: Int)

Change the editor type integer associated with the text view, which is reported to an Input Method Editor when it has focus.

@@ -8591,7 +8591,7 @@

Functions

- +
@@ -8621,7 +8621,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8636,7 +8636,7 @@

Functions

- +
@@ -8651,7 +8651,7 @@

Functions

-
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

+
open fun setIsRequired(state: Boolean)

Specifies whether the text inside input field is required to be filled before sending.

@@ -8666,7 +8666,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8681,7 +8681,7 @@

Functions

- +
@@ -8696,7 +8696,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8711,7 +8711,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8726,7 +8726,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8741,7 +8741,7 @@

Functions

- +
@@ -8756,7 +8756,7 @@

Functions

- +
@@ -8771,7 +8771,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8786,7 +8786,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8801,7 +8801,7 @@

Functions

- +
@@ -8816,7 +8816,7 @@

Functions

- +
@@ -8831,7 +8831,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8846,7 +8846,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8861,7 +8861,7 @@

Functions

- +
@@ -8876,7 +8876,7 @@

Functions

-
fun setMaxLength(length: Int)

The max text length to display.

+
fun setMaxLength(length: Int)

The max text length to display.

@@ -8891,7 +8891,7 @@

Functions

-
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

+
open fun setMaxLines(lines: Int)

Sets the height of the TextView to be at most maxLines tall.

@@ -8906,7 +8906,7 @@

Functions

- +
@@ -8921,7 +8921,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -8936,7 +8936,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -8951,7 +8951,7 @@

Functions

-
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

+
open fun setMinLines(lines: Int)

Sets the height of the TextView to be at least minLines tall.

@@ -8966,7 +8966,7 @@

Functions

- +
@@ -8981,7 +8981,7 @@

Functions

- +
@@ -8996,7 +8996,7 @@

Functions

- +
@@ -9086,7 +9086,7 @@

Functions

- +
@@ -9101,7 +9101,7 @@

Functions

- +
@@ -9116,7 +9116,7 @@

Functions

- +
@@ -9131,7 +9131,7 @@

Functions

- +
@@ -9146,7 +9146,7 @@

Functions

- +
@@ -9161,7 +9161,7 @@

Functions

- +
@@ -9176,7 +9176,7 @@

Functions

-

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

+

Set a special listener to be called when an action is performed on the text view. This will be called when the enter key is pressed, or when an action supplied to the IME is selected by the user. Setting this means that the normal hard key event will not insert a newline into the text view, even if it is multi-line; holding down the ALT modifier will, however, allow the user to insert a newline character.

@@ -9191,7 +9191,7 @@

Functions

-

This method adds a listener whose methods are called whenever VGS secure field state changes.

+

This method adds a listener whose methods are called whenever VGS secure field state changes.

@@ -9221,7 +9221,7 @@

Functions

- +
@@ -9236,7 +9236,7 @@

Functions

- +
@@ -9251,7 +9251,7 @@

Functions

- +
@@ -9281,7 +9281,7 @@

Functions

- +
@@ -9296,7 +9296,7 @@

Functions

- +
@@ -9311,7 +9311,7 @@

Functions

- +
@@ -9326,7 +9326,7 @@

Functions

- +
@@ -9341,7 +9341,7 @@

Functions

- +
@@ -9356,7 +9356,7 @@

Functions

- +
@@ -9371,7 +9371,7 @@

Functions

- +
@@ -9386,7 +9386,7 @@

Functions

- +
@@ -9401,7 +9401,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9431,7 +9431,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9446,7 +9446,7 @@

Functions

- +
@@ -9461,7 +9461,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9476,7 +9476,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9491,7 +9491,7 @@

Functions

- +
@@ -9506,7 +9506,7 @@

Functions

- +
@@ -9521,7 +9521,7 @@

Functions

- +
@@ -9536,7 +9536,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9551,7 +9551,7 @@

Functions

- +
@@ -9566,7 +9566,7 @@

Functions

- +
@@ -9581,7 +9581,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9596,7 +9596,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9611,7 +9611,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9626,7 +9626,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9641,7 +9641,7 @@

Functions

-
fun setRule(rule: VGSInfoRule)

Set a validation rule for the field.

+
fun setRule(rule: VGSInfoRule)

Set a validation rule for the field.

@@ -9656,7 +9656,7 @@

Functions

-

Set validation rules for the field.

+

Set validation rules for the field.

@@ -9671,7 +9671,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9686,7 +9686,7 @@

Functions

- +
@@ -9701,7 +9701,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9716,7 +9716,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9731,7 +9731,7 @@

Functions

- +
@@ -9746,7 +9746,7 @@

Functions

- +
@@ -9761,7 +9761,7 @@

Functions

- +
@@ -9776,7 +9776,7 @@

Functions

- +
@@ -9791,7 +9791,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9806,7 +9806,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9821,7 +9821,7 @@

Functions

- +
@@ -9836,7 +9836,7 @@

Functions

- +
@@ -9851,7 +9851,7 @@

Functions

- +
@@ -9866,7 +9866,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -9881,7 +9881,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -9896,7 +9896,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -9911,7 +9911,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -9926,7 +9926,7 @@

Functions

-
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

+
fun setSelection(index: Int)

Moves the cursor to the specified offset position in text

@@ -9941,7 +9941,7 @@

Functions

-
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

+
open fun setSingleLine(singleLine: Boolean)

If true, sets the properties of this field (number of lines, horizontally scrolling, transformation method) to be for a single-line input.

@@ -9956,7 +9956,7 @@

Functions

- +
@@ -9971,7 +9971,7 @@

Functions

- +
@@ -9986,7 +9986,7 @@

Functions

- +
@@ -10001,7 +10001,7 @@

Functions

- +
@@ -10016,7 +10016,7 @@

Functions

- +
@@ -10031,7 +10031,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -10046,7 +10046,7 @@

Functions

-
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

+
open fun setText(text: CharSequence?)

Sets the text to be displayed.

open fun setText(resId: Int)

Sets the text to be displayed using a string resource identifier.

open fun setText(text: CharSequence?, type: TextView.BufferType)

Sets the text to be displayed and the TextView.BufferType.

open fun setText(resId: Int, type: TextView.BufferType)

Sets the text to be displayed using a string resource identifier and the TextView.BufferType.

@@ -10061,7 +10061,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10076,7 +10076,7 @@

Functions

-
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

+
@RequiresApi(value = 23)
open fun setTextAppearance(resId: Int)

Sets the text appearance from the specified style resource.

open fun setTextAppearance(context: Context, resId: Int)

Sets the text color, size, style, hint color, and highlight color from the specified TextAppearance resource.

@@ -10091,7 +10091,7 @@

Functions

-
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

+
open fun setTextColor(color: Int)

Sets the text color for all the states (normal, selected, focused) to be this color.

@@ -10106,7 +10106,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10121,7 +10121,7 @@

Functions

-
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

+
open fun setTextSize(size: Float)

Set the default text size to the given value, interpreted as "scaled pixel" units. This size is adjusted based on the current density and user font size preference.

open fun setTextSize(unit: Int, size: Float)

Set the default text size to a given unit and value. See TypedValue for the possible dimension units.

@@ -10136,7 +10136,7 @@

Functions

- +
@@ -10151,7 +10151,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10166,7 +10166,7 @@

Functions

- +
@@ -10181,7 +10181,7 @@

Functions

- +
@@ -10196,7 +10196,7 @@

Functions

- +
@@ -10211,7 +10211,7 @@

Functions

- +
@@ -10226,7 +10226,7 @@

Functions

- +
@@ -10241,7 +10241,7 @@

Functions

- +
@@ -10256,7 +10256,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10271,7 +10271,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10286,7 +10286,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10301,7 +10301,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

open fun setTypeface(tf: Typeface?, style: Int)

Sets the typeface and style in which the text should be displayed, and turns on the fake bold and italic bits in the Paint if the Typeface that you provided does not have all the bits in the style that you specified.

@@ -10316,7 +10316,7 @@

Functions

-

Sets the vault alias format in which data stores on a backend.

+

Sets the vault alias format in which data stores on a backend.

@@ -10331,7 +10331,7 @@

Functions

-

Sets the vault storage type for storing.

+

Sets the vault storage type for storing.

@@ -10346,7 +10346,7 @@

Functions

- +
@@ -10361,7 +10361,7 @@

Functions

- +
@@ -10376,7 +10376,7 @@

Functions

- +
@@ -10391,7 +10391,7 @@

Functions

- +
@@ -10406,7 +10406,7 @@

Functions

- +
@@ -10421,7 +10421,7 @@

Functions

- +
@@ -10436,7 +10436,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10451,7 +10451,7 @@

Functions

- +
@@ -10466,7 +10466,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10496,7 +10496,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10511,7 +10511,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10526,7 +10526,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10556,7 +10556,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10586,7 +10586,7 @@

Functions

-

Explicitly request that the current input method's soft input area be shown to the user, if needed.

+

Explicitly request that the current input method's soft input area be shown to the user, if needed.

@@ -10601,7 +10601,7 @@

Functions

- +
@@ -10631,7 +10631,7 @@

Functions

- +
@@ -10646,7 +10646,7 @@

Functions

- +
@@ -10661,7 +10661,7 @@

Functions

- +
@@ -10676,7 +10676,7 @@

Functions

- +
@@ -10691,7 +10691,7 @@

Functions

- +
@@ -10706,7 +10706,7 @@

Functions

- +
@@ -10721,7 +10721,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10736,7 +10736,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10766,7 +10766,7 @@

Functions

- +
@@ -10781,7 +10781,7 @@

Functions

- +
@@ -10796,7 +10796,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10811,7 +10811,7 @@

Functions

- +
@@ -10841,7 +10841,7 @@

Functions

- +
@@ -10856,7 +10856,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-v-g-s-edit-text/set-enabled-tokenization.html b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-v-g-s-edit-text/set-enabled-tokenization.html index 39ee2cdc2..b94b14965 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-v-g-s-edit-text/set-enabled-tokenization.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect.widget/-v-g-s-edit-text/set-enabled-tokenization.html @@ -66,7 +66,7 @@

setEnabledTokenization

-

Defines if data requires tokenization.

Parameters

isEnabled

Is tokenization enabled.

+

Defines if data requires tokenization.

Parameters

isEnabled

Is tokenization enabled.

-
fun setMaxLength(length: Int)

The max text length to display.

+
fun setMaxLength(length: Int)

The max text length to display.

-
fun setRule(rule: VGSInfoRule)

Set a validation rule for the field.

+
fun setRule(rule: VGSInfoRule)

Set a validation rule for the field.

-

Set validation rules for the field.

+

Set validation rules for the field.

-

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

+

Sets the vault alias format in which data stores on a backend.

Parameters

format

The VGS alias format.

-

Sets the vault storage type for storing.

Parameters

storage

The VGS storage type.

+

Sets the vault storage type for storing.

Parameters

storage

The VGS storage type.

- +
@@ -150,7 +150,7 @@

Functions

-
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
+
open fun addFocusables(p0: ArrayList<View>, p1: Int)
open override fun addFocusables(p0: ArrayList<View>, p1: Int, p2: Int)
@@ -165,7 +165,7 @@

Functions

- +
@@ -195,7 +195,7 @@

Functions

- +
@@ -210,7 +210,7 @@

Functions

- +
@@ -225,7 +225,7 @@

Functions

- +
@@ -240,7 +240,7 @@

Functions

-
open override fun addTouchables(p0: ArrayList<View>)
+
open override fun addTouchables(p0: ArrayList<View>)
@@ -270,7 +270,7 @@

Functions

- +
@@ -285,7 +285,7 @@

Functions

- +
@@ -300,7 +300,7 @@

Functions

- +
@@ -330,7 +330,7 @@

Functions

-
open fun bringToFront()
+
open fun bringToFront()
@@ -345,7 +345,7 @@

Functions

- +
@@ -360,7 +360,7 @@

Functions

-
open fun buildLayer()
+
open fun buildLayer()
@@ -375,7 +375,7 @@

Functions

-
open fun callOnClick(): Boolean
+
open fun callOnClick(): Boolean
@@ -390,7 +390,7 @@

Functions

- +
@@ -405,7 +405,7 @@

Functions

-
open fun cancelLongPress()
+
open fun cancelLongPress()
@@ -420,7 +420,7 @@

Functions

- +
@@ -435,7 +435,7 @@

Functions

- +
@@ -450,7 +450,7 @@

Functions

- +
@@ -465,7 +465,7 @@

Functions

- +
@@ -480,7 +480,7 @@

Functions

- +
@@ -495,7 +495,7 @@

Functions

- +
@@ -510,7 +510,7 @@

Functions

- +
@@ -555,7 +555,7 @@

Functions

-
open fun clearAnimation()
+
open fun clearAnimation()
@@ -585,7 +585,7 @@

Functions

- +
@@ -615,7 +615,7 @@

Functions

- +
@@ -630,7 +630,7 @@

Functions

-
open fun computeScroll()
+
open fun computeScroll()
@@ -645,7 +645,7 @@

Functions

- +
@@ -660,7 +660,7 @@

Functions

- +
@@ -675,7 +675,7 @@

Functions

- +
@@ -690,7 +690,7 @@

Functions

- +
@@ -750,7 +750,7 @@

Functions

- +
@@ -825,7 +825,7 @@

Functions

- +
@@ -885,7 +885,7 @@

Functions

-
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
+
open fun dispatchNestedFling(p0: Float, p1: Float, p2: Boolean): Boolean
@@ -900,7 +900,7 @@

Functions

- +
@@ -915,7 +915,7 @@

Functions

- +
@@ -930,7 +930,7 @@

Functions

-
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
+
open fun dispatchNestedPreScroll(p0: Int, p1: Int, p2: IntArray?, p3: IntArray?): Boolean
@@ -945,7 +945,7 @@

Functions

-
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
+
open fun dispatchNestedScroll(p0: Int, p1: Int, p2: Int, p3: Int, p4: IntArray?): Boolean
@@ -975,7 +975,7 @@

Functions

- +
@@ -1020,7 +1020,7 @@

Functions

- +
@@ -1185,7 +1185,7 @@

Functions

- +
@@ -1245,7 +1245,7 @@

Functions

-
open fun draw(p0: Canvas)
+
open fun draw(p0: Canvas)
@@ -1260,7 +1260,7 @@

Functions

- +
@@ -1275,7 +1275,7 @@

Functions

-
open fun endViewTransition(p0: View)
+
open fun endViewTransition(p0: View)
@@ -1305,7 +1305,7 @@

Functions

- +
@@ -1335,7 +1335,7 @@

Functions

-
fun <T : View> findViewById(p0: Int): T
+
fun <T : View> findViewById(p0: Int): T
@@ -1350,7 +1350,7 @@

Functions

-
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
+
open override fun findViewsWithText(p0: ArrayList<View>, p1: CharSequence, p2: Int)
@@ -1365,7 +1365,7 @@

Functions

-
fun <T : View> findViewWithTag(p0: Any): T
+
fun <T : View> findViewWithTag(p0: Any): T
@@ -1395,7 +1395,7 @@

Functions

-
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
+
open fun focusSearch(p0: Int): View
open override fun focusSearch(p0: View, p1: Int): View
@@ -1410,7 +1410,7 @@

Functions

- +
@@ -1425,7 +1425,7 @@

Functions

-
open fun forceLayout()
+
open fun forceLayout()
@@ -1455,7 +1455,7 @@

Functions

- +
@@ -1500,7 +1500,7 @@

Functions

- +
@@ -1515,7 +1515,7 @@

Functions

- +
@@ -1530,7 +1530,7 @@

Functions

- +
@@ -1545,7 +1545,7 @@

Functions

- +
@@ -1560,7 +1560,7 @@

Functions

- +
@@ -1575,7 +1575,7 @@

Functions

- +
@@ -1590,7 +1590,7 @@

Functions

- +
@@ -1605,7 +1605,7 @@

Functions

- +
@@ -1620,7 +1620,7 @@

Functions

-
open fun getAlpha(): Float
+
open fun getAlpha(): Float
@@ -1635,7 +1635,7 @@

Functions

- +
@@ -1650,7 +1650,7 @@

Functions

- +
@@ -1665,7 +1665,7 @@

Functions

- +
@@ -1680,7 +1680,7 @@

Functions

- +
@@ -1695,7 +1695,7 @@

Functions

- +
@@ -1710,7 +1710,7 @@

Functions

- +
@@ -1725,7 +1725,7 @@

Functions

- +
@@ -1740,7 +1740,7 @@

Functions

-
open fun getAutofillType(): Int
+
open fun getAutofillType(): Int
@@ -1755,7 +1755,7 @@

Functions

- +
@@ -1770,7 +1770,7 @@

Functions

- +
@@ -1785,7 +1785,7 @@

Functions

- +
@@ -1800,7 +1800,7 @@

Functions

- +
@@ -1815,7 +1815,7 @@

Functions

- +
@@ -1830,7 +1830,7 @@

Functions

-
open fun getBaseline(): Int
+
open fun getBaseline(): Int
@@ -1845,7 +1845,7 @@

Functions

-
fun getBottom(): Int
+
fun getBottom(): Int
@@ -1860,7 +1860,7 @@

Functions

- +
@@ -1875,7 +1875,7 @@

Functions

-
open fun getChildAt(p0: Int): View
+
open fun getChildAt(p0: Int): View
@@ -1890,7 +1890,7 @@

Functions

-
open fun getChildCount(): Int
+
open fun getChildCount(): Int
@@ -1905,7 +1905,7 @@

Functions

- +
@@ -1935,7 +1935,7 @@

Functions

-
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
+
open fun getClipBounds(): Rect
open fun getClipBounds(p0: Rect): Boolean
@@ -1950,7 +1950,7 @@

Functions

- +
@@ -1965,7 +1965,7 @@

Functions

- +
@@ -1980,7 +1980,7 @@

Functions

- +
@@ -1995,7 +1995,7 @@

Functions

- +
@@ -2010,7 +2010,7 @@

Functions

- +
@@ -2025,7 +2025,7 @@

Functions

- +
@@ -2040,7 +2040,7 @@

Functions

- +
@@ -2055,7 +2055,7 @@

Functions

- +
@@ -2070,7 +2070,7 @@

Functions

- +
@@ -2085,7 +2085,7 @@

Functions

-
open fun getDisplay(): Display
+
open fun getDisplay(): Display
@@ -2100,7 +2100,7 @@

Functions

- +
@@ -2115,7 +2115,7 @@

Functions

- +
@@ -2130,7 +2130,7 @@

Functions

- +
@@ -2145,7 +2145,7 @@

Functions

- +
@@ -2160,7 +2160,7 @@

Functions

-
open fun getDrawingRect(p0: Rect)
+
open fun getDrawingRect(p0: Rect)
@@ -2175,7 +2175,7 @@

Functions

-
open fun getDrawingTime(): Long
+
open fun getDrawingTime(): Long
@@ -2190,7 +2190,7 @@

Functions

-
open fun getElevation(): Float
+
open fun getElevation(): Float
@@ -2205,7 +2205,7 @@

Functions

-

Returns the current {@link EndIconMode}.

+

Returns the current {@link EndIconMode}.

@@ -2220,7 +2220,7 @@

Functions

-

Returns the error message that was set to be displayed with setError(CharSequence), or null if no error was set or if error displaying is not enabled.

+

Returns the error message that was set to be displayed with setError(CharSequence), or null if no error was set or if error displaying is not enabled.

@@ -2235,7 +2235,7 @@

Functions

-
open fun getExplicitStyle(): Int
+
open fun getExplicitStyle(): Int
@@ -2250,7 +2250,7 @@

Functions

- +
@@ -2265,7 +2265,7 @@

Functions

- +
@@ -2280,7 +2280,7 @@

Functions

-
open fun getFocusable(): Int
+
open fun getFocusable(): Int
@@ -2295,7 +2295,7 @@

Functions

- +
@@ -2310,7 +2310,7 @@

Functions

-
open fun getFocusedChild(): View
+
open fun getFocusedChild(): View
@@ -2325,7 +2325,7 @@

Functions

-
open fun getFocusedRect(p0: Rect)
+
open fun getFocusedRect(p0: Rect)
@@ -2340,7 +2340,7 @@

Functions

- +
@@ -2355,7 +2355,7 @@

Functions

- +
@@ -2370,7 +2370,7 @@

Functions

- +
@@ -2385,7 +2385,7 @@

Functions

- +
@@ -2400,7 +2400,7 @@

Functions

- +
@@ -2415,7 +2415,7 @@

Functions

- +
@@ -2430,7 +2430,7 @@

Functions

-
open fun getHandler(): Handler
+
open fun getHandler(): Handler
@@ -2445,7 +2445,7 @@

Functions

- +
@@ -2460,7 +2460,7 @@

Functions

- +
@@ -2475,7 +2475,7 @@

Functions

- +
@@ -2490,7 +2490,7 @@

Functions

- +
@@ -2505,7 +2505,7 @@

Functions

- +
@@ -2520,7 +2520,7 @@

Functions

- +
@@ -2535,7 +2535,7 @@

Functions

-
fun getHeight(): Int
+
fun getHeight(): Int
@@ -2550,7 +2550,7 @@

Functions

-

Returns the helper message that was set to be displayed with setHelperText(CharSequence), or null if no helper text was set or if helper text functionality is not enabled.

+

Returns the helper message that was set to be displayed with setHelperText(CharSequence), or null if no helper text was set or if helper text functionality is not enabled.

@@ -2565,7 +2565,7 @@

Functions

-
open fun getHint(): CharSequence?

Returns the hint that is displayed when the text of the TextView is empty.

+
open fun getHint(): CharSequence?

Returns the hint that is displayed when the text of the TextView is empty.

@@ -2580,7 +2580,7 @@

Functions

-

Gets the collapsed hint text color.

+

Gets the collapsed hint text color.

@@ -2595,7 +2595,7 @@

Functions

-
open fun getHitRect(p0: Rect)
+
open fun getHitRect(p0: Rect)
@@ -2610,7 +2610,7 @@

Functions

- +
@@ -2625,7 +2625,7 @@

Functions

- +
@@ -2640,7 +2640,7 @@

Functions

- +
@@ -2655,7 +2655,7 @@

Functions

-
open fun getId(): Int
+
open fun getId(): Int
@@ -2670,7 +2670,7 @@

Functions

- +
@@ -2685,7 +2685,7 @@

Functions

- +
@@ -2700,7 +2700,7 @@

Functions

- +
@@ -2715,7 +2715,7 @@

Functions

- +
@@ -2730,7 +2730,7 @@

Functions

- +
@@ -2745,7 +2745,7 @@

Functions

-
open fun getLabelFor(): Int
+
open fun getLabelFor(): Int
@@ -2760,7 +2760,7 @@

Functions

-
open fun getLayerType(): Int
+
open fun getLayerType(): Int
@@ -2775,7 +2775,7 @@

Functions

- +
@@ -2790,7 +2790,7 @@

Functions

- +
@@ -2805,7 +2805,7 @@

Functions

- +
@@ -2820,7 +2820,7 @@

Functions

-
open fun getLayoutMode(): Int
+
open fun getLayoutMode(): Int
@@ -2835,7 +2835,7 @@

Functions

- +
@@ -2850,7 +2850,7 @@

Functions

- +
@@ -2865,7 +2865,7 @@

Functions

-
fun getLeft(): Int
+
fun getLeft(): Int
@@ -2880,7 +2880,7 @@

Functions

- +
@@ -2895,7 +2895,7 @@

Functions

- +
@@ -2910,7 +2910,7 @@

Functions

- +
@@ -2925,7 +2925,7 @@

Functions

- +
@@ -2940,7 +2940,7 @@

Functions

-
open fun getMatrix(): Matrix
+
open fun getMatrix(): Matrix
@@ -2955,7 +2955,7 @@

Functions

- +
@@ -2970,7 +2970,7 @@

Functions

- +
@@ -2985,7 +2985,7 @@

Functions

- +
@@ -3000,7 +3000,7 @@

Functions

- +
@@ -3015,7 +3015,7 @@

Functions

- +
@@ -3030,7 +3030,7 @@

Functions

- +
@@ -3045,7 +3045,7 @@

Functions

-
open fun getMinimumHeight(): Int
+
open fun getMinimumHeight(): Int
@@ -3060,7 +3060,7 @@

Functions

-
open fun getMinimumWidth(): Int
+
open fun getMinimumWidth(): Int
@@ -3075,7 +3075,7 @@

Functions

- +
@@ -3090,7 +3090,7 @@

Functions

- +
@@ -3105,7 +3105,7 @@

Functions

- +
@@ -3120,7 +3120,7 @@

Functions

- +
@@ -3135,7 +3135,7 @@

Functions

- +
@@ -3150,7 +3150,7 @@

Functions

- +
@@ -3165,7 +3165,7 @@

Functions

-
open fun getNextFocusUpId(): Int
+
open fun getNextFocusUpId(): Int
@@ -3180,7 +3180,7 @@

Functions

- +
@@ -3195,7 +3195,7 @@

Functions

- +
@@ -3210,7 +3210,7 @@

Functions

- +
@@ -3225,7 +3225,7 @@

Functions

- +
@@ -3255,7 +3255,7 @@

Functions

- +
@@ -3360,7 +3360,7 @@

Functions

- +
@@ -3375,7 +3375,7 @@

Functions

- +
@@ -3390,7 +3390,7 @@

Functions

- +
@@ -3405,7 +3405,7 @@

Functions

-
open fun getPivotX(): Float
+
open fun getPivotX(): Float
@@ -3420,7 +3420,7 @@

Functions

-
open fun getPivotY(): Float
+
open fun getPivotY(): Float
@@ -3435,7 +3435,7 @@

Functions

- +
@@ -3450,7 +3450,7 @@

Functions

- +
@@ -3465,7 +3465,7 @@

Functions

- +
@@ -3480,7 +3480,7 @@

Functions

- +
@@ -3495,7 +3495,7 @@

Functions

- +
@@ -3510,7 +3510,7 @@

Functions

-
fun getRight(): Int
+
fun getRight(): Int
@@ -3525,7 +3525,7 @@

Functions

- +
@@ -3540,7 +3540,7 @@

Functions

-
open fun getRootView(): View
+
open fun getRootView(): View
@@ -3555,7 +3555,7 @@

Functions

- +
@@ -3570,7 +3570,7 @@

Functions

-
open fun getRotation(): Float
+
open fun getRotation(): Float
@@ -3585,7 +3585,7 @@

Functions

-
open fun getRotationX(): Float
+
open fun getRotationX(): Float
@@ -3600,7 +3600,7 @@

Functions

-
open fun getRotationY(): Float
+
open fun getRotationY(): Float
@@ -3615,7 +3615,7 @@

Functions

-
open fun getScaleX(): Float
+
open fun getScaleX(): Float
@@ -3630,7 +3630,7 @@

Functions

-
open fun getScaleY(): Float
+
open fun getScaleY(): Float
@@ -3645,7 +3645,7 @@

Functions

- +
@@ -3660,7 +3660,7 @@

Functions

- +
@@ -3675,7 +3675,7 @@

Functions

-
open fun getScrollBarSize(): Int
+
open fun getScrollBarSize(): Int
@@ -3690,7 +3690,7 @@

Functions

- +
@@ -3705,7 +3705,7 @@

Functions

- +
@@ -3720,7 +3720,7 @@

Functions

- +
@@ -3735,7 +3735,7 @@

Functions

- +
@@ -3750,7 +3750,7 @@

Functions

- +
@@ -3765,7 +3765,7 @@

Functions

-
open fun getSolidColor(): Int
+
open fun getSolidColor(): Int
@@ -3780,7 +3780,7 @@

Functions

- +
@@ -3795,7 +3795,7 @@

Functions

- +
@@ -3810,7 +3810,7 @@

Functions

- +
@@ -3825,7 +3825,7 @@

Functions

- +
@@ -3840,7 +3840,7 @@

Functions

- +
@@ -3855,7 +3855,7 @@

Functions

-
open fun getTag(): Any
open fun getTag(p0: Int): Any
+
open fun getTag(): Any
open fun getTag(p0: Int): Any
@@ -3870,7 +3870,7 @@

Functions

-
open fun getTextAlignment(): Int
+
open fun getTextAlignment(): Int
@@ -3885,7 +3885,7 @@

Functions

-
open fun getTextDirection(): Int
+
open fun getTextDirection(): Int
@@ -3900,7 +3900,7 @@

Functions

- +
@@ -3915,7 +3915,7 @@

Functions

-
fun getTop(): Int
+
fun getTop(): Int
@@ -3930,7 +3930,7 @@

Functions

- +
@@ -3945,7 +3945,7 @@

Functions

- +
@@ -3960,7 +3960,7 @@

Functions

- +
@@ -3975,7 +3975,7 @@

Functions

- +
@@ -3990,7 +3990,7 @@

Functions

- +
@@ -4005,7 +4005,7 @@

Functions

- +
@@ -4020,7 +4020,7 @@

Functions

- +
@@ -4035,7 +4035,7 @@

Functions

- +
@@ -4050,7 +4050,7 @@

Functions

-

Returns the typeface used for the hint and any label views (such as counter and error views).

+

Returns the typeface used for the hint and any label views (such as counter and error views).

@@ -4065,7 +4065,7 @@

Functions

- +
@@ -4080,7 +4080,7 @@

Functions

- +
@@ -4095,7 +4095,7 @@

Functions

- +
@@ -4110,7 +4110,7 @@

Functions

- +
@@ -4125,7 +4125,7 @@

Functions

- +
@@ -4140,7 +4140,7 @@

Functions

- +
@@ -4155,7 +4155,7 @@

Functions

- +
@@ -4170,7 +4170,7 @@

Functions

- +
@@ -4185,7 +4185,7 @@

Functions

-
open fun getVisibility(): Int
+
open fun getVisibility(): Int
@@ -4200,7 +4200,7 @@

Functions

-
fun getWidth(): Int
+
fun getWidth(): Int
@@ -4215,7 +4215,7 @@

Functions

-
open fun getWindowId(): WindowId
+
open fun getWindowId(): WindowId
@@ -4230,7 +4230,7 @@

Functions

- +
@@ -4245,7 +4245,7 @@

Functions

- +
@@ -4260,7 +4260,7 @@

Functions

- +
@@ -4275,7 +4275,7 @@

Functions

- +
@@ -4290,7 +4290,7 @@

Functions

- +
@@ -4305,7 +4305,7 @@

Functions

-
open fun getX(): Float
+
open fun getX(): Float
@@ -4320,7 +4320,7 @@

Functions

-
open fun getY(): Float
+
open fun getY(): Float
@@ -4335,7 +4335,7 @@

Functions

-
open fun getZ(): Float
+
open fun getZ(): Float
@@ -4350,7 +4350,7 @@

Functions

- +
@@ -4380,7 +4380,7 @@

Functions

-
open fun hasFocusable(): Boolean
+
open fun hasFocusable(): Boolean
@@ -4395,7 +4395,7 @@

Functions

- +
@@ -4410,7 +4410,7 @@

Functions

- +
@@ -4425,7 +4425,7 @@

Functions

- +
@@ -4440,7 +4440,7 @@

Functions

- +
@@ -4455,7 +4455,7 @@

Functions

- +
@@ -4485,7 +4485,7 @@

Functions

- +
@@ -4500,7 +4500,7 @@

Functions

-
open fun indexOfChild(p0: View): Int
+
open fun indexOfChild(p0: View): Int
@@ -4515,7 +4515,7 @@

Functions

-
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun invalidate()
open fun invalidate(p0: Rect)
open fun invalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -4575,7 +4575,7 @@

Functions

- +
@@ -4590,7 +4590,7 @@

Functions

- +
@@ -4605,7 +4605,7 @@

Functions

- +
@@ -4620,7 +4620,7 @@

Functions

- +
@@ -4635,7 +4635,7 @@

Functions

-
open fun isActivated(): Boolean
+
open fun isActivated(): Boolean
@@ -4650,7 +4650,7 @@

Functions

- +
@@ -4665,7 +4665,7 @@

Functions

- +
@@ -4680,7 +4680,7 @@

Functions

- +
@@ -4695,7 +4695,7 @@

Functions

- +
@@ -4710,7 +4710,7 @@

Functions

-
open fun isClickable(): Boolean
+
open fun isClickable(): Boolean
@@ -4725,7 +4725,7 @@

Functions

- +
@@ -4740,7 +4740,7 @@

Functions

-
open fun isCredential(): Boolean
+
open fun isCredential(): Boolean
@@ -4755,7 +4755,7 @@

Functions

-
open fun isDirty(): Boolean
+
open fun isDirty(): Boolean
@@ -4770,7 +4770,7 @@

Functions

- +
@@ -4785,7 +4785,7 @@

Functions

- +
@@ -4800,7 +4800,7 @@

Functions

-
open fun isEnabled(): Boolean
+
open fun isEnabled(): Boolean
@@ -4815,7 +4815,7 @@

Functions

- +
@@ -4830,7 +4830,7 @@

Functions

- +
@@ -4845,7 +4845,7 @@

Functions

-
open fun isFocused(): Boolean
+
open fun isFocused(): Boolean
@@ -4860,7 +4860,7 @@

Functions

- +
@@ -4875,7 +4875,7 @@

Functions

- +
@@ -4890,7 +4890,7 @@

Functions

- +
@@ -4905,7 +4905,7 @@

Functions

- +
@@ -4920,7 +4920,7 @@

Functions

- +
@@ -4935,7 +4935,7 @@

Functions

- +
@@ -4950,7 +4950,7 @@

Functions

- +
@@ -4965,7 +4965,7 @@

Functions

-
open fun isHovered(): Boolean
+
open fun isHovered(): Boolean
@@ -4980,7 +4980,7 @@

Functions

- +
@@ -4995,7 +4995,7 @@

Functions

- +
@@ -5010,7 +5010,7 @@

Functions

- +
@@ -5025,7 +5025,7 @@

Functions

-
open fun isInEditMode(): Boolean
+
open fun isInEditMode(): Boolean
@@ -5040,7 +5040,7 @@

Functions

-
open fun isInLayout(): Boolean
+
open fun isInLayout(): Boolean
@@ -5055,7 +5055,7 @@

Functions

- +
@@ -5070,7 +5070,7 @@

Functions

- +
@@ -5085,7 +5085,7 @@

Functions

-
open fun isLaidOut(): Boolean
+
open fun isLaidOut(): Boolean
@@ -5100,7 +5100,7 @@

Functions

- +
@@ -5115,7 +5115,7 @@

Functions

- +
@@ -5130,7 +5130,7 @@

Functions

- +
@@ -5145,7 +5145,7 @@

Functions

- +
@@ -5160,7 +5160,7 @@

Functions

- +
@@ -5175,7 +5175,7 @@

Functions

- +
@@ -5190,7 +5190,7 @@

Functions

-
open fun isOpaque(): Boolean
+
open fun isOpaque(): Boolean
@@ -5205,7 +5205,7 @@

Functions

- +
@@ -5220,7 +5220,7 @@

Functions

-
open fun isPivotSet(): Boolean
+
open fun isPivotSet(): Boolean
@@ -5235,7 +5235,7 @@

Functions

- +
@@ -5250,7 +5250,7 @@

Functions

-
open fun isPressed(): Boolean
+
open fun isPressed(): Boolean
@@ -5265,7 +5265,7 @@

Functions

- +
@@ -5280,7 +5280,7 @@

Functions

- +
@@ -5295,7 +5295,7 @@

Functions

- +
@@ -5310,7 +5310,7 @@

Functions

- +
@@ -5325,7 +5325,7 @@

Functions

- +
@@ -5340,7 +5340,7 @@

Functions

-
open fun isSelected(): Boolean
+
open fun isSelected(): Boolean
@@ -5355,7 +5355,7 @@

Functions

- +
@@ -5370,7 +5370,7 @@

Functions

-
open fun isShown(): Boolean
+
open fun isShown(): Boolean
@@ -5385,7 +5385,7 @@

Functions

- +
@@ -5400,7 +5400,7 @@

Functions

- +
@@ -5415,7 +5415,7 @@

Functions

- +
@@ -5430,7 +5430,7 @@

Functions

- +
@@ -5445,7 +5445,7 @@

Functions

- +
@@ -5460,7 +5460,7 @@

Functions

- +
@@ -5475,7 +5475,7 @@

Functions

- +
@@ -5490,7 +5490,7 @@

Functions

- +
@@ -5520,7 +5520,7 @@

Functions

- +
@@ -5550,7 +5550,7 @@

Functions

-
fun measure(p0: Int, p1: Int)
+
fun measure(p0: Int, p1: Int)
@@ -5580,7 +5580,7 @@

Functions

- +
@@ -5595,7 +5595,7 @@

Functions

-
open fun offsetLeftAndRight(p0: Int)
+
open fun offsetLeftAndRight(p0: Int)
@@ -5610,7 +5610,7 @@

Functions

- +
@@ -5625,7 +5625,7 @@

Functions

-
open fun offsetTopAndBottom(p0: Int)
+
open fun offsetTopAndBottom(p0: Int)
@@ -5640,7 +5640,7 @@

Functions

- +
@@ -5655,7 +5655,7 @@

Functions

- +
@@ -5670,7 +5670,7 @@

Functions

- +
@@ -5685,7 +5685,7 @@

Functions

- +
@@ -5700,7 +5700,7 @@

Functions

- +
@@ -5715,7 +5715,7 @@

Functions

- +
@@ -5730,7 +5730,7 @@

Functions

- +
@@ -5760,7 +5760,7 @@

Functions

- +
@@ -5775,7 +5775,7 @@

Functions

-
open fun onDrawForeground(p0: Canvas)
+
open fun onDrawForeground(p0: Canvas)
@@ -5790,7 +5790,7 @@

Functions

- +
@@ -5805,7 +5805,7 @@

Functions

- +
@@ -5820,7 +5820,7 @@

Functions

- +
@@ -5835,7 +5835,7 @@

Functions

-
open fun onHoverChanged(p0: Boolean)
+
open fun onHoverChanged(p0: Boolean)
@@ -5850,7 +5850,7 @@

Functions

- +
@@ -5865,7 +5865,7 @@

Functions

- +
@@ -5880,7 +5880,7 @@

Functions

- +
@@ -5895,7 +5895,7 @@

Functions

- +
@@ -5910,7 +5910,7 @@

Functions

- +
@@ -5970,7 +5970,7 @@

Functions

-
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyPreIme(p0: Int, p1: KeyEvent): Boolean
@@ -5985,7 +5985,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -6105,7 +6105,7 @@

Functions

- +
@@ -6120,7 +6120,7 @@

Functions

- +
@@ -6135,7 +6135,7 @@

Functions

- +
@@ -6150,7 +6150,7 @@

Functions

- +
@@ -6165,7 +6165,7 @@

Functions

- +
@@ -6180,7 +6180,7 @@

Functions

- +
@@ -6195,7 +6195,7 @@

Functions

- +
@@ -6210,7 +6210,7 @@

Functions

- +
@@ -6225,7 +6225,7 @@

Functions

- +
@@ -6255,7 +6255,7 @@

Functions

- +
@@ -6270,7 +6270,7 @@

Functions

- +
@@ -6285,7 +6285,7 @@

Functions

- +
@@ -6315,7 +6315,7 @@

Functions

- +
@@ -6345,7 +6345,7 @@

Functions

- +
@@ -6360,7 +6360,7 @@

Functions

- +
@@ -6375,7 +6375,7 @@

Functions

-
open fun onViewAdded(p0: View)
+
open fun onViewAdded(p0: View)
@@ -6390,7 +6390,7 @@

Functions

-
open fun onViewRemoved(p0: View)
+
open fun onViewRemoved(p0: View)
@@ -6405,7 +6405,7 @@

Functions

- +
@@ -6420,7 +6420,7 @@

Functions

- +
@@ -6435,7 +6435,7 @@

Functions

- +
@@ -6450,7 +6450,7 @@

Functions

- +
@@ -6465,7 +6465,7 @@

Functions

- +
@@ -6480,7 +6480,7 @@

Functions

- +
@@ -6495,7 +6495,7 @@

Functions

-
open fun performClick(): Boolean
+
open fun performClick(): Boolean
@@ -6510,7 +6510,7 @@

Functions

- +
@@ -6525,7 +6525,7 @@

Functions

- +
@@ -6540,7 +6540,7 @@

Functions

- +
@@ -6555,7 +6555,7 @@

Functions

- +
@@ -6570,7 +6570,7 @@

Functions

-
open fun playSoundEffect(p0: Int)
+
open fun playSoundEffect(p0: Int)
@@ -6585,7 +6585,7 @@

Functions

-
open fun post(p0: Runnable): Boolean
+
open fun post(p0: Runnable): Boolean
@@ -6600,7 +6600,7 @@

Functions

-
open fun postDelayed(p0: Runnable, p1: Long): Boolean
+
open fun postDelayed(p0: Runnable, p1: Long): Boolean
@@ -6615,7 +6615,7 @@

Functions

-
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidate()
open fun postInvalidate(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6630,7 +6630,7 @@

Functions

-
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
+
open fun postInvalidateDelayed(p0: Long, p1: Int, p2: Int, p3: Int, p4: Int)
@@ -6645,7 +6645,7 @@

Functions

-
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun postInvalidateOnAnimation(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -6660,7 +6660,7 @@

Functions

- +
@@ -6675,7 +6675,7 @@

Functions

- +
@@ -6705,7 +6705,7 @@

Functions

- +
@@ -6720,7 +6720,7 @@

Functions

- +
@@ -6735,7 +6735,7 @@

Functions

-
open fun removeAllViews()
+
open fun removeAllViews()
@@ -6750,7 +6750,7 @@

Functions

- +
@@ -6765,7 +6765,7 @@

Functions

- +
@@ -6780,7 +6780,7 @@

Functions

- +
@@ -6795,7 +6795,7 @@

Functions

- +
@@ -6810,7 +6810,7 @@

Functions

- +
@@ -6840,7 +6840,7 @@

Functions

-
open fun removeViewAt(p0: Int)
+
open fun removeViewAt(p0: Int)
@@ -6855,7 +6855,7 @@

Functions

-
open fun removeViewInLayout(p0: View)
+
open fun removeViewInLayout(p0: View)
@@ -6870,7 +6870,7 @@

Functions

-
open fun removeViews(p0: Int, p1: Int)
+
open fun removeViews(p0: Int, p1: Int)
@@ -6885,7 +6885,7 @@

Functions

-
open fun removeViewsInLayout(p0: Int, p1: Int)
+
open fun removeViewsInLayout(p0: Int, p1: Int)
@@ -6900,7 +6900,7 @@

Functions

- +
@@ -6960,7 +6960,7 @@

Functions

- +
@@ -6975,7 +6975,7 @@

Functions

-
open override fun requestFocus(p0: Int, p1: Rect): Boolean
+
open override fun requestFocus(p0: Int, p1: Rect): Boolean
@@ -6990,7 +6990,7 @@

Functions

- +
@@ -7005,7 +7005,7 @@

Functions

-
open fun requestLayout()
+
open fun requestLayout()
@@ -7020,7 +7020,7 @@

Functions

- +
@@ -7035,7 +7035,7 @@

Functions

- +
@@ -7080,7 +7080,7 @@

Functions

- +
@@ -7095,7 +7095,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -7110,7 +7110,7 @@

Functions

-
open fun resetPivot()
+
open fun resetPivot()
@@ -7140,7 +7140,7 @@

Functions

- +
@@ -7155,7 +7155,7 @@

Functions

- +
@@ -7170,7 +7170,7 @@

Functions

- +
@@ -7200,7 +7200,7 @@

Functions

- +
@@ -7215,7 +7215,7 @@

Functions

-
open fun scrollBy(p0: Int, p1: Int)
+
open fun scrollBy(p0: Int, p1: Int)
@@ -7230,7 +7230,7 @@

Functions

-
open fun scrollTo(p0: Int, p1: Int)
+
open fun scrollTo(p0: Int, p1: Int)
@@ -7275,7 +7275,7 @@

Functions

- +
@@ -7290,7 +7290,7 @@

Functions

- +
@@ -7305,7 +7305,7 @@

Functions

- +
@@ -7320,7 +7320,7 @@

Functions

- +
@@ -7335,7 +7335,7 @@

Functions

- +
@@ -7350,7 +7350,7 @@

Functions

- +
@@ -7365,7 +7365,7 @@

Functions

- +
@@ -7380,7 +7380,7 @@

Functions

-
open fun setActivated(p0: Boolean)
+
open fun setActivated(p0: Boolean)
@@ -7395,7 +7395,7 @@

Functions

- +
@@ -7410,7 +7410,7 @@

Functions

- +
@@ -7425,7 +7425,7 @@

Functions

- +
@@ -7440,7 +7440,7 @@

Functions

- +
@@ -7455,7 +7455,7 @@

Functions

-
open fun setAlpha(p0: Float)
+
open fun setAlpha(p0: Float)
@@ -7470,7 +7470,7 @@

Functions

- +
@@ -7485,7 +7485,7 @@

Functions

-
open fun setAnimation(p0: Animation)
+
open fun setAnimation(p0: Animation)
@@ -7500,7 +7500,7 @@

Functions

- +
@@ -7515,7 +7515,7 @@

Functions

-
open fun setAnimationMatrix(p0: Matrix?)
+
open fun setAnimationMatrix(p0: Matrix?)
@@ -7530,7 +7530,7 @@

Functions

-
open fun setAutofillHints(vararg p0: String)
+
open fun setAutofillHints(vararg p0: String)
@@ -7545,7 +7545,7 @@

Functions

-
open fun setAutofillId(p0: AutofillId?)
+
open fun setAutofillId(p0: AutofillId?)
@@ -7560,7 +7560,7 @@

Functions

- +
@@ -7575,7 +7575,7 @@

Functions

-
open fun setBackground(p0: Drawable)
+
open fun setBackground(p0: Drawable)
@@ -7590,7 +7590,7 @@

Functions

-
open fun setBackgroundColor(p0: Int)
+
open fun setBackgroundColor(p0: Int)
@@ -7605,7 +7605,7 @@

Functions

- +
@@ -7620,7 +7620,7 @@

Functions

- +
@@ -7635,7 +7635,7 @@

Functions

- +
@@ -7650,7 +7650,7 @@

Functions

- +
@@ -7665,7 +7665,7 @@

Functions

- +
@@ -7680,7 +7680,7 @@

Functions

-
fun setBottom(p0: Int)
+
fun setBottom(p0: Int)
@@ -7695,7 +7695,7 @@

Functions

-
open fun setBoxBackgroundColor(boxBackgroundColor: Int)

Set the filled box's background color.

+
open fun setBoxBackgroundColor(boxBackgroundColor: Int)

Set the filled box's background color.

@@ -7710,7 +7710,7 @@

Functions

-
open fun setBoxBackgroundMode(boxBackgroundMode: Int)

Set the box background mode (filled, outline, or none).

+
open fun setBoxBackgroundMode(boxBackgroundMode: Int)

Set the box background mode (filled, outline, or none).

@@ -7725,7 +7725,7 @@

Functions

-
open fun setBoxCornerRadius(boxCornerRadiusTopStart: Float, boxCornerRadiusTopEnd: Float, boxCornerRadiusBottomStart: Float, boxCornerRadiusBottomEnd: Float)

Set the box's corner radii.

+
open fun setBoxCornerRadius(boxCornerRadiusTopStart: Float, boxCornerRadiusTopEnd: Float, boxCornerRadiusBottomStart: Float, boxCornerRadiusBottomEnd: Float)

Set the box's corner radii.

@@ -7740,7 +7740,7 @@

Functions

-
open fun setBoxStrokeColor(boxStrokeColor: Int)

Set the outline box's stroke color.

+
open fun setBoxStrokeColor(boxStrokeColor: Int)

Set the outline box's stroke color.

@@ -7755,7 +7755,7 @@

Functions

-
open fun setBoxStrokeColorStateList(colorStateList: ColorStateList)

Set the outline box's stroke color state list.

+
open fun setBoxStrokeColorStateList(colorStateList: ColorStateList)

Set the outline box's stroke color state list.

@@ -7770,7 +7770,7 @@

Functions

-
open fun setCameraDistance(p0: Float)
+
open fun setCameraDistance(p0: Float)
@@ -7785,7 +7785,7 @@

Functions

-
open fun setClickable(p0: Boolean)
+
open fun setClickable(p0: Boolean)
@@ -7800,7 +7800,7 @@

Functions

-
open fun setClipBounds(p0: Rect)
+
open fun setClipBounds(p0: Rect)
@@ -7815,7 +7815,7 @@

Functions

-
open fun setClipChildren(p0: Boolean)
+
open fun setClipChildren(p0: Boolean)
@@ -7830,7 +7830,7 @@

Functions

- +
@@ -7845,7 +7845,7 @@

Functions

- +
@@ -7860,7 +7860,7 @@

Functions

- +
@@ -7875,7 +7875,7 @@

Functions

- +
@@ -7890,7 +7890,7 @@

Functions

- +
@@ -7905,7 +7905,7 @@

Functions

-

Whether the character counter functionality is enabled or not in this layout.

+

Whether the character counter functionality is enabled or not in this layout.

@@ -7920,7 +7920,7 @@

Functions

-
fun setCounterMaxLength(maxLength: Int)

Sets the max length to display at the character counter.

+
fun setCounterMaxLength(maxLength: Int)

Sets the max length to display at the character counter.

@@ -7935,7 +7935,7 @@

Functions

-
fun setCounterOverflowTextAppearance(counterOverflowTextAppearance: Int)

Sets the text color and size for the overflowed character counter using the specified TextAppearance resource.

+
fun setCounterOverflowTextAppearance(counterOverflowTextAppearance: Int)

Sets the text color and size for the overflowed character counter using the specified TextAppearance resource.

@@ -7950,7 +7950,7 @@

Functions

-
fun setCounterTextAppearance(counterTextAppearance: Int)

Sets the text color and size for the character counter using the specified TextAppearance resource.

+
fun setCounterTextAppearance(counterTextAppearance: Int)

Sets the text color and size for the character counter using the specified TextAppearance resource.

@@ -7965,7 +7965,7 @@

Functions

- +
@@ -7980,7 +7980,7 @@

Functions

- +
@@ -7995,7 +7995,7 @@

Functions

- +
@@ -8010,7 +8010,7 @@

Functions

- +
@@ -8025,7 +8025,7 @@

Functions

- +
@@ -8040,7 +8040,7 @@

Functions

- +
@@ -8055,7 +8055,7 @@

Functions

-
open fun setElevation(p0: Float)
+
open fun setElevation(p0: Float)
@@ -8070,7 +8070,7 @@

Functions

-
open fun setEnabled(p0: Boolean)
+
open fun setEnabled(p0: Boolean)
@@ -8085,7 +8085,7 @@

Functions

-

Set the icon to use for the end icon.

+

Set the icon to use for the end icon.

@@ -8100,7 +8100,7 @@

Functions

-

Applies a tint to the end icon drawable. Does not modify the current tint mode, which is PorterDuff.Mode#SRC_IN by default.

+

Applies a tint to the end icon drawable. Does not modify the current tint mode, which is PorterDuff.Mode#SRC_IN by default.

@@ -8115,7 +8115,7 @@

Functions

-
fun setEndIconMode(mode: Int)

Set up the EndIconMode. When set, a button is placed at the end of the EditText which enables the user to perform the specific icon's functionality.

+
fun setEndIconMode(mode: Int)

Set up the EndIconMode. When set, a button is placed at the end of the EditText which enables the user to perform the specific icon's functionality.

@@ -8130,7 +8130,7 @@

Functions

-
fun setEndIconOnClickListener(endIconOnClickListener: View.OnClickListener?)

Sets the end icon's functionality that is performed when the icon is clicked. The icon will not be clickable if its click and long click listeners are null.

+
fun setEndIconOnClickListener(endIconOnClickListener: View.OnClickListener?)

Sets the end icon's functionality that is performed when the icon is clicked. The icon will not be clickable if its click and long click listeners are null.

@@ -8145,7 +8145,7 @@

Functions

-
open fun setError(errorText: CharSequence?)
open fun setError(resId: Int)

Sets an error message that will be displayed below our EditText. If the error is null, the error message will be cleared.

+
open fun setError(errorText: CharSequence?)
open fun setError(resId: Int)

Sets an error message that will be displayed below our EditText. If the error is null, the error message will be cleared.

@@ -8160,7 +8160,7 @@

Functions

-
open fun setErrorEnabled(isEnabled: Boolean)

Whether the error functionality is enabled or not in this layout. Enabling this functionality before setting an error message via {@link #setError(CharSequence)}, will mean that this layout will not change size when an error is displayed.

+
open fun setErrorEnabled(isEnabled: Boolean)

Whether the error functionality is enabled or not in this layout. Enabling this functionality before setting an error message via {@link #setError(CharSequence)}, will mean that this layout will not change size when an error is displayed.

@@ -8175,7 +8175,7 @@

Functions

-

Sets the text color and size for the error message from the specified TextAppearance resource.

+

Sets the text color and size for the error message from the specified TextAppearance resource.

@@ -8190,7 +8190,7 @@

Functions

-
open fun setFadingEdgeLength(p0: Int)
+
open fun setFadingEdgeLength(p0: Int)
@@ -8205,7 +8205,7 @@

Functions

- +
@@ -8220,7 +8220,7 @@

Functions

- +
@@ -8235,7 +8235,7 @@

Functions

-
open fun setFocusable(p0: Boolean)
open fun setFocusable(p0: Int)
+
open fun setFocusable(p0: Boolean)
open fun setFocusable(p0: Int)
@@ -8250,7 +8250,7 @@

Functions

- +
@@ -8265,7 +8265,7 @@

Functions

- +
@@ -8280,7 +8280,7 @@

Functions

- +
@@ -8295,7 +8295,7 @@

Functions

-
open fun setForeground(p0: Drawable)
+
open fun setForeground(p0: Drawable)
@@ -8325,7 +8325,7 @@

Functions

- +
@@ -8340,7 +8340,7 @@

Functions

- +
@@ -8355,7 +8355,7 @@

Functions

- +
@@ -8370,7 +8370,7 @@

Functions

-
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
+
open fun setHandwritingBoundsOffsets(p0: Float, p1: Float, p2: Float, p3: Float)
@@ -8385,7 +8385,7 @@

Functions

- +
@@ -8400,7 +8400,7 @@

Functions

- +
@@ -8415,7 +8415,7 @@

Functions

- +
@@ -8430,7 +8430,7 @@

Functions

-
fun setHelperText(helperText: String?)

Sets a helper message that will be displayed below the {@link EditText}. If the helperText is null, the helper text functionality will be disabled and the helper message will be hidden.

+
fun setHelperText(helperText: String?)

Sets a helper message that will be displayed below the {@link EditText}. If the helperText is null, the helper text functionality will be disabled and the helper message will be hidden.

@@ -8445,7 +8445,7 @@

Functions

-

Sets the text color and size for the helper text from the specified TextAppearance resource.

+

Sets the text color and size for the helper text from the specified TextAppearance resource.

@@ -8460,7 +8460,7 @@

Functions

-
open fun setHint(resId: Int)

Sets the text to be displayed when the text of the TextView is empty, from a resource.

open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

+
open fun setHint(resId: Int)

Sets the text to be displayed when the text of the TextView is empty, from a resource.

open fun setHint(text: String?)

Sets the text to be displayed when the text of the TextView is empty. Null means to use the normal empty text. The hint does not currently participate in determining the size of the view.

@@ -8475,7 +8475,7 @@

Functions

-

Set whether any hint state changes, due to being focused or non-empty text, are animated.

+

Set whether any hint state changes, due to being focused or non-empty text, are animated.

@@ -8490,7 +8490,7 @@

Functions

-
open fun setHintEnabled(state: Boolean)

Sets whether the floating label functionality is enabled or not in this layout.

+
open fun setHintEnabled(state: Boolean)

Sets whether the floating label functionality is enabled or not in this layout.

@@ -8505,7 +8505,7 @@

Functions

-

Sets the collapsed hint text color, size, style from the specified TextAppearance resource.

+

Sets the collapsed hint text color, size, style from the specified TextAppearance resource.

@@ -8520,7 +8520,7 @@

Functions

-
fun setHintTextColor(hintTextColor: ColorStateList)

Sets the collapsed hint text color from the specified ColorStateList resource.

+
fun setHintTextColor(hintTextColor: ColorStateList)

Sets the collapsed hint text color from the specified ColorStateList resource.

@@ -8535,7 +8535,7 @@

Functions

- +
@@ -8550,7 +8550,7 @@

Functions

- +
@@ -8565,7 +8565,7 @@

Functions

- +
@@ -8580,7 +8580,7 @@

Functions

- +
@@ -8595,7 +8595,7 @@

Functions

-
open fun setHovered(p0: Boolean)
+
open fun setHovered(p0: Boolean)
@@ -8610,7 +8610,7 @@

Functions

-
open fun setId(p0: Int)
+
open fun setId(p0: Int)
@@ -8625,7 +8625,7 @@

Functions

- +
@@ -8640,7 +8640,7 @@

Functions

- +
@@ -8655,7 +8655,7 @@

Functions

- +
@@ -8670,7 +8670,7 @@

Functions

-
open fun setIsCredential(p0: Boolean)
+
open fun setIsCredential(p0: Boolean)
@@ -8685,7 +8685,7 @@

Functions

- +
@@ -8700,7 +8700,7 @@

Functions

-
open fun setKeepScreenOn(p0: Boolean)
+
open fun setKeepScreenOn(p0: Boolean)
@@ -8715,7 +8715,7 @@

Functions

- +
@@ -8730,7 +8730,7 @@

Functions

-
open fun setLabelFor(p0: Int)
+
open fun setLabelFor(p0: Int)
@@ -8745,7 +8745,7 @@

Functions

-
open fun setLayerPaint(p0: Paint?)
+
open fun setLayerPaint(p0: Paint?)
@@ -8760,7 +8760,7 @@

Functions

-
open fun setLayerType(p0: Int, p1: Paint?)
+
open fun setLayerType(p0: Int, p1: Paint?)
@@ -8775,7 +8775,7 @@

Functions

- +
@@ -8790,7 +8790,7 @@

Functions

- +
@@ -8805,7 +8805,7 @@

Functions

-
open fun setLayoutDirection(p0: Int)
+
open fun setLayoutDirection(p0: Int)
@@ -8820,7 +8820,7 @@

Functions

-
open fun setLayoutMode(p0: Int)
+
open fun setLayoutMode(p0: Int)
@@ -8835,7 +8835,7 @@

Functions

- +
@@ -8850,7 +8850,7 @@

Functions

- +
@@ -8865,7 +8865,7 @@

Functions

-
fun setLeft(p0: Int)
+
fun setLeft(p0: Int)
@@ -8880,7 +8880,7 @@

Functions

-
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
+
fun setLeftTopRightBottom(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -8895,7 +8895,7 @@

Functions

- +
@@ -8910,7 +8910,7 @@

Functions

- +
@@ -8925,7 +8925,7 @@

Functions

-
open fun setMinimumHeight(p0: Int)
+
open fun setMinimumHeight(p0: Int)
@@ -8940,7 +8940,7 @@

Functions

-
open fun setMinimumWidth(p0: Int)
+
open fun setMinimumWidth(p0: Int)
@@ -8955,7 +8955,7 @@

Functions

- +
@@ -8970,7 +8970,7 @@

Functions

- +
@@ -8985,7 +8985,7 @@

Functions

- +
@@ -9000,7 +9000,7 @@

Functions

-
open fun setNextFocusDownId(p0: Int)
+
open fun setNextFocusDownId(p0: Int)
@@ -9015,7 +9015,7 @@

Functions

- +
@@ -9030,7 +9030,7 @@

Functions

-
open fun setNextFocusLeftId(p0: Int)
+
open fun setNextFocusLeftId(p0: Int)
@@ -9045,7 +9045,7 @@

Functions

-
open fun setNextFocusRightId(p0: Int)
+
open fun setNextFocusRightId(p0: Int)
@@ -9060,7 +9060,7 @@

Functions

-
open fun setNextFocusUpId(p0: Int)
+
open fun setNextFocusUpId(p0: Int)
@@ -9075,7 +9075,7 @@

Functions

- +
@@ -9090,7 +9090,7 @@

Functions

- +
@@ -9105,7 +9105,7 @@

Functions

- +
@@ -9120,7 +9120,7 @@

Functions

- +
@@ -9135,7 +9135,7 @@

Functions

- +
@@ -9150,7 +9150,7 @@

Functions

- +
@@ -9165,7 +9165,7 @@

Functions

- +
@@ -9180,7 +9180,7 @@

Functions

- +
@@ -9195,7 +9195,7 @@

Functions

- +
@@ -9210,7 +9210,7 @@

Functions

- +
@@ -9225,7 +9225,7 @@

Functions

- +
@@ -9240,7 +9240,7 @@

Functions

- +
@@ -9255,7 +9255,7 @@

Functions

- +
@@ -9270,7 +9270,7 @@

Functions

- +
@@ -9285,7 +9285,7 @@

Functions

- +
@@ -9300,7 +9300,7 @@

Functions

- +
@@ -9315,7 +9315,7 @@

Functions

- +
@@ -9330,7 +9330,7 @@

Functions

- +
@@ -9345,7 +9345,7 @@

Functions

- +
@@ -9360,7 +9360,7 @@

Functions

-
open fun setOverScrollMode(p0: Int)
+
open fun setOverScrollMode(p0: Int)
@@ -9390,7 +9390,7 @@

Functions

-
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
+
open fun setPaddingRelative(p0: Int, p1: Int, p2: Int, p3: Int)
@@ -9405,7 +9405,7 @@

Functions

-
open fun setPasswordToggleEnabled(isEnabled: Boolean)

Enables or disable the password visibility toggle functionality.

+
open fun setPasswordToggleEnabled(isEnabled: Boolean)

Enables or disable the password visibility toggle functionality.

@@ -9420,7 +9420,7 @@

Functions

-

Set the icon to use for the password visibility toggle button.

+

Set the icon to use for the password visibility toggle button.

@@ -9435,7 +9435,7 @@

Functions

-

Applies a tint to the password visibility toggle drawable. Does not modify the current tint mode, which is PorterDuff.Mode#SRC_IN by default.

+

Applies a tint to the password visibility toggle drawable. Does not modify the current tint mode, which is PorterDuff.Mode#SRC_IN by default.

@@ -9450,7 +9450,7 @@

Functions

- +
@@ -9465,7 +9465,7 @@

Functions

-
open fun setPivotX(p0: Float)
+
open fun setPivotX(p0: Float)
@@ -9480,7 +9480,7 @@

Functions

-
open fun setPivotY(p0: Float)
+
open fun setPivotY(p0: Float)
@@ -9495,7 +9495,7 @@

Functions

- +
@@ -9510,7 +9510,7 @@

Functions

- +
@@ -9525,7 +9525,7 @@

Functions

- +
@@ -9540,7 +9540,7 @@

Functions

-
open fun setPressed(p0: Boolean)
+
open fun setPressed(p0: Boolean)
@@ -9555,7 +9555,7 @@

Functions

- +
@@ -9570,7 +9570,7 @@

Functions

- +
@@ -9585,7 +9585,7 @@

Functions

-
fun setRight(p0: Int)
+
fun setRight(p0: Int)
@@ -9600,7 +9600,7 @@

Functions

-
open fun setRotation(p0: Float)
+
open fun setRotation(p0: Float)
@@ -9615,7 +9615,7 @@

Functions

-
open fun setRotationX(p0: Float)
+
open fun setRotationX(p0: Float)
@@ -9630,7 +9630,7 @@

Functions

-
open fun setRotationY(p0: Float)
+
open fun setRotationY(p0: Float)
@@ -9645,7 +9645,7 @@

Functions

-
open fun setSaveEnabled(p0: Boolean)
+
open fun setSaveEnabled(p0: Boolean)
@@ -9660,7 +9660,7 @@

Functions

- +
@@ -9675,7 +9675,7 @@

Functions

-
open fun setScaleX(p0: Float)
+
open fun setScaleX(p0: Float)
@@ -9690,7 +9690,7 @@

Functions

-
open fun setScaleY(p0: Float)
+
open fun setScaleY(p0: Float)
@@ -9705,7 +9705,7 @@

Functions

- +
@@ -9720,7 +9720,7 @@

Functions

- +
@@ -9735,7 +9735,7 @@

Functions

- +
@@ -9750,7 +9750,7 @@

Functions

- +
@@ -9765,7 +9765,7 @@

Functions

-
open fun setScrollBarSize(p0: Int)
+
open fun setScrollBarSize(p0: Int)
@@ -9780,7 +9780,7 @@

Functions

-
open fun setScrollBarStyle(p0: Int)
+
open fun setScrollBarStyle(p0: Int)
@@ -9795,7 +9795,7 @@

Functions

- +
@@ -9810,7 +9810,7 @@

Functions

- +
@@ -9825,7 +9825,7 @@

Functions

- +
@@ -9840,7 +9840,7 @@

Functions

-
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
+
open fun setScrollIndicators(p0: Int)
open fun setScrollIndicators(p0: Int, p1: Int)
@@ -9855,7 +9855,7 @@

Functions

-
open fun setScrollX(p0: Int)
+
open fun setScrollX(p0: Int)
@@ -9870,7 +9870,7 @@

Functions

-
open fun setScrollY(p0: Int)
+
open fun setScrollY(p0: Int)
@@ -9885,7 +9885,7 @@

Functions

-
open fun setSelected(p0: Boolean)
+
open fun setSelected(p0: Boolean)
@@ -9900,7 +9900,7 @@

Functions

- +
@@ -9915,7 +9915,7 @@

Functions

-

Sets the start icon.

+

Sets the start icon.

@@ -9930,7 +9930,7 @@

Functions

-

Applies a tint to the start icon drawable. Does not modify the current tint mode, which is {@link PorterDuff.Mode#SRC_IN} by default.

+

Applies a tint to the start icon drawable. Does not modify the current tint mode, which is {@link PorterDuff.Mode#SRC_IN} by default.

@@ -9945,7 +9945,7 @@

Functions

-
fun setStartIconOnClickListener(startIconOnClickListener: View.OnClickListener?)

Sets the start icon's functionality that is performed when the start icon is clicked. The icon will not be clickable if its click and long click listeners are null.

+
fun setStartIconOnClickListener(startIconOnClickListener: View.OnClickListener?)

Sets the start icon's functionality that is performed when the start icon is clicked. The icon will not be clickable if its click and long click listeners are null.

@@ -9960,7 +9960,7 @@

Functions

- +
@@ -9975,7 +9975,7 @@

Functions

- +
@@ -9990,7 +9990,7 @@

Functions

- +
@@ -10005,7 +10005,7 @@

Functions

- +
@@ -10020,7 +10020,7 @@

Functions

-
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
+
open fun setTag(p0: Any)
open fun setTag(p0: Int, p1: Any)
@@ -10035,7 +10035,7 @@

Functions

-
open fun setTextAlignment(p0: Int)
+
open fun setTextAlignment(p0: Int)
@@ -10050,7 +10050,7 @@

Functions

-
open fun setTextDirection(p0: Int)
+
open fun setTextDirection(p0: Int)
@@ -10065,7 +10065,7 @@

Functions

- +
@@ -10080,7 +10080,7 @@

Functions

-
fun setTop(p0: Int)
+
fun setTop(p0: Int)
@@ -10095,7 +10095,7 @@

Functions

- +
@@ -10110,7 +10110,7 @@

Functions

- +
@@ -10125,7 +10125,7 @@

Functions

- +
@@ -10140,7 +10140,7 @@

Functions

- +
@@ -10155,7 +10155,7 @@

Functions

- +
@@ -10170,7 +10170,7 @@

Functions

- +
@@ -10185,7 +10185,7 @@

Functions

-
open fun setTranslationX(p0: Float)
+
open fun setTranslationX(p0: Float)
@@ -10200,7 +10200,7 @@

Functions

-
open fun setTranslationY(p0: Float)
+
open fun setTranslationY(p0: Float)
@@ -10215,7 +10215,7 @@

Functions

-
open fun setTranslationZ(p0: Float)
+
open fun setTranslationZ(p0: Float)
@@ -10230,7 +10230,7 @@

Functions

-
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

+
open fun setTypeface(typeface: Typeface)

Sets the typeface and style in which the text should be displayed.

@@ -10245,7 +10245,7 @@

Functions

- +
@@ -10260,7 +10260,7 @@

Functions

- +
@@ -10275,7 +10275,7 @@

Functions

- +
@@ -10290,7 +10290,7 @@

Functions

- +
@@ -10305,7 +10305,7 @@

Functions

- +
@@ -10320,7 +10320,7 @@

Functions

- +
@@ -10335,7 +10335,7 @@

Functions

-
open fun setVisibility(p0: Int)
+
open fun setVisibility(p0: Int)
@@ -10350,7 +10350,7 @@

Functions

- +
@@ -10365,7 +10365,7 @@

Functions

-
open fun setWillNotDraw(p0: Boolean)
+
open fun setWillNotDraw(p0: Boolean)
@@ -10395,7 +10395,7 @@

Functions

-
open fun setX(p0: Float)
+
open fun setX(p0: Float)
@@ -10410,7 +10410,7 @@

Functions

-
open fun setY(p0: Float)
+
open fun setY(p0: Float)
@@ -10425,7 +10425,7 @@

Functions

-
open fun setZ(p0: Float)
+
open fun setZ(p0: Float)
@@ -10455,7 +10455,7 @@

Functions

-
open fun showContextMenu(p0: Float, p1: Float): Boolean
+
open fun showContextMenu(p0: Float, p1: Float): Boolean
@@ -10485,7 +10485,7 @@

Functions

- +
@@ -10515,7 +10515,7 @@

Functions

- +
@@ -10530,7 +10530,7 @@

Functions

- +
@@ -10545,7 +10545,7 @@

Functions

- +
@@ -10560,7 +10560,7 @@

Functions

- +
@@ -10575,7 +10575,7 @@

Functions

- +
@@ -10590,7 +10590,7 @@

Functions

- +
@@ -10605,7 +10605,7 @@

Functions

-
open fun stopNestedScroll()
+
open fun stopNestedScroll()
@@ -10620,7 +10620,7 @@

Functions

-
open fun suppressLayout(p0: Boolean)
+
open fun suppressLayout(p0: Boolean)
@@ -10650,7 +10650,7 @@

Functions

- +
@@ -10665,7 +10665,7 @@

Functions

- +
@@ -10680,7 +10680,7 @@

Functions

-
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
+
open override fun unscheduleDrawable(p0: Drawable, p1: Runnable)
@@ -10695,7 +10695,7 @@

Functions

- +
@@ -10725,7 +10725,7 @@

Functions

- +
@@ -10740,7 +10740,7 @@

Functions

-
open fun willNotDraw(): Boolean
+
open fun willNotDraw(): Boolean
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-d-e-b-u-g/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-d-e-b-u-g/index.html index 6a69ac2df..cb5d4f1f9 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-d-e-b-u-g/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-d-e-b-u-g/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-n-o-n-e/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-n-o-n-e/index.html index 7aef9afc0..d61220256 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-n-o-n-e/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-n-o-n-e/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-w-a-r-n/index.html b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-w-a-r-n/index.html index 56156e1e5..271490412 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-w-a-r-n/index.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/-w-a-r-n/index.html @@ -82,7 +82,7 @@

Properties

- +
@@ -97,7 +97,7 @@

Properties

- +
diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/entries.html b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/entries.html index 0f30d6b8a..70da13772 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/entries.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/entries.html @@ -66,7 +66,7 @@

entries

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

Level

-

Priority constant for the printing debug-logs.

+

Priority constant for the printing debug-logs.

@@ -131,7 +131,7 @@

Properties

-

Returns a representation of an immutable list of all enum entries, in the order they're declared.

+

Returns a representation of an immutable list of all enum entries, in the order they're declared.

@@ -146,7 +146,7 @@

Properties

- +
@@ -161,7 +161,7 @@

Properties

- +
@@ -180,7 +180,7 @@

Functions

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

@@ -195,7 +195,7 @@

Functions

-

Returns an array containing the constants of this enum type, in the order they're declared.

+

Returns an array containing the constants of this enum type, in the order they're declared.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/value-of.html b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/value-of.html index 3cb97881b..5028be895 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/value-of.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/-level/value-of.html @@ -66,7 +66,7 @@

valueOf

-

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

+

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

-

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

+

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.

-

Priority constant for the printing debug-logs.

+

Priority constant for the printing debug-logs.

@@ -101,7 +101,7 @@

Properties

-

Allows enable and disable debug-log printing.

+

Allows enable and disable debug-log printing.

@@ -116,7 +116,7 @@

Properties

-

Current priority level for filtering debugging logs

+

Current priority level for filtering debugging logs

@@ -146,7 +146,7 @@

Properties

-
var tag: String

Current logs tag

+
var tag: String

Current logs tag

@@ -165,7 +165,7 @@

Functions

-

Returns true if the logger print log messages.

+

Returns true if the logger print log messages.

diff --git a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/is-debug-enabled.html b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/is-debug-enabled.html index bf5ad1a81..4a92f11fe 100644 --- a/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/is-debug-enabled.html +++ b/docs/vgscollect/com.verygoodsecurity.vgscollect/-v-g-s-collect-logger/is-debug-enabled.html @@ -66,7 +66,7 @@

isDebugEnabled

-

Returns true if the logger print log messages.

+

Returns true if the logger print log messages.

-

Allows enable and disable debug-log printing.

+

Allows enable and disable debug-log printing.

-

Current priority level for filtering debugging logs

+

Current priority level for filtering debugging logs

-
var tag: String

Current logs tag

+
var tag: String

Current logs tag