Added in API level 28
    TextClassificationContext
class TextClassificationContext : Parcelable
| kotlin.Any | |
| ↳ | android.view.textclassifier.TextClassificationContext | 
A representation of the context in which text classification would be performed.
Summary
| Nested classes | |
|---|---|
| 
            
             A builder for building a TextClassification context.  | 
        |
| Inherited constants | |
|---|---|
| Public methods | |
|---|---|
| Int | |
| String | 
            
             Returns the package name of the app that this context originated in.  | 
        
| String | 
            
             Returns the widget type for this classification context.  | 
        
| String? | 
            
             Returns a custom version string for the widget type.  | 
        
| String | 
            toString() | 
        
| Unit | 
            writeToParcel(parcel: Parcel, flags: Int) | 
        
| Properties | |
|---|---|
| static Parcelable.Creator<TextClassificationContext!> | |
Public methods
describeContents
Added in API level 28
      fun describeContents(): Int
| Return | |
|---|---|
Int | 
            a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR | 
          
getPackageName
Added in API level 28
      fun getPackageName(): String
Returns the package name of the app that this context originated in.
| Return | |
|---|---|
String | 
            This value cannot be null. | 
          
getWidgetType
Added in API level 28
      fun getWidgetType(): String
Returns the widget type for this classification context.
getWidgetVersion
Added in API level 28
      fun getWidgetVersion(): String?
Returns a custom version string for the widget type.
| Return | |
|---|---|
String? | 
            This value may be null. | 
          
See Also
toString
Added in API level 28
      fun toString(): String
| Return | |
|---|---|
String | 
            a string representation of the object. | 
writeToParcel
Added in API level 28
      fun writeToParcel(
parcel: Parcel,
flags: Int
): Unit
| Parameters | |
|---|---|
dest | 
            The Parcel in which the object should be written. This value cannot be null. | 
          
flags | 
            Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |