diff options
-rwxr-xr-x | res/layout/regulatory_info.xml | 15 |
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> + |