Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> android 中文api (63) —— SimpleAdapter.ViewBinder

android 中文api (63) —— SimpleAdapter.ViewBinder

編輯:Android開發實例

正文

  一、結構

 

public static interface SimpleAdapter.ViewBinder

 

android.widget.SimpleAdapter.ViewBinder

 

 

  二、概述

     SimpleAdapter的外部數據(external clients)可以使用這個類將值綁定到視圖。你應該用這個類綁定值到那些不能直接通過SimpleAdapter支持的視圖,或者改變通過SimpleAdapter支持綁定的方法的視圖。

  (譯者注:如果SimpleAdapter設置了ViewBinder則使用Viewbinder的綁定規則,否則使用SimpleAdapter的默認綁定規則)

 

 

  三、公共方法

 

public abstract boolean setViewValue (View view, Object data, String textRepresentation)

綁定指定數據到指定的視圖。 當通過調用ViewBinder綁定數據時,此方法必須返回真。如果這個方法返回假,SimpleAdapter將嘗試通過其內部默認的方法綁定數據。

       參數

              view       要綁定數據的視圖

data        要綁定到視圖的數據

textRepresentation     一個表示所支持數據的安全的字符串:結果是data.toString()或者空字符串,但不會是null。

              返回值

                     如果數據綁定到視圖返回真,否則返回假。

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved