Compare commits

...

2 Commits

Author SHA1 Message Date
1d18c898b2 Build. 2017-07-03 19:29:35 +02:00
95e208000f Fixes #39 2017-07-03 19:27:30 +02:00
4 changed files with 22 additions and 11 deletions

View File

@ -1,3 +1,7 @@
**1.5.1.3**
- Fixes introduces by the previous alpha (1.5.1.2)
**1.5.1.2**
- Added testing to the CI.

View File

@ -25,8 +25,8 @@ android {
applicationId "apps.amine.bou.readerforselfoss"
minSdkVersion 16
targetSdkVersion 25
versionCode 1512
versionName "1.5.1.2"
versionCode 1513
versionName "1.5.1.3"
// Enabling multidex support.
multiDexEnabled true

View File

@ -194,6 +194,8 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
}
tabNew.setBadgeCount(items.size - 1)
mayBeEmpty()
} catch (e: IndexOutOfBoundsException) {}
}
@ -502,6 +504,15 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
}
}
fun mayBeEmpty() =
if (items.isEmpty()) {
emptyText.visibility = View.VISIBLE
mRecyclerView.visibility = View.GONE
} else {
emptyText.visibility = View.GONE
mRecyclerView.visibility = View.VISIBLE
}
private fun getElementsAccordingToTab() =
when (elementsShown) {
UNREAD_SHOWN -> getUnRead()
@ -522,13 +533,7 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
}
if (didUpdate)
handleListResult()
if (items.isEmpty()) {
emptyText.visibility = View.VISIBLE
mRecyclerView.visibility = View.GONE
} else {
emptyText.visibility = View.GONE
mRecyclerView.visibility = View.VISIBLE
}
mayBeEmpty()
mSwipeRefreshLayout.isRefreshing = false
}

View File

@ -73,7 +73,8 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:orientation="vertical"
android:background="@color/background_grey">
<TextView
android:id="@+id/emptyText"
@ -85,12 +86,13 @@
android:textAlignment="center"
android:textAppearance="@style/TextAppearance.AppCompat.Headline"
android:textColor="@color/about_libraries_card_dark"
android:background="@color/transparent"
android:visibility="gone" />
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/background_grey"
android:background="@color/transparent"
android:clipToPadding="false"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />