addFooter

fun addFooter(title: String)(source)

Adds a footer view to the list with the given string as its text content.

This method inflates a default text view layout (R.layout.picker_app_text), sets its text to the provided title, and then adds it as a footer.

Parameters

title

The string to be displayed in the footer view.

See also

SeslAppPickerView.generateTextViewHolder

fun addFooter(view: View, roundedCorner: Int = ROUNDED_CORNER_ALL)(source)

Adds a footer view to the list.

This method allows you to append a custom view to the bottom of the application list. The footer view will be displayed below all the application items.

Parameters

view

The View to add as a footer.

roundedCorner

An integer value representing the rounded corner style for the footer. Defaults to ROUNDED_CORNER_ALL, which applies rounding to all corners. You can use other constants from SeslRoundedCorner like ROUNDED_CORNER_NONE for no rounding, or specific corner constants. This parameter controls the visual appearance of the footer's corners.

See also