รักษาฮอตสปอตไว้ระหว่างเซสชันการขับรถ

หน้านี้จะอธิบายวิธีตั้งค่าให้ผู้ใช้รักษาฮอตสปอตไว้ระหว่างเซสชันการขับรถ ซึ่งคล้ายกับประสบการณ์การขับรถผ่าน Wi-Fi ใน AAOS

public class CarSettings {
  ...

  @SystemApi
  public static final class Global {
    ...

    /**
     * Enables persistent tethering when set to {@code "true"}.
     *
     * <p>When enabled, tethering is started when the car is started given
     * that the hotspot was enabled at shutdown and all tethering sessions
     * will remain on even if no devices are connected to it.
     *
     * <p>When disabled, hotspot will turn off automatically if no devices
     * are connected and will no longer persist through drives.
     *
     * @hide
     */
    @SystemApi
    public static final String ENABLE_PERSISTENT_TETHERING =
           "android.car.ENABLE_PERSISTENT_TETHERING";
  }
}

หากต้องการใช้การต่อฮอตสปอตต่อเนื่อง ให้ใช้ ENABLE_PERSISTENT_TETHERING ผ่าน Settings API ซึ่งใช้เพื่อค้นหาได้ด้วย

สิทธิ์

มีการจํากัดการใช้ CarWifiManager API สิทธิ์ใหม่นี้สร้างขึ้นเพื่อปกป้องการเข้าถึง

public boolean canControlPersistApSettings() { ... }

ระดับการป้องกันสําหรับสิทธิ์นี้มีดังนี้

สิทธิ์ใหม่ สิทธิ์ ระดับการปกป้อง
ใช่ READ_PERSIST_TETHERING_SETTINGS ลายเซ็น | ข้อมูลที่เป็นกรรมสิทธิ์

ลักษณะการคงค่าเริ่มต้นเป็นไม่รองรับ มีการกําหนดค่าการวางซ้อนทรัพยากร (config_enablePersistTetheringCapabilities) เพื่อบล็อกความสามารถในการใช้การต่อฮอตสปอตจากมือถืออย่างต่อเนื่อง หากต้องการใช้การต่อฮอตสปอตอย่างต่อเนื่อง ให้ตั้งค่าเป็น true เพื่อเปิดใช้ฟีเจอร์นี้นอกเหนือจากการเลือกรับค่ากำหนดของผู้ใช้ เนื่องจากแอปอื่นๆ ของระบบที่มีสิทธิ์ WRITE_SECURE_SETTINGS จะควบคุมการตั้งค่านี้ได้เช่นกัน

API ต่อไปนี้จะระบุว่าเปิดใช้ลักษณะการทำงานหรือไม่ เรียก API นี้ก่อนเปลี่ยนแปลง ENABLE_PERSISTENT_TETHERING

/**
 * CarWifiManager provides API to allow for applications to perform Wi-Fi specific
 * operations.
 *
 * @hide
 */
@SystemApi
public final class CarWifiManager extends CarManagerBase {
 /**
  * Returns {@code true} if the persist tethering settings are able to be
  * changed.
  *
  * @hide
  */
 @SystemApi
 @RequiresPermission(Car.PERMISSION_READ_PERSIST_TETHERING_SETTINGS)
 public boolean canControlPersistApSettings() { ... }
}