Home | History | Annotate | Download | only in app

Lines Matching refs:shown

182      * that is to be shown when the list is empty.
188 * way to have the built-in indeterminant progress state be shown.
286 * be shown when the list is empty. If you would like to have it
287 * shown, call this method to supply the text it should use.
304 * this time an indeterminant progress indicator will be shown instead.
307 * behavior of ListFragment is to start with the list not being shown, only
309 * If the list at that point had not been shown, when it does get shown
312 * @param shown If true, the list view is shown; if false, the progress
315 public void setListShown(boolean shown) {
316 setListShown(shown, true);
323 public void setListShownNoAnimation(boolean shown) {
324 setListShown(shown, false);
330 * this time an indeterminant progress indicator will be shown instead.
332 * @param shown If true, the list view is shown; if false, the progress
337 private void setListShown(boolean shown, boolean animate) {
342 if (mListShown == shown) {
345 mListShown = shown;
346 if (shown) {