Stay organized with collections
Save and categorize content based on your preferences.
ViewBinder
interface ViewBinder
This class can be used by external clients of SimpleCursorAdapter to bind values fom the Cursor to views. You should use this class to bind values from the Cursor to views that are not directly supported by SimpleCursorAdapter or to change the way binding occurs for views supported by SimpleCursorAdapter.
Summary
Public methods |
abstract Boolean |
Binds the Cursor column defined by the specified index to the specified view.
|
Public methods
setViewValue
abstract fun setViewValue(
view: View!,
cursor: Cursor!,
columnIndex: Int
): Boolean
Binds the Cursor column defined by the specified index to the specified view. When binding is handled by this ViewBinder, this method must return true. If this method returns false, SimpleCursorAdapter will attempts to handle the binding on its own.
Parameters |
view |
View!: the view to bind the data to |
cursor |
Cursor!: the cursor to get the data from |
columnIndex |
Int: the column at which the data can be found in the cursor |
Return |
Boolean |
true if the data was bound to the view, false otherwise |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-04-04 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-04-04 UTC."],[],[]]