本文整理汇总了Scala中android.content.res.Resources类的典型用法代码示例。如果您正苦于以下问题:Scala Resources类的具体用法?Scala Resources怎么用?Scala Resources使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Resources类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Scala代码示例。
示例1: ResourceLoader
//设置package包名称以及导入依赖的类
package iliad
import cats._
import cats.data._
import cats.implicits._
import scodec.bits._
import java.io.{FileInputStream, InputStream, FileNotFoundException}
#+desktop
object ResourceLoader {
def loadFile(name: String): Xor[FileNotFoundException, BitVector] =
try {
val stream: InputStream = new FileInputStream(name)
val r = BitVector.fromInputStream(stream).force
stream.close()
r.right
} catch {
case e: FileNotFoundException => e.left
}
}
#-desktop
#+android
import android.content.res.Resources
object ResourceLoader {
var resources: Resources = _
def loadFile(name: String): Xor[FileNotFoundException, BitVector] =
try {
val stream: InputStream = resources.getAssets().open(name)
val r = BitVector.fromInputStream(stream).force
println(s"bitvector is ${r}")
stream.close()
r.right
} catch {
case e: FileNotFoundException => e.left
}
}
#-android