diff options
author | Tammo Spalink <tammo@google.com> | 2009-10-15 20:08:58 +0800 |
---|---|---|
committer | Tammo Spalink <tammo@google.com> | 2009-10-16 10:24:18 +0800 |
commit | a5f4c8f8c91405038797e1529d465fd7fe06edb2 (patch) | |
tree | 79e0c79ea70251abf5b745ce3169437efa8a3ed7 /res/layout/radio_info.xml | |
parent | 880daa29161330c97e65101659ed6b88066a3dbe (diff) | |
download | packages_apps_Settings-a5f4c8f8c91405038797e1529d465fd7fe06edb2.tar.gz packages_apps_Settings-a5f4c8f8c91405038797e1529d465fd7fe06edb2.tar.bz2 packages_apps_Settings-a5f4c8f8c91405038797e1529d465fd7fe06edb2.zip |
Remove OEM-specific bits from RadioInfo.
The extracted bits will move into the HTC vendor tree, and it (or
similar settings for other vendors) can be accessed via a generic
OEM_RADIO_INFO activity.
Addresses issue:
http://buganizer/issue?id=1645706
Change-Id: Iec5461bcb3e241a1230f5f6d53baa3bb838ff4a9
Diffstat (limited to 'res/layout/radio_info.xml')
-rw-r--r-- | res/layout/radio_info.xml | 35 |
1 files changed, 11 insertions, 24 deletions
diff --git a/res/layout/radio_info.xml b/res/layout/radio_info.xml index b560ffffb..1307666c9 100644 --- a/res/layout/radio_info.xml +++ b/res/layout/radio_info.xml @@ -188,35 +188,13 @@ android:layout_height="wrap_content" /> - <!-- Ciphering --> - <LinearLayout style="@style/entry_layout"> - <Button android:id="@+id/ciph_toggle" - android:textSize="14sp" - android:layout_marginTop="8dip" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/radio_info_toggle_ciph_label" - /> - <TextView android:id="@+id/ciphState" style="@style/info_value" /> - - </LinearLayout> - - <!-- QXDM logging & radio power --> - <LinearLayout style="@style/entry_layout"> - <Button android:id="@+id/qxdm_log" - android:textSize="14sp" - android:layout_marginTop="8dip" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - /> - - <Button android:id="@+id/radio_power" + <!-- Radio Power --> + <Button android:id="@+id/radio_power" android:textSize="14sp" android:layout_marginTop="8dip" android:layout_width="wrap_content" android:layout_height="wrap_content" /> - </LinearLayout> <!-- SMSC --> <RelativeLayout android:layout_width="fill_parent" @@ -261,5 +239,14 @@ <TextView android:id="@+id/dnsCheckState" style="@style/info_value" /> </LinearLayout> + <!-- Launch OEM-specific Info/Settings Activity (if any) --> + <Button android:id="@+id/oem_info" + android:textSize="14sp" + android:layout_marginTop="8dip" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/oem_radio_info_label" + /> + </LinearLayout> </ScrollView> |