diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2020-03-31 19:43:57 +0000 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2020-04-27 16:21:51 +0000 |
| commit | 57fa33f93693539ec91b72bb15bbe56963d18d50 (patch) | |
| tree | 611a1634ed6b5f1de2e87cf172d1a37c4c727522 /android/src/main/res/layout | |
| parent | 777c02df0194a175f346f5918615bc139bd77e3c (diff) | |
| download | mullvadvpn-57fa33f93693539ec91b72bb15bbe56963d18d50.tar.xz mullvadvpn-57fa33f93693539ec91b72bb15bbe56963d18d50.zip | |
Create `InformationView` helper widget
Diffstat (limited to 'android/src/main/res/layout')
| -rw-r--r-- | android/src/main/res/layout/information_view.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/android/src/main/res/layout/information_view.xml b/android/src/main/res/layout/information_view.xml new file mode 100644 index 0000000000..b59aac9b7b --- /dev/null +++ b/android/src/main/res/layout/information_view.xml @@ -0,0 +1,17 @@ +<merge xmlns:android="http://schemas.android.com/apk/res/android"> + <TextView android:id="@+id/description" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginBottom="9dp" + android:textColor="@color/white60" + android:textSize="13sp" + android:textStyle="bold" + android:text="" /> + <TextView android:id="@+id/information_display" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textColor="@color/white" + android:textSize="16sp" + android:textStyle="bold" + android:text="" /> +</merge> |
