2019-04-06 04:24:28 +00:00
|
|
|
<?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/. -->
|
2020-04-29 07:15:32 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/private_session_description_wrapper"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="0.5dp"
|
|
|
|
android:importantForAccessibility="no"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/private_session_description"
|
2019-04-06 04:24:28 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-29 07:15:32 +00:00
|
|
|
android:ellipsize="none"
|
|
|
|
android:lineSpacingExtra="6dp"
|
2020-04-29 10:25:08 +00:00
|
|
|
android:paddingHorizontal="4dp"
|
|
|
|
android:paddingTop="4dp"
|
2020-04-29 07:15:32 +00:00
|
|
|
android:scrollHorizontally="false"
|
2020-08-19 10:30:50 +00:00
|
|
|
android:textAlignment="viewStart"
|
2020-04-29 07:15:32 +00:00
|
|
|
android:textColor="?primaryText"
|
2020-08-19 10:30:50 +00:00
|
|
|
android:textDirection="locale"
|
2020-04-29 07:15:32 +00:00
|
|
|
android:textSize="14sp"
|
|
|
|
tools:text="@string/private_browsing_placeholder_description_2" />
|
|
|
|
|
2020-05-25 09:37:18 +00:00
|
|
|
<org.mozilla.fenix.utils.LinkTextView
|
2020-04-29 07:15:32 +00:00
|
|
|
android:id="@+id/private_session_common_myths"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="none"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:lineSpacingExtra="6dp"
|
2020-04-29 10:25:08 +00:00
|
|
|
android:paddingHorizontal="4dp"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:paddingBottom="19dp"
|
2020-04-29 07:15:32 +00:00
|
|
|
android:scrollHorizontally="false"
|
|
|
|
android:text="@string/private_browsing_common_myths"
|
|
|
|
android:textColor="?primaryText"
|
|
|
|
android:textSize="14sp" />
|
2019-06-26 23:03:06 +00:00
|
|
|
</LinearLayout>
|