[fenix] For https://github.com/mozilla-mobile/fenix/issues/24252 - Rename primaryText...
[gecko.git] / mobile / android / fenix / app / src / main / res / layout / amo_collection_override_dialog.xml
blob5018fc748e10e278fc77580ba8d9346b7898a5ce
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     android:id="@+id/linear_layout"
7     android:layout_width="match_parent"
8     android:layout_height="wrap_content"
9     android:orientation="vertical">
11     <EditText
12         android:id="@+id/custom_amo_user"
13         android:layout_width="match_parent"
14         android:layout_height="wrap_content"
15         android:layout_marginStart="16dp"
16         android:layout_marginTop="8dp"
17         android:layout_marginEnd="16dp"
18         android:autofillHints="false"
19         android:hint="@string/customize_addon_collection_user_hint"
20         android:inputType="number"
21         android:singleLine="true"
22         android:textColor="?attr/textPrimary" />
24     <EditText
25         android:id="@+id/custom_amo_collection"
26         android:layout_width="match_parent"
27         android:layout_height="wrap_content"
28         android:layout_marginStart="16dp"
29         android:layout_marginEnd="16dp"
30         android:autofillHints="false"
31         android:hint="@string/customize_addon_collection_hint"
32         android:inputType="text"
33         android:singleLine="true"
34         android:textColor="?attr/textPrimary" />
36 </LinearLayout>