1
0
Fork 0

For #1843 - Adds the header elements for collection creation

master
Jeff Boek 2019-04-22 15:29:48 -07:00 committed by Emily Kager
parent ab4cf786d7
commit 8be0d6fea5
2 changed files with 31 additions and 4 deletions

View File

@ -2,10 +2,36 @@
<!-- 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/. -->
<LinearLayout
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
</LinearLayout>
<Button
android:id="@+id/back_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:drawableStart="@drawable/mozac_ic_back"
android:textAppearance="@style/HeaderTextStyle"
android:textColor="?foundation"
android:drawablePadding="8dp"
android:text="@string/create_collection_select_tabs"
android:textSize="20sp"
android:layout_margin="16dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackgroundBorderless"
android:textSize="16sp"
android:text="Select All"
android:textAllCaps="false"
android:textColor="?foundation"
android:layout_margin="16dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -402,4 +402,5 @@
<string name="tracking_protection_on">On</string>
<!-- Summary of tracking protection preference if tracking protection is set to off -->
<string name="tracking_protection_off">Off</string>
<string name="create_collection_select_tabs">Select Tabs</string>
</resources>