diff options
author | cyBerta <cyberta@riseup.net> | 2022-05-05 14:32:08 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2022-05-05 14:32:08 +0200 |
commit | 28e002973b6e5dc07f959f7c4d36dfd41a2ac826 (patch) | |
tree | a69ebe400e8b48f48cf356bdeb5558df48fa7f24 /app/src/main/res/layout | |
parent | 69ee2d4e1d685f52e6d49e36aa04017314f1e10e (diff) |
fix left-right alignment in about fragment, fix space dimensions (dp instead of sp)
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/f_about.xml | 43 |
1 files changed, 23 insertions, 20 deletions
diff --git a/app/src/main/res/layout/f_about.xml b/app/src/main/res/layout/f_about.xml index acf686eb..b73d2191 100644 --- a/app/src/main/res/layout/f_about.xml +++ b/app/src/main/res/layout/f_about.xml @@ -4,8 +4,11 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" - android:layout_marginLeft="8sp" - tools:context=".base.MainActivity" > + android:layout_marginLeft="@dimen/stdpadding" + android:layout_marginStart="@dimen/stdpadding" + android:layout_marginRight="@dimen/stdpadding" + android:layout_marginEnd="@dimen/stdpadding" + tools:context=".base.MainActivity"> <LinearLayout android:layout_width="match_parent" @@ -20,7 +23,7 @@ <Space android:layout_width="match_parent" - android:layout_height="10sp" /> + android:layout_height="10dp" /> <androidx.appcompat.widget.AppCompatTextView android:id="@+id/terms_of_service" @@ -39,7 +42,7 @@ <Space android:layout_width="match_parent" - android:layout_height="10sp" /> + android:layout_height="10dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -50,7 +53,7 @@ <Space android:layout_width="match_parent" - android:layout_height="10sp" /> + android:layout_height="10dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -66,7 +69,7 @@ <Space android:layout_width="match_parent" - android:layout_height="10sp" /> + android:layout_height="10dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -76,7 +79,7 @@ <Space android:layout_width="match_parent" - android:layout_height="10sp" /> + android:layout_height="10dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -86,7 +89,7 @@ <Space android:layout_width="match_parent" - android:layout_height="10sp" /> + android:layout_height="10dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -95,7 +98,7 @@ <Space android:layout_width="match_parent" - android:layout_height="10sp" /> + android:layout_height="10dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -132,7 +135,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -147,7 +150,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -162,7 +165,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -177,7 +180,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -192,7 +195,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -207,7 +210,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -222,7 +225,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -237,7 +240,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -252,7 +255,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -267,7 +270,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" @@ -282,7 +285,7 @@ <Space android:layout_width="match_parent" - android:layout_height="20sp" /> + android:layout_height="20dp" /> <androidx.appcompat.widget.AppCompatTextView android:layout_width="match_parent" |