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

Commit 04ece0b9 authored by Nancy Chen's avatar Nancy Chen
Browse files

Add reference to TelephonyManager, renaming, remove checkbox (2/2)

Incorporating API calls to TelephonyManager.getSubscriptions.
Added new SubscriptionManager class to wrap data about subscriptions for
the purpose of passing between Dialer and its fragments.
* This particular CL deals with the introductoin of the
* SubscriptionManager class and the implementation of the dialog.

Bug: 15473965
Change-Id: I8c3a1f34e41bb8b39b5bfae43b6bad1792ed72e5
parent 0de9b664
Loading
Loading
Loading
Loading
+0 −23
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/default_sim_checkbox_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="8dip"
    android:orientation="vertical">
    <!--  Dummy to enable right-justification of checkbox -->
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
    <CheckBox
        android:id="@+id/default_sim_checkbox_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingStart="20dip"
        android:layout_marginLeft="20dip"
        android:layout_marginBottom="20dip"
        android:gravity="center"
        android:textSize="14sp"
        android:textAlignment="viewStart"
        android:text="@string/set_default_sim"/>
</LinearLayout>