Skip to content

Commit

Permalink
Closes mozilla-mobile#7761: Makes the Parent Folder Selector height 4…
Browse files Browse the repository at this point in the history
…8dp for touch accessibility
  • Loading branch information
CloudyDino authored and ekager committed Mar 21, 2020
1 parent 862be3e commit 3d292f0
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions app/src/main/res/layout/fragment_edit_bookmark.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@
- 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 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:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="16dp"
android:orientation="vertical">
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="16dp"
android:orientation="vertical">

<ProgressBar
android:id="@+id/progress_bar_bookmark"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
android:indeterminate="true"
android:layout_width="match_parent"
android:layout_height="8dp"
android:indeterminate="true"
android:translationY="-3dp"
android:visibility="gone"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent" />
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<TextView
android:id="@+id/bookmark_name_label"
Expand Down Expand Up @@ -88,13 +88,14 @@
<TextView
android:id="@+id/bookmarkParentFolderSelector"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="48dp"
android:layout_marginStart="4dp"
android:layout_marginTop="8dp"
app:drawableStartCompat="@drawable/ic_folder_icon"
android:drawablePadding="10dp"
android:gravity="center_vertical"
android:textColor="?secondaryText"
android:textSize="16sp"
app:drawableStartCompat="@drawable/ic_folder_icon"
app:drawableTint="?primaryText"
tools:text="Mobile Bookmarks" />

Expand Down

0 comments on commit 3d292f0

Please sign in to comment.