Home | History | Annotate | Download | only in util

Lines Matching refs:listView

26 import android.widget.ListView;
81 * Adds padding to the bottom of the given {@link ListView} so that the floating action button
84 * @param listView to add the padding to
87 public static void addBottomPaddingToListViewForFab(ListView listView, Resources res) {
90 listView.setPaddingRelative(listView.getPaddingStart(), listView.getPaddingTop(),
91 listView.getPaddingEnd(), listView.getPaddingBottom() + fabPadding);
92 listView.setClipToPadding(false);