Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit af30b28e authored by Zhen Zhang's avatar Zhen Zhang Committed by Android (Google) Code Review
Browse files

Merge "Replace explicit intent with implicit ACTION_TETHER_SETTINGS intent"

parents 481cfeaf 7219da8c
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -17,9 +17,9 @@
package com.android.systemui.qs.tiles;

import android.annotation.Nullable;
import android.content.ComponentName;
import android.content.Intent;
import android.os.UserManager;
import android.provider.Settings;
import android.service.quicksettings.Tile;
import android.util.Log;
import android.widget.Switch;
@@ -36,9 +36,6 @@ import javax.inject.Inject;

/** Quick settings tile: Hotspot **/
public class HotspotTile extends QSTileImpl<BooleanState> {
    private static final Intent TETHER_SETTINGS = new Intent().setComponent(new ComponentName(
            "com.android.settings", "com.android.settings.TetherSettings"));

    private final Icon mEnabledStatic = ResourceIcon.get(R.drawable.ic_hotspot);

    private final HotspotController mHotspotController;
@@ -79,7 +76,7 @@ public class HotspotTile extends QSTileImpl<BooleanState> {

    @Override
    public Intent getLongClickIntent() {
        return new Intent(TETHER_SETTINGS);
        return new Intent(Settings.ACTION_TETHER_SETTINGS);
    }

    @Override