Skip to content

Commit

Permalink
- RecyclerView.RecycledViewPool を使ってタブレットモードでの応答性を改善
Browse files Browse the repository at this point in the history
- そのかわりFastScroller機能がなくなりました…
- アプリ設定に「リフレッシュ時に常にギャップを挟む」を追加。主にデバッグ用途
- TLからプロフを開いた時にヘッダ画像の下の方にフェードされない余白ができるバグの修正
  • Loading branch information
tateisu committed Jan 17, 2018
1 parent 4acc51d commit 3bc2a73
Show file tree
Hide file tree
Showing 45 changed files with 1,416 additions and 1,057 deletions.
1 change: 1 addition & 0 deletions .idea/dictionaries/tateisu.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions app/build.gradle
Expand Up @@ -116,6 +116,9 @@ dependencies {
// Coroutine listeners for Anko Layouts
compile "org.jetbrains.anko:anko-sdk25-coroutines:$anko_version"
compile "org.jetbrains.anko:anko-appcompat-v7-coroutines:$anko_version"


// compile 'com.simplecityapps:recyclerview-fastscroll:1.0.16'
}

repositories {
Expand Down
Expand Up @@ -227,7 +227,7 @@ class TestTootApiClient {
return true
}

override fun close(code : Int, reason : String?) : Boolean { // TODO
override fun close(code : Int, reason : String?) : Boolean {
return true
}

Expand Down

This file was deleted.

16 changes: 16 additions & 0 deletions app/src/main/java/android/support/v7/widget/ListRecyclerView.kt
@@ -0,0 +1,16 @@
package android.support.v7.widget

import android.content.Context
import android.util.AttributeSet

class ListRecyclerView : RecyclerView {

companion object {
// private val log = LogCategory("ListRecyclerView")
}

constructor(context : Context) : super(context)
constructor(context : Context, attrs : AttributeSet) : super(context, attrs)
constructor(context : Context, attrs : AttributeSet, defStyleAttr : Int) : super(context, attrs, defStyleAttr)

}

0 comments on commit 3bc2a73

Please sign in to comment.