mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 05:13:53 +01:00
Swapped the ListView for a RecyclerView, made the fragment cleaner and fixed a whole bunch of code inspection issues.
This commit is contained in:
parent
f73a9f15fc
commit
9c987efbd2
16 changed files with 435 additions and 402 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue