summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_system_settings.xml
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2020-07-26 18:11:10 +0200
committerJavier <dev.git@javispedro.com>2021-03-21 01:53:33 +0100
commit0119e703ff4a8f3201610c2866702f7f92da0b26 (patch)
tree29e9b48c7850024bfa5270b661dfe2899a82affe /app/src/main/res/layout/fragment_system_settings.xml
downloadautobluetether-0119e703ff4a8f3201610c2866702f7f92da0b26.tar.gz
autobluetether-0119e703ff4a8f3201610c2866702f7f92da0b26.zip
initial import
Diffstat (limited to 'app/src/main/res/layout/fragment_system_settings.xml')
-rw-r--r--app/src/main/res/layout/fragment_system_settings.xml54
1 files changed, 54 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_system_settings.xml b/app/src/main/res/layout/fragment_system_settings.xml
new file mode 100644
index 0000000..e5936b9
--- /dev/null
+++ b/app/src/main/res/layout/fragment_system_settings.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:id="@+id/frameLayout"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ tools:context=".SystemSettingsFragment">
+
+ <ImageView
+ android:id="@+id/imageView2"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="16dp"
+ android:layout_marginLeft="16dp"
+ android:layout_marginTop="16dp"
+ android:layout_marginBottom="16dp"
+ android:src="@drawable/ic_twotone_error_24"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+
+ <TextView
+ android:id="@+id/textView"
+ android:layout_width="0dp"
+ android:layout_height="60dp"
+ android:layout_marginStart="24dp"
+ android:layout_marginLeft="24dp"
+ android:layout_marginTop="16dp"
+ android:layout_marginEnd="16dp"
+ android:layout_marginRight="16dp"
+ android:text="@string/missing_write_settings"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toEndOf="@+id/imageView2"
+ app:layout_constraintTop_toTopOf="parent" />
+
+ <Button
+ android:id="@+id/button"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="24dp"
+ android:layout_marginLeft="24dp"
+ android:layout_marginTop="32dp"
+ android:layout_marginEnd="16dp"
+ android:layout_marginRight="16dp"
+ android:layout_marginBottom="16dp"
+ android:onClick="manageWriteSettings"
+ android:text="@string/manage_write_settings"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toEndOf="@+id/imageView2"
+ app:layout_constraintTop_toBottomOf="@+id/textView" />
+
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file