summaryrefslogtreecommitdiffstats
path: root/res/layout/regulatory_info.xml
diff options
context:
space:
mode:
authorBrian Muramatsu <btmura@google.com>2012-10-17 18:27:02 -0700
committerBrian Muramatsu <btmura@google.com>2012-10-17 18:27:02 -0700
commit62ebbbc0decd6cbcb4b433199a67190006f3f6c4 (patch)
tree6bcf476863fbabaf750fb15237f66a822c9a626e /res/layout/regulatory_info.xml
parent7a1c4cdfae66e8b110de3988e65586871a969c04 (diff)
downloadpackages_apps_Settings-62ebbbc0decd6cbcb4b433199a67190006f3f6c4.zip
packages_apps_Settings-62ebbbc0decd6cbcb4b433199a67190006f3f6c4.tar.gz
packages_apps_Settings-62ebbbc0decd6cbcb4b433199a67190006f3f6c4.tar.bz2
Show regulatory info within a ScrollView
Bug 7200143 Some images won't fit in portrait and landscape mode. Change-Id: I06016ec5dd85db9801120ac20dfedc249e94c20f
Diffstat (limited to 'res/layout/regulatory_info.xml')
-rwxr-xr-xres/layout/regulatory_info.xml15
1 files changed, 10 insertions, 5 deletions
diff --git a/res/layout/regulatory_info.xml b/res/layout/regulatory_info.xml
index dc1efe8..5827557 100755
--- a/res/layout/regulatory_info.xml
+++ b/res/layout/regulatory_info.xml
@@ -13,9 +13,14 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
- android:adjustViewBounds="true"
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:scaleType="centerCrop"
- android:src="@drawable/regulatory_info"/>
+ android:layout_height="wrap_content">
+ <ImageView
+ android:adjustViewBounds="true"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:scaleType="centerCrop"
+ android:src="@drawable/regulatory_info" />
+</ScrollView>
+