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

Commit 3b89d5bd authored by Steve Kondik's avatar Steve Kondik Committed by Abhisek Devkota
Browse files

settings: Make mobile settings a first-class citizen

 * Nobody likes carriers, but let's not bury these settings behind
   10 layers of indirection. Many users (like me) who travel often
   will need to access these options frequently.
 * The top level switch disables mobile data.

Change-Id: I1bd4d1116a2c73832230d66c94df2c3c0aacf698
parent 469c873b
Loading
Loading
Loading
Loading
+14.7 KiB
Loading image diff...
+14.7 KiB
Loading image diff...
+14.8 KiB
Loading image diff...
+14.4 KiB
Loading image diff...
+10 −0
Original line number Diff line number Diff line
@@ -36,6 +36,16 @@
        android:title="@string/bluetooth_settings_title"
        android:icon="@drawable/ic_settings_bluetooth2" />

    <!-- Mobile networks -->
    <header
        android:id="@+id/mobile_network_settings"
        android:icon="@drawable/ic_settings_mobilenetworks"
        android:title="@string/network_settings_title"
        android:dependency="toggle_airplane">
        <intent
            android:action="android.settings.DATA_ROAMING_SETTINGS" />
    </header>

    <!-- Data Usage -->
    <header
        android:id="@+id/data_usage_settings"
Loading