diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2020-09-16 21:47:47 +0000 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2020-09-25 11:43:22 +0000 |
| commit | 0cbe55dec2dab2d5df4b4d0beab519a58d47a430 (patch) | |
| tree | 13ea83612455a7290b48b6e581c4756167352254 /android/src | |
| parent | 6e5bbe9648ba543f8c5ec20699f8d9a38d2cda56 (diff) | |
| download | mullvadvpn-0cbe55dec2dab2d5df4b4d0beab519a58d47a430.tar.xz mullvadvpn-0cbe55dec2dab2d5df4b4d0beab519a58d47a430.zip | |
Use a `FrameLayout` for the account history entry
Diffstat (limited to 'android/src')
| -rw-r--r-- | android/src/main/res/layout/account_history_entry.xml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/android/src/main/res/layout/account_history_entry.xml b/android/src/main/res/layout/account_history_entry.xml index d168bc6cc1..2cc15e1621 100644 --- a/android/src/main/res/layout/account_history_entry.xml +++ b/android/src/main/res/layout/account_history_entry.xml @@ -1,7 +1,6 @@ -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="@dimen/account_history_entry_height" - android:orientation="vertical"> +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="@dimen/account_history_entry_height"> <TextView android:id="@+id/label" android:layout_width="match_parent" android:layout_height="match_parent" @@ -11,4 +10,4 @@ android:textColor="@color/blue80" android:textSize="@dimen/text_medium_plus" android:textStyle="bold" /> -</LinearLayout> +</FrameLayout> |
