Most visited

Recently visited

Added in API level 1

SimpleCursorAdapter.CursorToStringConverter

public static interface SimpleCursorAdapter.CursorToStringConverter

android.widget.SimpleCursorAdapter.CursorToStringConverter


SimpleCursorAdapter的外部客户端可以使用此类来定义Cursor应该如何转换为字符串。

也可以看看:

Summary

Public methods

abstract CharSequence convertToString(Cursor cursor)

返回表示指定游标的CharSequence。

Public methods

convertToString

Added in API level 1
CharSequence convertToString (Cursor cursor)

返回表示指定游标的CharSequence。

Parameters
cursor Cursor: the cursor for which a CharSequence representation is requested
Returns
CharSequence a non-null CharSequence representing the cursor

Hooray!