summaryrefslogtreecommitdiffstats
path: root/res/layout/default_sim_checkbox.xml
blob: a0c4a9a0573bf29113a40eab964d1aa463ab0b45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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>