mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-11 13:11:01 +00:00
0c8c87e56d
When referencing an Android resource ID, you do not need the plus-symbol if you declared before. Caution: make sure that the resource you are referring to is defined EARLIER and not LATER.
93 lines
4.4 KiB
XML
93 lines
4.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
<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/onboarding_card"
|
|
style="@style/OnboardingCardLightWithPadding"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipChildren="false"
|
|
android:clipToPadding="false">
|
|
|
|
<TextView
|
|
android:id="@+id/header_text"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="12dp"
|
|
android:gravity="center_vertical"
|
|
android:lines="1"
|
|
android:text="@string/onboarding_tracking_protection_header_2"
|
|
android:textAppearance="@style/HeaderTextStyle"
|
|
app:layout_constraintEnd_toStartOf="@id/tracking_protection_toggle"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:drawableStart="@drawable/ic_onboarding_tracking_protection" />
|
|
|
|
<androidx.appcompat.widget.SwitchCompat
|
|
android:id="@+id/tracking_protection_toggle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:minWidth="48dp"
|
|
android:minHeight="48dp"
|
|
app:layout_constraintBottom_toBottomOf="@id/header_text"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="@id/header_text" />
|
|
|
|
<TextView
|
|
android:id="@+id/description_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
android:textAppearance="@style/Body14TextStyle"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/header_text"
|
|
tools:text="@string/onboarding_tracking_protection_description_2" />
|
|
|
|
|
|
<org.mozilla.fenix.onboarding.OnboardingRadioButton
|
|
android:id="@+id/tracking_protection_standard_option"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:background="@android:color/transparent"
|
|
android:checked="true"
|
|
android:foreground="@drawable/rounded_ripple"
|
|
android:gravity="top"
|
|
android:paddingStart="8dp"
|
|
android:paddingEnd="8dp"
|
|
android:theme="@style/Checkable.Colored"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/description_text"
|
|
app:onboardingKey="@string/pref_key_tracking_protection_standard_option"
|
|
app:onboardingKeyDescription="@string/onboarding_tracking_protection_standard_button_description_2"
|
|
app:onboardingKeyTitle="@string/onboarding_tracking_protection_standard_button_2"
|
|
tools:text="Standard" />
|
|
|
|
<org.mozilla.fenix.onboarding.OnboardingRadioButton
|
|
android:id="@+id/tracking_protection_strict_default"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:background="@android:color/transparent"
|
|
android:checked="false"
|
|
android:foreground="@drawable/rounded_ripple"
|
|
android:gravity="top"
|
|
android:paddingStart="8dp"
|
|
android:paddingEnd="8dp"
|
|
android:textColor="@color/primary_state_list_text_color"
|
|
android:theme="@style/Checkable.Colored"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/tracking_protection_standard_option"
|
|
app:onboardingKey="@string/pref_key_tracking_protection_strict_default"
|
|
app:onboardingKeyDescription="@string/onboarding_tracking_protection_strict_button_description_2"
|
|
app:onboardingKeyTitle="@string/onboarding_tracking_protection_strict_option"
|
|
tools:text="Strict" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |