Searched refs:mTemplateLayout (Results 1 - 16 of 16) sorted by path

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
H A DHeaderMixin.java34 private TemplateLayout mTemplateLayout; field in class:HeaderMixin
43 mTemplateLayout = layout;
61 return (TextView) mTemplateLayout.findManagedViewById(R.id.suw_layout_title);
H A DIconMixin.java35 private TemplateLayout mTemplateLayout; field in class:IconMixin
43 mTemplateLayout = layout;
115 return (ImageView) mTemplateLayout.findManagedViewById(R.id.suw_layout_icon);
H A DListMixin.java45 private TemplateLayout mTemplateLayout; field in class:ListMixin
61 mTemplateLayout = layout;
100 final View list = mTemplateLayout.findManagedViewById(android.R.id.list);
201 shouldUpdate = mTemplateLayout.isLayoutDirectionResolved();
213 mTemplateLayout);
H A DNavigationBarMixin.java31 private TemplateLayout mTemplateLayout; field in class:NavigationBarMixin
37 mTemplateLayout = layout;
45 final View view = mTemplateLayout.findManagedViewById(R.id.suw_layout_navigation_bar);
H A DProgressBarMixin.java35 private TemplateLayout mTemplateLayout; field in class:ProgressBarMixin
44 mTemplateLayout = layout;
51 final View progressBar = mTemplateLayout.findManagedViewById(R.id.suw_layout_progress);
86 (ViewStub) mTemplateLayout.findManagedViewById(R.id.suw_layout_progress_stub);
105 return (ProgressBar) mTemplateLayout.findManagedViewById(R.id.suw_layout_progress);
H A DRequireScrollMixin.java75 private final TemplateLayout mTemplateLayout; field in class:RequireScrollMixin
93 mTemplateLayout = templateLayout;
/frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/template/
H A DRecyclerMixin.java53 private TemplateLayout mTemplateLayout; field in class:RecyclerMixin
79 mTemplateLayout = layout;
81 mDividerDecoration = new DividerItemDecoration(mTemplateLayout.getContext());
85 mRecyclerView.setLayoutManager(new LinearLayoutManager(mTemplateLayout.getContext()));
104 final Context context = mTemplateLayout.getContext();
236 shouldUpdate = mTemplateLayout.isLayoutDirectionResolved();
248 mTemplateLayout);
/frameworks/opt/setupwizard/library/recyclerview/test/instrumentation/src/com/android/setupwizardlib/template/
H A DRecyclerMixinTest.java54 private TemplateLayout mTemplateLayout; field in class:RecyclerMixinTest
66 mTemplateLayout = spy(new TemplateLayout(mContext, R.layout.test_template,
71 doReturn(true).when(mTemplateLayout).isLayoutDirectionResolved();
76 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView);
84 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView);
92 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView);
100 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView);
115 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerView);
132 doReturn(View.LAYOUT_DIRECTION_RTL).when(mTemplateLayout).getLayoutDirection();
134 RecyclerMixin mixin = new RecyclerMixin(mTemplateLayout, mRecyclerVie
[all...]
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/template/
H A DButtonFooterMixinTest.java51 private TemplateLayout mTemplateLayout; field in class:ButtonFooterMixinTest
60 mTemplateLayout = spy(new TemplateLayout(mContext, R.layout.test_template,
66 doReturn(mFooterStub).when(mTemplateLayout).findManagedViewById(eq(R.id.suw_layout_footer));
71 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout);
88 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout);
105 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout);
118 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout);
135 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout);
152 ButtonFooterMixin mixin = new ButtonFooterMixin(mTemplateLayout);
H A DColoredHeaderMixinTest.java49 private TemplateLayout mTemplateLayout; field in class:ColoredHeaderMixinTest
55 mTemplateLayout = spy(new TemplateLayout(mContext, R.layout.test_template,
59 doReturn(mHeaderTextView).when(mTemplateLayout)
65 ColoredHeaderMixin mixin = new ColoredHeaderMixin(mTemplateLayout, null, 0);
73 ColoredHeaderMixin mixin = new ColoredHeaderMixin(mTemplateLayout, null, 0);
87 new ColoredHeaderMixin(mTemplateLayout, Xml.asAttributeSet(parser), 0);
H A DHeaderMixinTest.java49 private TemplateLayout mTemplateLayout; field in class:HeaderMixinTest
55 mTemplateLayout = spy(new TemplateLayout(mContext, R.layout.test_template,
59 doReturn(mHeaderTextView).when(mTemplateLayout)
65 HeaderMixin mixin = new HeaderMixin(mTemplateLayout, null, 0);
71 HeaderMixin mixin = new HeaderMixin(mTemplateLayout, null, 0);
79 HeaderMixin mixin = new HeaderMixin(mTemplateLayout, null, 0);
90 HeaderMixin mixin = new HeaderMixin(mTemplateLayout, null, 0);
102 new HeaderMixin(mTemplateLayout, Xml.asAttributeSet(parser), 0);
H A DIconMixinTest.java55 private TemplateLayout mTemplateLayout; field in class:IconMixinTest
61 mTemplateLayout = spy(new TemplateLayout(mContext, R.layout.test_template,
65 doReturn(mIconView).when(mTemplateLayout).findManagedViewById(eq(R.id.suw_layout_icon));
70 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0);
77 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0);
87 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0);
97 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0);
108 IconMixin mixin = new IconMixin(mTemplateLayout, null, 0);
120 new IconMixin(mTemplateLayout, Xml.asAttributeSet(parser), 0);
133 IconMixin mixin = new IconMixin(mTemplateLayout, nul
[all...]
H A DListMixinTest.java56 private TemplateLayout mTemplateLayout; field in class:ListMixinTest
68 mTemplateLayout = spy(new TemplateLayout(mContext, R.layout.test_template,
74 doReturn(mListView).when(mTemplateLayout)
76 doReturn(true).when(mTemplateLayout).isLayoutDirectionResolved();
81 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0);
89 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0);
97 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0);
105 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0);
120 ListMixin mixin = new ListMixin(mTemplateLayout, null, 0);
137 doReturn(View.LAYOUT_DIRECTION_RTL).when(mTemplateLayout)
[all...]
H A DNavigationBarMixinTest.java47 private TemplateLayout mTemplateLayout; field in class:NavigationBarMixinTest
53 mTemplateLayout = spy(new TemplateLayout(mContext, R.layout.test_template,
57 doReturn(mNavigationBar).when(mTemplateLayout)
63 NavigationBarMixin mixin = new NavigationBarMixin(mTemplateLayout);
69 NavigationBarMixin mixin = new NavigationBarMixin(mTemplateLayout);
82 NavigationBarMixin mixin = new NavigationBarMixin(mTemplateLayout);
89 NavigationBarMixin mixin = new NavigationBarMixin(mTemplateLayout);
H A DProgressBarMixinTest.java50 private TemplateLayout mTemplateLayout; field in class:ProgressBarMixinTest
56 mTemplateLayout = new TemplateLayout(
63 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout);
66 ProgressBar progressBar = (ProgressBar) mTemplateLayout.findViewById(
74 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout);
78 ProgressBar progressBar = (ProgressBar) mTemplateLayout.findViewById(
85 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout);
96 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout);
107 ProgressBarMixin mixin = new ProgressBarMixin(mTemplateLayout);
113 ProgressBar progressBar = (ProgressBar) mTemplateLayout
[all...]
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/template/
H A DRequireScrollMixinTest.java55 private TemplateLayout mTemplateLayout; field in class:RequireScrollMixinTest
66 doReturn(application).when(mTemplateLayout).getContext();
67 mRequireScrollMixin = new RequireScrollMixin(mTemplateLayout);

Completed in 178 milliseconds