[Settings] Enable access from non-UI thread
To support query from settings intelligent, these listeners need to support accessing from non-UI thread. Bug: 149543756 Test: make RunSettingsRoboTests -j ROBOTEST_FILTER=ActiveSubsciptionsListenerTest Change-Id: I768f41f76d0223634be2b728d33fa0cfcc69fe69
This commit is contained in:
@@ -73,6 +73,7 @@ public abstract class ActiveSubsciptionsListener
|
|||||||
* @param context {@code Context} of this listener
|
* @param context {@code Context} of this listener
|
||||||
*/
|
*/
|
||||||
public ActiveSubsciptionsListener(Looper looper, Context context) {
|
public ActiveSubsciptionsListener(Looper looper, Context context) {
|
||||||
|
super(looper);
|
||||||
mLooper = looper;
|
mLooper = looper;
|
||||||
mContext = context;
|
mContext = context;
|
||||||
|
|
||||||
|
@@ -72,7 +72,7 @@ public class ProxySubscriptionManager implements LifecycleObserver {
|
|||||||
private static ProxySubscriptionManager sSingleton;
|
private static ProxySubscriptionManager sSingleton;
|
||||||
|
|
||||||
private ProxySubscriptionManager(Context context) {
|
private ProxySubscriptionManager(Context context) {
|
||||||
final Looper looper = Looper.getMainLooper();
|
final Looper looper = context.getMainLooper();
|
||||||
|
|
||||||
mActiveSubscriptionsListeners =
|
mActiveSubscriptionsListeners =
|
||||||
new ArrayList<OnActiveSubscriptionChangedListener>();
|
new ArrayList<OnActiveSubscriptionChangedListener>();
|
||||||
|
Reference in New Issue
Block a user