Home
last modified time | relevance | path

Searched refs:PatchedLayerDrawable (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/setupwizard/library/recyclerview/test/instrumentation/src/com/android/setupwizardlib/items/
DRecyclerItemAdapterTest.java40 import com.android.setupwizardlib.items.RecyclerItemAdapter.PatchedLayerDrawable;
89 PatchedLayerDrawable drawable = new PatchedLayerDrawable(new Drawable[] {child}); in testPatchedLayerDrawableNoPadding()
100 PatchedLayerDrawable drawable = new PatchedLayerDrawable(new Drawable[] {child}); in testPatchedLayerDrawableWithPadding()
151 assertTrue(background instanceof PatchedLayerDrawable); in testCreateViewHolderWithExistingBackground()
153 PatchedLayerDrawable layerDrawable = (PatchedLayerDrawable) background; in testCreateViewHolderWithExistingBackground()
/frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/items/
DRecyclerItemAdapter.java126 view.setBackgroundDrawable(new PatchedLayerDrawable(layers)); in onCreateViewHolder()
233 static class PatchedLayerDrawable extends LayerDrawable { class in RecyclerItemAdapter
236 PatchedLayerDrawable(Drawable[] layers) { in PatchedLayerDrawable() method in RecyclerItemAdapter.PatchedLayerDrawable