Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e81e0481 authored by Federico Baron's avatar Federico Baron Committed by Android (Google) Code Review
Browse files

Merge "Fix folder name touch target size" into main

parents 79c34b4d 0b2253b5
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -284,6 +284,8 @@ public class Folder extends AbstractFloatingView implements ClipPathView, DragSo
        mContent.setFolder(this);

        mPageIndicator = findViewById(R.id.folder_page_indicator);
        mFooter = findViewById(R.id.folder_footer);
        mFooterHeight = dp.folderFooterHeightPx;
        mFolderName = findViewById(R.id.folder_name);
        mFolderName.setTextSize(TypedValue.COMPLEX_UNIT_PX, dp.folderLabelTextSizePx);
        mFolderName.setOnBackKeyListener(this);
@@ -294,9 +296,10 @@ public class Folder extends AbstractFloatingView implements ClipPathView, DragSo
                | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS
                | InputType.TYPE_TEXT_FLAG_CAP_WORDS);
        mFolderName.forceDisableSuggestions(true);

        mFooter = findViewById(R.id.folder_footer);
        mFooterHeight = dp.folderFooterHeightPx;
        mFolderName.setPadding(mFolderName.getPaddingLeft(),
                (mFooterHeight - mFolderName.getLineHeight()) / 2,
                mFolderName.getPaddingRight(),
                (mFooterHeight - mFolderName.getLineHeight()) / 2);

        mKeyboardInsetAnimationCallback = new KeyboardInsetAnimationCallback(this);
        setWindowInsetsAnimationCallback(mKeyboardInsetAnimationCallback);