2024-08-12 17:02:52 +09:00
|
|
|
<?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"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:padding="@dimen/twelve">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
|
android:id="@+id/backHome"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/back_home"
|
|
|
|
|
android:textSize="@dimen/normalText"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
|
|
|
android:id="@+id/backHomeGroup"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/backHome"
|
|
|
|
|
app:selectionRequired="true"
|
|
|
|
|
app:singleSelection="true">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.Chip
|
|
|
|
|
android:id="@+id/backHomePositive"
|
|
|
|
|
style="@style/Widget.Material3.Chip.Filter.Elevated"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/positive" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.Chip
|
|
|
|
|
android:id="@+id/backHomeNegative"
|
|
|
|
|
style="@style/Widget.Material3.Chip.Filter.Elevated"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/negative" />
|
|
|
|
|
</com.google.android.material.chip.ChipGroup>
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
|
android:id="@+id/shortcutCountTitle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/twelve"
|
|
|
|
|
android:text="@string/shortcut_count"
|
|
|
|
|
android:textSize="@dimen/normalText"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/backHomeGroup" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.slider.Slider
|
|
|
|
|
android:id="@+id/shortcutCount"
|
|
|
|
|
android:layout_width="@dimen/zero"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:stepSize="1"
|
|
|
|
|
android:valueFrom="0"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/shortcutCountTitle" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
|
android:id="@+id/iconSizeTitle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/twelve"
|
|
|
|
|
android:text="@string/icon_size"
|
|
|
|
|
android:textSize="@dimen/normalText"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/shortcutCount" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.slider.Slider
|
|
|
|
|
android:id="@+id/iconSize"
|
|
|
|
|
android:layout_width="@dimen/zero"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:valueFrom="20"
|
|
|
|
|
android:valueTo="80"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/iconSizeTitle" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
|
android:id="@+id/feedInputLayout"
|
|
|
|
|
android:layout_width="@dimen/threeTwentyFour"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/twelve"
|
|
|
|
|
android:hint="@string/feed_url"
|
|
|
|
|
app:endIconMode="clear_text"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/iconSize">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
|
android:id="@+id/inputFeedUrl"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:imeOptions="actionDone"
|
|
|
|
|
android:singleLine="true" />
|
2024-08-14 18:47:36 +09:00
|
|
|
|
|
|
|
|
|
2024-08-12 17:02:52 +09:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2024-08-14 18:47:36 +09:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
|
android:id="@+id/feedInputLayout2"
|
|
|
|
|
android:layout_width="@dimen/threeTwentyFour"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/twelve"
|
|
|
|
|
android:hint="@string/feed_url"
|
|
|
|
|
app:endIconMode="clear_text"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/feedInputLayout">
|
2024-08-12 17:02:52 +09:00
|
|
|
|
2024-08-14 18:47:36 +09:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
|
|
|
android:id="@+id/inputFeedUrl2"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:imeOptions="actionDone"
|
|
|
|
|
android:singleLine="true" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2024-08-12 17:02:52 +09:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
|
android:id="@+id/doubleTapLock"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="@dimen/twelve"
|
|
|
|
|
android:text="@string/double_tap_action"
|
|
|
|
|
android:textSize="@dimen/normalText"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2024-08-14 18:47:36 +09:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/feedInputLayout2" />
|
2024-08-12 17:02:52 +09:00
|
|
|
|
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
|
|
|
android:id="@+id/lockGroup"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/doubleTapLock"
|
|
|
|
|
app:selectionRequired="true"
|
|
|
|
|
app:singleSelection="true">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.Chip
|
|
|
|
|
android:id="@+id/selectLockNegative"
|
|
|
|
|
style="@style/Widget.Material3.Chip.Filter.Elevated"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/negative" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.Chip
|
|
|
|
|
android:id="@+id/selectLockAccessibility"
|
|
|
|
|
style="@style/Widget.Material3.Chip.Filter.Elevated"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/accessibility" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.Chip
|
|
|
|
|
android:id="@+id/selectLockAdmin"
|
|
|
|
|
style="@style/Widget.Material3.Chip.Filter.Elevated"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/device_admin" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.chip.Chip
|
|
|
|
|
android:id="@+id/selectLockRoot"
|
|
|
|
|
style="@style/Widget.Material3.Chip.Filter.Elevated"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/root" />
|
|
|
|
|
</com.google.android.material.chip.ChipGroup>
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|