Slight edits

Scrolling is nice and quick
Animations aren't great, but what I'm trying to do might actually be possible... I can actually remove the JS code.
This commit is contained in:
Bradlee Speice
2014-11-25 23:22:33 -05:00
parent 4e7393653b
commit 54b0290ef2
2 changed files with 7 additions and 2 deletions

View File

@ -9,6 +9,7 @@ import android.view.LayoutInflater
import org.bspeice.minimalbible.R
import android.widget.TextView
import org.bspeice.minimalbible.service.format.osisparser.OsisParser
import org.crosswire.jsword.book.getVersification
/**
* Adapter used for displaying a book
@ -41,7 +42,8 @@ class BookAdapter(val b: Book) : RecyclerView.Adapter<PassageView>() {
/**
* Get the number of chapters in the book
*/
override fun getItemCount(): Int = 800
override fun getItemCount(): Int = b.getVersification()
.getAllVerses().getEnd().getOrdinal()
}
class PassageView(val _v: View) : RecyclerView.ViewHolder(_v) {