diff options
Diffstat (limited to 'res/layout/radio_info.xml')
-rw-r--r-- | res/layout/radio_info.xml | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/res/layout/radio_info.xml b/res/layout/radio_info.xml index d9e5f4d..8888a98 100644 --- a/res/layout/radio_info.xml +++ b/res/layout/radio_info.xml @@ -84,6 +84,13 @@ <TextView android:id="@+id/neighboring" style="@style/info_value" /> </LinearLayout> + <!-- CellInfo --> + <LinearLayout style="@style/entry_layout"> + <TextView android:text="@string/radio_info_cellinfo_label" + style="@style/info_label" /> + <TextView android:id="@+id/cellinfo" style="@style/info_value" /> + </LinearLayout> + <!-- Roaming --> <LinearLayout style="@style/entry_layout"> <TextView android:text="@string/radio_info_roaming_label" style="@style/info_label" /> @@ -233,7 +240,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/radio_info_smsc_refresh_label" - android:layout_alignParentRight="true" + android:layout_alignParentEnd="true" /> <Button android:id="@+id/update_smsc" android:textSize="14sp" @@ -241,14 +248,14 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/radio_info_smsc_update_label" - android:layout_toLeftOf="@+id/refresh_smsc" + android:layout_toStartOf="@+id/refresh_smsc" android:layout_alignBaseline="@+id/refresh_smsc" /> <EditText android:id="@+id/smsc" style="@style/form_value" android:layout_alignBaseline="@+id/refresh_smsc" - android:layout_toLeftOf="@id/update_smsc" - android:layout_toRightOf="@id/smsc_label" /> + android:layout_toStartOf="@id/update_smsc" + android:layout_toEndOf="@id/smsc_label" /> </RelativeLayout> <!-- Test setting to ignore bad DNS, useful in lab environments --> |