HomeSort by relevance Sort by last modified time
    Searched refs:templateLayout (Results 1 - 8 of 8) sorted by null

  /external/setupdesign/main/src/com/google/android/setupdesign/template/
ProgressBarMixin.java 26 import com.google.android.setupcompat.internal.TemplateLayout;
33 private final TemplateLayout templateLayout;
38 public ProgressBarMixin(TemplateLayout layout) {
39 templateLayout = layout;
44 final View progressBar = templateLayout.findManagedViewById(R.id.sud_layout_progress);
79 (ViewStub) templateLayout.findManagedViewById(R.id.sud_layout_progress_stub);
97 return (ProgressBar) templateLayout.findManagedViewById(R.id.sud_layout_progress);
NavigationBarMixin.java 20 import com.google.android.setupcompat.internal.TemplateLayout;
29 private final TemplateLayout templateLayout;
32 public NavigationBarMixin(TemplateLayout layout) {
33 templateLayout = layout;
41 final View view = templateLayout.findManagedViewById(R.id.sud_layout_navigation_bar);
RecyclerMixin.java 32 import com.google.android.setupcompat.internal.TemplateLayout;
54 private final TemplateLayout templateLayout;
70 * mixin should be called in {@link TemplateLayout#onTemplateInflated()}, which is called by the
76 public RecyclerMixin(@NonNull TemplateLayout layout, @NonNull RecyclerView recyclerView) {
77 templateLayout = layout;
79 dividerDecoration = new DividerItemDecoration(templateLayout.getContext());
83 this.recyclerView.setLayoutManager(new LinearLayoutManager(templateLayout.getContext()));
102 final Context context = templateLayout.getContext();
111 if (templateLayout instanceof GlifLayout)
    [all...]
ListMixin.java 32 import com.google.android.setupcompat.internal.TemplateLayout;
43 private final TemplateLayout templateLayout;
55 @NonNull TemplateLayout layout, @Nullable AttributeSet attrs, @AttrRes int defStyleAttr) {
56 templateLayout = layout;
92 final View list = templateLayout.findManagedViewById(android.R.id.list);
184 shouldUpdate = templateLayout.isLayoutDirectionResolved();
197 templateLayout);
HeaderMixin.java 35 import com.google.android.setupcompat.internal.TemplateLayout;
47 private final TemplateLayout templateLayout;
55 @NonNull TemplateLayout layout, @Nullable AttributeSet attrs, @AttrRes int defStyleAttr) {
56 templateLayout = layout;
80 final Context context = templateLayout.getContext();
81 TextView header = templateLayout.findManagedViewById(R.id.suc_layout_title);
95 && (templateLayout instanceof GlifLayout)
96 && ((GlifLayout) templateLayout).shouldApplyPartnerHeavyThemeResource()) {
141 return (TextView) templateLayout.findManagedViewById(R.id.suc_layout_title)
    [all...]
IconMixin.java 33 import com.google.android.setupcompat.internal.TemplateLayout;
45 private final TemplateLayout templateLayout;
55 public IconMixin(TemplateLayout layout, AttributeSet attrs, int defStyleAttr) {
56 templateLayout = layout;
91 final Context context = templateLayout.getContext();
92 final ImageView iconImage = templateLayout.findManagedViewById(R.id.sud_layout_icon);
106 && (templateLayout instanceof GlifLayout)
107 && ((GlifLayout) templateLayout).shouldApplyPartnerHeavyThemeResource()) {
190 return (ImageView) templateLayout.findManagedViewById(R.id.sud_layout_icon)
    [all...]
RequireScrollMixin.java 28 import com.google.android.setupcompat.internal.TemplateLayout;
83 /** @param templateLayout The template containing this mixin */
84 public RequireScrollMixin(@NonNull TemplateLayout templateLayout) {
  /external/setupcompat/main/java/com/google/android/setupcompat/template/
SystemNavBarMixin.java 36 import com.google.android.setupcompat.internal.TemplateLayout;
47 private final TemplateLayout templateLayout;
58 public SystemNavBarMixin(@NonNull TemplateLayout layout, @Nullable Window window) {
59 this.templateLayout = layout;
77 templateLayout
99 Context context = templateLayout.getContext();
126 Context context = templateLayout.getContext();
208 if (templateLayout instanceof PartnerCustomizationLayout) {

Completed in 205 milliseconds