|
| 1 | +<!-- |
| 2 | + ~ This project is licensed under the open source MPL V2. |
| 3 | + ~ See https://github.com/openMF/self-service-app/blob/master/LICENSE.md |
| 4 | + --> |
| 5 | +<androidx.coordinatorlayout.widget.CoordinatorLayout |
| 6 | + xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 | + android:background="@drawable/bg_about" |
| 8 | + android:layout_gravity="center" |
| 9 | + android:layout_height="match_parent" |
| 10 | + android:layout_width="match_parent" |
| 11 | + android:orientation="vertical"> |
| 12 | + |
| 13 | + <LinearLayout |
| 14 | + android:layout_gravity="center" |
| 15 | + android:layout_height="wrap_content" |
| 16 | + android:layout_width="wrap_content" |
| 17 | + android:orientation="vertical"> |
| 18 | + |
| 19 | + <TextView |
| 20 | + android:layout_gravity="center" |
| 21 | + android:layout_height="wrap_content" |
| 22 | + android:layout_width="wrap_content" |
| 23 | + android:text="@string/app_name" |
| 24 | + android:textAppearance="@style/Base.TextAppearance.AppCompat.Medium" |
| 25 | + android:textColor="@color/black"/> |
| 26 | + |
| 27 | + <TextView |
| 28 | + style="@style/Base.TextAppearance.AppCompat.Small" |
| 29 | + android:id="@+id/tv_app_version" |
| 30 | + android:layout_gravity="center" |
| 31 | + android:layout_height="wrap_content" |
| 32 | + android:layout_width="wrap_content" |
| 33 | + android:text="@string/app_version"/> |
| 34 | + |
| 35 | + <ImageView |
| 36 | + android:layout_width="132dp" |
| 37 | + android:layout_height="148dp" |
| 38 | + android:layout_gravity="center" |
| 39 | + android:layout_margin="@dimen/layout_padding_16dp" |
| 40 | + android:src="@drawable/mifos_logo_new" /> |
| 41 | + |
| 42 | + <TextView |
| 43 | + style="@style/Base.TextAppearance.AppCompat.Small" |
| 44 | + android:id="@+id/tv_copy_right" |
| 45 | + android:layout_gravity="center" |
| 46 | + android:layout_height="wrap_content" |
| 47 | + android:layout_width="wrap_content" |
| 48 | + android:text="@string/copy_right_mifos"/> |
| 49 | + |
| 50 | + <TextView |
| 51 | + style="@style/Base.TextAppearance.AppCompat.Small" |
| 52 | + android:layout_gravity="center" |
| 53 | + android:layout_height="wrap_content" |
| 54 | + android:layout_width="wrap_content" |
| 55 | + android:text="@string/all_rights_reserved"/> |
| 56 | + |
| 57 | + <TextView |
| 58 | + android:id="@+id/tv_licenses" |
| 59 | + android:layout_gravity="center" |
| 60 | + android:layout_height="wrap_content" |
| 61 | + android:layout_marginBottom="@dimen/layout_padding_4dp" |
| 62 | + android:layout_marginTop="@dimen/layout_padding_48dp" |
| 63 | + android:layout_width="wrap_content" |
| 64 | + android:text="@string/licenses" |
| 65 | + android:textColor="@color/colorPrimary" |
| 66 | + android:textSize="@dimen/text_medium"/> |
| 67 | + |
| 68 | + <TextView |
| 69 | + android:id="@+id/tv_privacy_policy" |
| 70 | + android:layout_gravity="center" |
| 71 | + android:layout_height="wrap_content" |
| 72 | + android:layout_width="wrap_content" |
| 73 | + android:text="@string/privacy_policy" |
| 74 | + android:textColor="@color/colorPrimary" |
| 75 | + android:textSize="@dimen/text_medium"/> |
| 76 | + |
| 77 | + </LinearLayout> |
| 78 | + |
| 79 | +</androidx.coordinatorlayout.widget.CoordinatorLayout> |
0 commit comments