diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-11-27 21:29:40 +0100 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2017-11-27 21:29:40 +0100 |
commit | bbe058418bb0a509cb694df598e6017e1df901a2 (patch) | |
tree | 63a0457acd97d5143c21e3fcf8cdc2bbaeae253d /app/src/main/res/layout | |
parent | 982387b4e47cf18ab0dd343d23c96489a16896d2 (diff) |
NotSupported: Better sorry text
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/not_supported_activity.xml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/app/src/main/res/layout/not_supported_activity.xml b/app/src/main/res/layout/not_supported_activity.xml index 8e093279..02f93473 100644 --- a/app/src/main/res/layout/not_supported_activity.xml +++ b/app/src/main/res/layout/not_supported_activity.xml @@ -1,9 +1,14 @@ <?xml version="1.0" encoding="utf-8"?> <layout xmlns:android="http://schemas.android.com/apk/res/android"> - <TextView - android:id="@+id/not_supported_message" + <ScrollView android:layout_width="match_parent" - android:layout_height="match_parent" - android:padding="32dp" /> + android:layout_height="match_parent"> + + <TextView + android:id="@+id/not_supported_message" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:padding="32dp" /> + </ScrollView> </layout> |