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

Commit 77d598d0 authored by Catherine Liang's avatar Catherine Liang
Browse files

Clean up pre-revamped UI sections (2/3)

Remove files no longer needed in revamped UI that are related to section
views and controllers. This is a part of the effort to clean up
pre-revamped UI files and eventually remove the revamped UI flag.

Bug: 262780002
Test: manually verified that functionalities throughout the revamped UI
picker still work

Change-Id: Iaa39a51dad58106a3123d5b578934c058cd6df44
parent 13023b16
Loading
Loading
Loading
Loading

res/layout/color_section_view.xml

deleted100644 → 0
+0 −38
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2022 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<com.android.customization.picker.color.ColorSectionView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingBottom="@dimen/section_bottom_padding"
    android:orientation="vertical">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingHorizontal="@dimen/separated_tabs_horizontal_padding">
        <include layout="@layout/separated_tabs" />
    </FrameLayout>

    <androidx.viewpager2.widget.ViewPager2
        android:id="@+id/color_section_view_pager"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/color_options_container_top_margin"
        android:clipChildren="false"
        android:clipToPadding="false"/>
</com.android.customization.picker.color.ColorSectionView>