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

  /external/setupdesign/main/src/com/google/android/setupdesign/template/
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);
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);
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);
RequireScrollMixin.java 28 import com.google.android.setupcompat.internal.TemplateLayout;
83 /** @param templateLayout The template containing this mixin */
84 public RequireScrollMixin(@NonNull TemplateLayout 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...]
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...]
  /external/setupcompat/main/java/com/google/android/setupcompat/internal/
TemplateLayout.java 45 public class TemplateLayout extends FrameLayout {
55 public TemplateLayout(Context context, int template, int containerId) {
60 public TemplateLayout(Context context, AttributeSet attrs) {
66 public TemplateLayout(Context context, AttributeSet attrs, int defStyleAttr) {
146 throw new IllegalArgumentException("Container cannot be null in TemplateLayout");
171 throw new IllegalArgumentException("android:layout not specified for 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) {
FooterBarMixin.java 61 import com.google.android.setupcompat.internal.TemplateLayout;
150 * @param layout The {@link TemplateLayout} containing this mixin.
155 TemplateLayout layout, @Nullable AttributeSet attrs, @AttrRes int defStyleAttr) {
  /external/setupcompat/main/java/com/google/android/setupcompat/
PartnerCustomizationLayout.java 36 import com.google.android.setupcompat.internal.TemplateLayout;
48 public class PartnerCustomizationLayout extends TemplateLayout {
  /external/setupdesign/main/src/com/google/android/setupdesign/
SetupWizardLayout.java 41 import com.google.android.setupcompat.internal.TemplateLayout;
51 public class SetupWizardLayout extends TemplateLayout {

Completed in 1330 milliseconds