240 发简信
IP属地:北京
  • Google Architecyure Components 中Room的使用(1)

    Room 是Google新推出的数据库框架,使用注解的方式简化的数据库的操作使用。 Room中有三个主要的组成部分 Entity: 与数据表对应...

  • Kotlin学习

    基本语法 声明变量 类继承 方法声明 与Java的不同点 没有三元操作符 Kotlin中if 可以是一个表达式,因此没有三元操作符 没有swit...

  • RecycleView 使用总结-RecycleAdapter的封装

    前言 RecycleView每次使用都要创建 Adapter 的类文件,而Adapter每次都基本差不错,因此可以对RecycleAdapter...

  • Resize,w 360,h 240
    Android Activity 任务和返回栈

    Activity中的属性 taskAffinity launchMode allowTaskReparenting clearTaskOnLau...

  • 两个有序数组的中位数

    题目 There are two sorted arrays nums1 and nums2 of size m and n respectiv...

  • Java8

    lambda表达式与方法引用 lambda表达式 一般形式: (a,b)->a+b; (a,b)->{ statement; retur...

  • 最长子串

    题目 Given a string, find the length of the longest substring without repe...

  • 最长回文子串

    题目 Given a string s, find the longest palindromic substring in s. You ma...

  • Fragment 使用总结

    fragment ViewPager fragment懒加载 出现空白viewpager 使用 FragmentPagerAdapter时,如果...