diff options
| -rw-r--r-- | app/src/main/res/layout/act_hostlist.xml | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/app/src/main/res/layout/act_hostlist.xml b/app/src/main/res/layout/act_hostlist.xml index 216fedf..24e4058 100644 --- a/app/src/main/res/layout/act_hostlist.xml +++ b/app/src/main/res/layout/act_hostlist.xml @@ -26,10 +26,14 @@  	android:orientation="vertical"  	> +	<!-- paddingBottom is calculated with FloatingActionButton's height (56dp) and +	     margins (16dp): 56dp + (2 x 16dp) = 88dp. -->  	<android.support.v7.widget.RecyclerView  		android:id="@+id/list"  		android:layout_width="fill_parent"  		android:layout_height="fill_parent" +		android:paddingBottom="88dp" +		android:clipToPadding="false"  		/>  	<TextView  | 
