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.java41 import com.android.setupwizardlib.items.RecyclerItemAdapter.PatchedLayerDrawable;
91 PatchedLayerDrawable drawable = new PatchedLayerDrawable(new Drawable[] { child }); in testPatchedLayerDrawableNoPadding()
102 PatchedLayerDrawable drawable = new PatchedLayerDrawable(new Drawable[] { child }); in testPatchedLayerDrawableWithPadding()
154 assertTrue(background instanceof PatchedLayerDrawable); in testCreateViewHolderWithExistingBackground()
156 PatchedLayerDrawable layerDrawable = (PatchedLayerDrawable) background; in testCreateViewHolderWithExistingBackground()
/frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/items/
DRecyclerItemAdapter.java124 view.setBackgroundDrawable(new PatchedLayerDrawable(layers)); in onCreateViewHolder()
232 static class PatchedLayerDrawable extends LayerDrawable { class in RecyclerItemAdapter
237 PatchedLayerDrawable(Drawable[] layers) { in PatchedLayerDrawable() method in RecyclerItemAdapter.PatchedLayerDrawable