blob: 8cb594867b44907ebf56a5821941813322bf5e39 [file] [log] [blame]
Dave Mankoff1a0e3822019-07-03 13:26:55 -04001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.systemui;
18
19import android.app.Application;
Dave Mankoff1a0e3822019-07-03 13:26:55 -040020
21import androidx.core.app.CoreComponentFactory;
22
23import javax.inject.Inject;
24
25/**
26 * Implementation of AppComponentFactory that injects into constructors.
27 */
28public class SystemUIAppComponentFactory extends CoreComponentFactory {
29
30 @Inject
31 public ContextComponentHelper mComponentHelper;
32
33 public SystemUIAppComponentFactory() {
34 super();
35 }
36
37 @Override
38 public Application instantiateApplication(ClassLoader cl, String className)
39 throws InstantiationException, IllegalAccessException, ClassNotFoundException {
40 Application app = super.instantiateApplication(cl, className);
41 if (app instanceof SystemUIApplication) {
42 ((SystemUIApplication) app).setContextAvailableCallback(
43 context -> {
44 SystemUIFactory.createFromConfig(context);
45 SystemUIFactory.getInstance().getRootComponent().inject(
46 SystemUIAppComponentFactory.this);
47 }
48 );
49 }
50
51 return app;
52 }
Dave Mankoff1a0e3822019-07-03 13:26:55 -040053}