[fenix] For https://github.com/mozilla-mobile/fenix/issues/24252 - Rename primaryText...
[gecko.git] / mobile / android / fenix / app / src / main / res / layout / private_browsing_description.xml
blobbae49eef67b90748f9e4a269fcdee6640726891d
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3    - License, v. 2.0. If a copy of the MPL was not distributed with this
4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
6     xmlns:tools="http://schemas.android.com/tools"
7     android:id="@+id/private_session_description_wrapper"
8     android:layout_width="match_parent"
9     android:layout_height="wrap_content"
10     android:layout_marginHorizontal="@dimen/home_item_horizontal_margin"
11     android:importantForAccessibility="no"
12     android:orientation="vertical">
14     <TextView
15         android:id="@+id/private_session_description"
16         android:layout_width="match_parent"
17         android:layout_height="wrap_content"
18         android:ellipsize="none"
19         android:lineSpacingExtra="6dp"
20         android:paddingHorizontal="4dp"
21         android:paddingTop="4dp"
22         android:scrollHorizontally="false"
23         android:textAlignment="viewStart"
24         android:textColor="?attr/textPrimary"
25         android:textDirection="locale"
26         android:textSize="14sp"
27         tools:text="@string/private_browsing_placeholder_description_2" />
29     <org.mozilla.fenix.utils.LinkTextView
30         android:id="@+id/private_session_common_myths"
31         android:layout_width="match_parent"
32         android:layout_height="wrap_content"
33         android:ellipsize="none"
34         android:gravity="center_vertical"
35         android:lineSpacingExtra="6dp"
36         android:paddingHorizontal="4dp"
37         android:paddingTop="10dp"
38         android:paddingBottom="19dp"
39         android:scrollHorizontally="false"
40         android:text="@string/private_browsing_common_myths"
41         android:textColor="?attr/textPrimary"
42         android:textSize="14sp" />
43 </LinearLayout>