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

📄 iconifiedtext.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 _root_.android.graphics.drawable.Drawable/** *  Based on Steven Osborn's tutorial on anddev.org *  (http://www.anddev.org/iconified_textlist_-_the_making_of-t97.html) */class IconifiedText(text: String, bullet: Drawable) extends Comparable/*[IconifiedText]*/ {  private var mText = text  private var mIcon: Drawable = bullet  private var mSelectable = true  def isSelectable: Boolean = mSelectable  def setSelectable(selectable: Boolean) {    mSelectable = selectable  }  def getText: String = mText  def setText(text: String) {    mText = text  }  def setIcon(icon: Drawable) {    mIcon = icon  }  def getIcon: Drawable = mIcon  /** Make IconifiedText comparable by its name */  override def compareTo(other: Any): Int =    if (mText != null && other.isInstanceOf[IconifiedText])      mText compareTo other.asInstanceOf[IconifiedText].getText    else      throw new IllegalArgumentException()}

⌨️ 快捷键说明

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