Home | History | Annotate | Download | only in view

Lines Matching refs:inflated

34  * is inflated. The ViewStub then replaces itself in its parent with the inflated View or Views.
38 * The inflated View is added to the ViewStub's parent with the ViewStub's layout
53 * id "subTree," specified by the inflatedId property. The inflated View is finally
60 * View inflated = stub.inflate();
63 * When {@link #inflate()} is invoked, the ViewStub is replaced by the inflated View
64 * and the inflated View is returned. This lets applications get a reference to the
65 * inflated View without executing an extra findViewById().
88 * @param layoutResource The reference to a layout resource that will be inflated.
128 * Returns the id taken by the inflated view. If the inflated id is
129 * {@link View#NO_ID}, the inflated view keeps its original id.
131 * @return A positive integer used to identify the inflated view or
132 * {@link #NO_ID} if the inflated view should keep its id.
142 * Defines the id taken by the inflated view. If the inflated id is
143 * {@link View#NO_ID}, the inflated view keeps its original id.
145 * @param inflatedId A positive integer used to identify the inflated view or
146 * {@link #NO_ID} if the inflated view should keep its id.
220 * by the inflated layout resource. After that calls to this function are passed
221 * through to the inflated view.
247 * and replaces this StubbedView in its parent by the inflated layout resource.
249 * @return The inflated layout resource.
298 * inflated its layout resource.
310 * inflated its layout resource.
316 * Invoked after a ViewStub successfully inflated its layout resource.
317 * This method is invoked after the inflated view was added to the
321 * @param inflated The inflated View.
323 void onInflate(ViewStub stub, View inflated);