Stay organized with collections
Save and categorize content based on your preferences.
SimpleCursorAdapter.ViewBinder
public
static
interface
SimpleCursorAdapter.ViewBinder
android.widget.SimpleCursorAdapter.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
|
setViewValue(View view, Cursor cursor, int columnIndex)
Binds the Cursor column defined by the specified index to the specified view.
|
Public methods
setViewValue
public abstract boolean setViewValue (View view,
Cursor cursor,
int columnIndex)
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 |
Returns |
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 2025-02-10 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 2025-02-10 UTC."],[],[],null,["# SimpleCursorAdapter.ViewBinder\n\nAdded in [API level 1](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\nSimpleCursorAdapter.ViewBinder\n==============================\n\n*** ** * ** ***\n\n[Kotlin](/reference/kotlin/android/widget/SimpleCursorAdapter.ViewBinder \"View this page in Kotlin\") \\|Java\n\n\n`\npublic\nstatic\n\n\ninterface\nSimpleCursorAdapter.ViewBinder\n`\n\n\n`\n\n\n`\n\n|-----------------------------------------------|\n| android.widget.SimpleCursorAdapter.ViewBinder |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nThis class can be used by external clients of SimpleCursorAdapter\nto bind values fom the Cursor to views.\n\nYou should use this class to bind values from the Cursor to views\nthat are not directly supported by SimpleCursorAdapter or to\nchange the way binding occurs for views supported by\nSimpleCursorAdapter. \n**See also:**\n\n- [SimpleCursorAdapter.bindView(android.view.View, android.content.Context, android.database.Cursor)](/reference/android/widget/SimpleCursorAdapter#bindView(android.view.View,%20android.content.Context,%20android.database.Cursor))\n- [SimpleCursorAdapter.setViewImage(ImageView, String)](/reference/android/widget/SimpleCursorAdapter#setViewImage(android.widget.ImageView,%20java.lang.String))\n- [SimpleCursorAdapter.setViewText(TextView, String)](/reference/android/widget/SimpleCursorAdapter#setViewText(android.widget.TextView,%20java.lang.String))\n\nSummary\n-------\n\n| ### Public methods ||\n|---------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` abstract boolean` | ` `[setViewValue](/reference/android/widget/SimpleCursorAdapter.ViewBinder#setViewValue(android.view.View,%20android.database.Cursor,%20int))`(`[View](/reference/android/view/View)` view, `[Cursor](/reference/android/database/Cursor)` cursor, int columnIndex) ` Binds the Cursor column defined by the specified index to the specified view. |\n\nPublic methods\n--------------\n\n### setViewValue\n\nAdded in [API level 1](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic abstract boolean setViewValue (View view, \n Cursor cursor, \n int columnIndex)\n```\n\nBinds the Cursor column defined by the specified index to the specified view.\n\nWhen binding is handled by this ViewBinder, this method must return true.\nIf this method returns false, SimpleCursorAdapter will attempts to handle\nthe binding on its own.\n\n\u003cbr /\u003e\n\n| Parameters ||\n|---------------|-----------------------------------------------------------------------|\n| `view` | `View`: the view to bind the data to \u003cbr /\u003e |\n| `cursor` | `Cursor`: the cursor to get the data from \u003cbr /\u003e |\n| `columnIndex` | `int`: the column at which the data can be found in the cursor \u003cbr /\u003e |\n\n| Returns ||\n|-----------|----------------------------------------------------------------|\n| `boolean` | true if the data was bound to the view, false otherwise \u003cbr /\u003e |"]]