Swapped the ListView for a RecyclerView, made the fragment cleaner and fixed a whole bunch of code inspection issues.

This commit is contained in:
Paul Hawke 2017-07-22 13:57:46 -05:00
parent f73a9f15fc
commit 9c987efbd2
16 changed files with 435 additions and 402 deletions

View file

@ -60,7 +60,7 @@
android:visibility="gone"
/>
<ListView
<android.support.v7.widget.RecyclerView
android:id="@+id/categoriesListBox"
android:layout_height="wrap_content"
android:layout_width="match_parent"

View file

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tvName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="4dp"
android:checkMark="?android:attr/textCheckMark"
android:checked="false"
android:gravity="center_vertical"
android:theme="@style/DarkAppTheme"
>
android:padding="4dp"
android:theme="@style/DarkAppTheme">
</CheckedTextView>