summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/drawer_release_note.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/drawer_release_note.xml')
-rw-r--r--app/src/main/res/layout/drawer_release_note.xml86
1 files changed, 86 insertions, 0 deletions
diff --git a/app/src/main/res/layout/drawer_release_note.xml b/app/src/main/res/layout/drawer_release_note.xml
new file mode 100644
index 000000000..168d5db28
--- /dev/null
+++ b/app/src/main/res/layout/drawer_release_note.xml
@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+
+ <androidx.appcompat.widget.AppCompatTextView
+ android:id="@+id/version"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:ellipsize="end"
+ android:lines="1"
+ android:padding="2dp"
+ android:textSize="18sp"
+ android:textStyle="bold" />
+
+ <androidx.appcompat.widget.AppCompatTextView
+ android:id="@+id/note"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:padding="5dp"
+ android:textSize="16sp" />
+
+ <com.google.android.material.button.MaterialButton
+ android:id="@+id/translate"
+ style="@style/Widget.App.Button.IconOnly.Outline"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="end"
+ android:contentDescription="@string/translate"
+ app:icon="@drawable/ic_baseline_translate_24"
+ app:iconPadding="0dp" />
+
+ <androidx.constraintlayout.widget.ConstraintLayout
+ android:id="@+id/container_trans"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="6dp"
+ android:layout_marginTop="6dp"
+ android:layout_marginEnd="6dp"
+ android:orientation="vertical"
+ android:visibility="gone">
+
+ <View
+ android:id="@+id/translation_border_view"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:background="@drawable/translation_border"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/translation_border_top" />
+
+ <androidx.constraintlayout.widget.Placeholder
+ android:id="@+id/translation_border_top"
+ android:layout_width="wrap_content"
+ android:layout_height="1dp"
+ app:layout_constraintBottom_toBottomOf="@id/translation_label"
+ app:layout_constraintEnd_toEndOf="@id/translation_label"
+ app:layout_constraintTop_toTopOf="@id/translation_label" />
+
+ <TextView
+ android:id="@+id/translation_label"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="10dp"
+ android:background="?backgroundColorLight"
+ android:paddingStart="2dp"
+ android:paddingEnd="2dp"
+ android:text="@string/translation"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+
+ <TextView
+ android:id="@+id/note_translated"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="8dp"
+ android:layout_marginTop="4dp"
+ android:layout_marginEnd="8dp"
+ android:layout_marginBottom="4dp"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/translation_label"
+ app:layout_goneMarginBottom="8dp" />
+
+ </androidx.constraintlayout.widget.ConstraintLayout>
+</androidx.appcompat.widget.LinearLayoutCompat> \ No newline at end of file