Home | History | Annotate | Download | only in view

Lines Matching defs:Filter

76     private Filter mFilter;
98 public interface Filter {
317 * @return The {@link Filter} currently used by this LayoutInflater to restrict the set of Views
320 public Filter getFilter() {
325 * Sets the {@link Filter} to by this LayoutInflater. If a view is attempted to be inflated
326 * which is not allowed by the {@link Filter}, the {@link #inflate(int, ViewGroup)} call will
327 * throw an {@link InflateException}. This filter will replace any previous filter set on this
330 * @param filter The Filter which restricts the set of Views that are allowed to be inflated.
331 * This filter will replace any previous filter set on this LayoutInflater.
333 public void setFilter(Filter filter) {
334 mFilter = filter;
335 if (filter != null) {
564 // If we have a filter, apply it to cached constructor