Home | History | Annotate | Download | only in com.example.android.wearable.gridviewpager

Lines Matching full:background

38  * Constructs fragments as requested by the GridViewPager. For each row a different background is
41 * Always avoid loading resources from the main thread. In this sample, the background images are
42 * loaded from an background task and then updated using {@link #notifyRowBackgroundChanged(int)}
81 TransitionDrawable background = new TransitionDrawable(new Drawable[] {
85 mRowBackgrounds.put(row, background);
87 background.startTransition(TRANSITION_DURATION_MILLIS);
97 // place bugdroid as the background at row 2, column 1
103 TransitionDrawable background = new TransitionDrawable(new Drawable[] {
107 mPageBackgrounds.put(page, background);
109 background.startTransition(TRANSITION_DURATION_MILLIS);