Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Closes #7761: Makes the Parent Folder Selector height 48dp for touch …
Browse files Browse the repository at this point in the history
…accessibility
  • Loading branch information
CloudyDino authored and BranescuMihai committed Mar 21, 2020
1 parent ab04155 commit 7236913
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 7236913

Please sign in to comment.