diff options
Diffstat (limited to 'res/layout/regulatory_info.xml')
-rwxr-xr-x | res/layout/regulatory_info.xml | 35 |
1 files changed, 29 insertions, 6 deletions
diff --git a/res/layout/regulatory_info.xml b/res/layout/regulatory_info.xml index 8cd4157..9082183 100755 --- a/res/layout/regulatory_info.xml +++ b/res/layout/regulatory_info.xml @@ -16,12 +16,35 @@ <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> - <ImageView - android:id="@+id/regulatoryInfo" - android:adjustViewBounds="true" - android:layout_width="wrap_content" + <LinearLayout + android:layout_width="match_parent" android:layout_height="wrap_content" - android:scaleType="centerCrop" - android:src="@drawable/regulatory_info" /> + android:orientation="vertical" + > + <TextView + android:id="@+id/sarValues" + android:textColor="@color/regulatory_text_color" + android:textSize="14sp" + android:padding="5dp" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center"/> + <TextView + android:id="@+id/icCodes" + android:textColor="@color/regulatory_text_color" + android:textSize="14sp" + android:padding="5dp" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center"/> + <ImageView + android:id="@+id/regulatoryInfo" + android:adjustViewBounds="true" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:scaleType="centerCrop" + android:src="@drawable/regulatory_info" + android:visibility="gone"/> + </LinearLayout> </ScrollView> |