⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iconifiedtextlistadapter.scala

📁 JAVA 语言的函数式编程扩展
💻 SCALA
字号:
/* * Copyright 2007 Steven Osborn * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *      http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.anddev.android.filebrowser.iconifiedlistimport scala.collection.jcl.ArrayListimport _root_.android.content.Contextimport _root_.android.widget.BaseAdapterimport _root_.android.view.{View, ViewGroup}/** *  Based on Steven Osborn's tutorial on anddev.org *  (http://www.anddev.org/iconified_textlist_-_the_making_of-t97.html) */class IconifiedTextListAdapter(context: Context) extends BaseAdapter {  /** Remember our context so we can use it when constructing views. */  private var mContext: Context = context  private var mItems = new ArrayList[IconifiedText]()  def addItem(it: IconifiedText) { mItems add it }  def setListItems(lit: ArrayList[IconifiedText]) { mItems = lit }  /** @return The number of items in the */  def getCount: Int = mItems.size  def getItem(position: Int): AnyRef = mItems(position)  override def areAllItemsSelectable(): Boolean = false  override def isSelectable(position: Int): Boolean =    try {      mItems(position).isSelectable    } catch {      case aioobe: IndexOutOfBoundsException =>        super.isSelectable(position)    }  /** Use the array index as a unique id. */  def getItemId(position: Int): Long = position  /** @param convertView The old view to overwrite, if one is passed   * @returns a IconifiedTextView that holds wraps around an IconifiedText */  def getView(position: Int, convertView: View, parent: ViewGroup): View =    if (convertView == null) {      new IconifiedTextView(mContext, mItems(position))    } else { // Reuse/Overwrite the View passed             // We are assuming(!) that it is castable!      val btv = convertView.asInstanceOf[IconifiedTextView]      btv setText mItems(position).getText      btv setIcon mItems(position).getIcon      btv    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -