| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,126 @@ |
| 1 |
+<?xml version="1.0" encoding="utf-8"?><!-- |
|
| 2 |
+ ~ Copyright (c) 2023 Samson Achiaga |
|
| 3 |
+ ~ |
|
| 4 |
+ ~ Licensed under the Apache License, Version 2.0 (the "License"); |
|
| 5 |
+ ~ you may not use this file except in compliance with the License. |
|
| 6 |
+ ~ You may obtain a copy of the License at |
|
| 7 |
+ ~ |
|
| 8 |
+ ~ http://www.apache.org/licenses/LICENSE-2.0 |
|
| 9 |
+ ~ |
|
| 10 |
+ ~ Unless required by applicable law or agreed to in writing, software |
|
| 11 |
+ ~ distributed under the License is distributed on an "AS IS" BASIS, |
|
| 12 |
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
| 13 |
+ ~ See the License for the specific language governing permissions and |
|
| 14 |
+ ~ limitations under the License. |
|
| 15 |
+ --> |
|
| 16 |
+ |
|
| 17 |
+<layout xmlns:android="http://schemas.android.com/apk/res/android" |
|
| 18 |
+ xmlns:app="http://schemas.android.com/apk/res-auto"> |
|
| 19 |
+ |
|
| 20 |
+ <androidx.constraintlayout.widget.ConstraintLayout |
|
| 21 |
+ android:layout_width="match_parent" |
|
| 22 |
+ android:layout_height="match_parent" |
|
| 23 |
+ android:background="@color/fragment_background"> |
|
| 24 |
+ |
|
| 25 |
+ <androidx.appcompat.widget.AppCompatImageButton |
|
| 26 |
+ android:id="@+id/btn_back" |
|
| 27 |
+ android:layout_width="wrap_content" |
|
| 28 |
+ android:layout_height="wrap_content" |
|
| 29 |
+ android:layout_gravity="center" |
|
| 30 |
+ android:background="@null" |
|
| 31 |
+ android:padding="@dimen/_4sdp" |
|
| 32 |
+ android:tint="@color/black_day_white_night" |
|
| 33 |
+ android:layout_marginStart="@dimen/_8sdp" |
|
| 34 |
+ app:layout_constraintBottom_toBottomOf="@+id/materialTextView" |
|
| 35 |
+ app:layout_constraintStart_toStartOf="parent" |
|
| 36 |
+ app:layout_constraintTop_toTopOf="@+id/materialTextView" |
|
| 37 |
+ app:srcCompat="@drawable/ic_arrow_back_black_24dp" /> |
|
| 38 |
+ |
|
| 39 |
+ <com.google.android.material.textview.MaterialTextView |
|
| 40 |
+ android:id="@+id/materialTextView" |
|
| 41 |
+ android:layout_width="wrap_content" |
|
| 42 |
+ android:layout_height="wrap_content" |
|
| 43 |
+ android:layout_marginStart="@dimen/_32sdp" |
|
| 44 |
+ android:layout_marginTop="@dimen/_16sdp" |
|
| 45 |
+ android:fontFamily="@font/open_sans_bold" |
|
| 46 |
+ android:text="@string/settings" |
|
| 47 |
+ android:textColor="@color/black_day_white_night" |
|
| 48 |
+ android:textSize="@dimen/_22ssp" |
|
| 49 |
+ app:layout_constraintStart_toEndOf="@+id/btn_back" |
|
| 50 |
+ app:layout_constraintTop_toTopOf="parent" /> |
|
| 51 |
+ |
|
| 52 |
+ <ScrollView |
|
| 53 |
+ android:layout_width="0dp" |
|
| 54 |
+ android:layout_height="0dp" |
|
| 55 |
+ android:layout_marginStart="@dimen/_16sdp" |
|
| 56 |
+ android:layout_marginTop="@dimen/_16sdp" |
|
| 57 |
+ android:layout_marginEnd="@dimen/_16sdp" |
|
| 58 |
+ app:layout_constraintBottom_toBottomOf="parent" |
|
| 59 |
+ app:layout_constraintEnd_toEndOf="parent" |
|
| 60 |
+ app:layout_constraintStart_toStartOf="parent" |
|
| 61 |
+ app:layout_constraintTop_toBottomOf="@+id/btn_back"> |
|
| 62 |
+ |
|
| 63 |
+ <androidx.constraintlayout.widget.ConstraintLayout |
|
| 64 |
+ android:layout_width="match_parent" |
|
| 65 |
+ android:layout_height="wrap_content"> |
|
| 66 |
+ |
|
| 67 |
+ <androidx.fragment.app.FragmentContainerView |
|
| 68 |
+ android:id="@+id/preference_fragment" |
|
| 69 |
+ android:name="com.certified.audionote.ui.PreferenceFragment" |
|
| 70 |
+ android:layout_width="0dp" |
|
| 71 |
+ android:layout_height="wrap_content" |
|
| 72 |
+ app:layout_constraintEnd_toEndOf="parent" |
|
| 73 |
+ app:layout_constraintStart_toStartOf="parent" |
|
| 74 |
+ app:layout_constraintTop_toTopOf="parent" /> |
|
| 75 |
+ |
|
| 76 |
+ <androidx.appcompat.widget.AppCompatImageView |
|
| 77 |
+ android:id="@+id/appCompatImageView4" |
|
| 78 |
+ android:layout_width="wrap_content" |
|
| 79 |
+ android:layout_height="wrap_content" |
|
| 80 |
+ android:layout_marginStart="@dimen/_12sdp" |
|
| 81 |
+ android:src="@drawable/ic_info_black_24dp" |
|
| 82 |
+ app:layout_constraintBottom_toBottomOf="@+id/materialTextView9" |
|
| 83 |
+ app:layout_constraintStart_toStartOf="parent" |
|
| 84 |
+ app:layout_constraintTop_toTopOf="@+id/materialTextView8" /> |
|
| 85 |
+ |
|
| 86 |
+ <com.google.android.material.textview.MaterialTextView |
|
| 87 |
+ android:id="@+id/materialTextView8" |
|
| 88 |
+ android:layout_width="wrap_content" |
|
| 89 |
+ android:layout_height="wrap_content" |
|
| 90 |
+ android:layout_marginStart="@dimen/_20sdp" |
|
| 91 |
+ android:layout_marginTop="@dimen/_8sdp" |
|
| 92 |
+ android:text="@string/about" |
|
| 93 |
+ android:fontFamily="@font/open_sans_semi_bold" |
|
| 94 |
+ android:textSize="@dimen/_14ssp" |
|
| 95 |
+ android:textColor="@color/black_day_white_night" |
|
| 96 |
+ app:layout_constraintStart_toEndOf="@+id/appCompatImageView4" |
|
| 97 |
+ app:layout_constraintTop_toBottomOf="@+id/preference_fragment" /> |
|
| 98 |
+ |
|
| 99 |
+ <com.google.android.material.textview.MaterialTextView |
|
| 100 |
+ android:id="@+id/materialTextView9" |
|
| 101 |
+ android:layout_width="wrap_content" |
|
| 102 |
+ android:layout_height="wrap_content" |
|
| 103 |
+ android:layout_marginBottom="@dimen/_4sdp" |
|
| 104 |
+ android:textSize="@dimen/_11ssp" |
|
| 105 |
+ android:fontFamily="@font/open_sans_regular" |
|
| 106 |
+ android:text= "@string/app_version_licence_and_more" |
|
| 107 |
+ app:layout_constraintBottom_toBottomOf="parent" |
|
| 108 |
+ app:layout_constraintStart_toStartOf="@+id/materialTextView8" |
|
| 109 |
+ app:layout_constraintTop_toBottomOf="@+id/materialTextView8" /> |
|
| 110 |
+ |
|
| 111 |
+ <androidx.constraintlayout.widget.Group |
|
| 112 |
+ android:id="@+id/group_about" |
|
| 113 |
+ android:layout_width="0dp" |
|
| 114 |
+ android:layout_height="0dp" |
|
| 115 |
+ app:constraint_referenced_ids="materialTextView9,materialTextView8" |
|
| 116 |
+ app:layout_constraintBottom_toBottomOf="parent" |
|
| 117 |
+ app:layout_constraintEnd_toEndOf="parent" |
|
| 118 |
+ app:layout_constraintStart_toStartOf="parent" |
|
| 119 |
+ app:layout_constraintTop_toTopOf="@+id/materialTextView8" /> |
|
| 120 |
+ |
|
| 121 |
+ </androidx.constraintlayout.widget.ConstraintLayout> |
|
| 122 |
+ |
|
| 123 |
+ </ScrollView> |
|
| 124 |
+ |
|
| 125 |
+ </androidx.constraintlayout.widget.ConstraintLayout> |
|
| 126 |
+</layout> |
|
| 0 | 127 |
\ No newline at end of file |