In the last cell of my ListView
a conflict occurs because the
FloatingActionButton
of the screen is masking two buttons as shown in the image:
IwantedtobeabletoincreasethescrollareaofmyListView
oraddsomethingtotheendofthescrollthatwouldcausethebuttonstonotcreatespaceconflicts.
ItriedtoincludeanextracellintheListAdapter
andleaveitallblank,thisworksbutwhenIreachtheendofthequeueandview,ifIscrollup,othercellstoowillbewhite,asshownintheimage:
XML
<?xmlversion="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ListView
android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="1dp"
android:layout_marginTop="1dp"
android:layout_weight="1">
</ListView>
</LinearLayout>
I'm using a extends FragmentList
in the java class