blob: 7a8f21af533447182035ac0c6a9a3b826b27370b [file] [log] [blame]
Catherine Liang82703622022-12-21 18:04:54 +00001/*
2 * Copyright (C) 2023 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Catherine Liang6f794ed2023-01-05 16:12:24 +000016package com.android.customization.picker.color.ui.view
Catherine Liang82703622022-12-21 18:04:54 +000017
18import android.content.Context
19import android.util.AttributeSet
Catherine Liang82703622022-12-21 18:04:54 +000020import com.android.wallpaper.picker.SectionView
21
22/**
23 * The class inherits from {@link SectionView} as the view representing the color section of the
24 * customization picker. It displays a list of color options and an overflow option.
25 */
Catherine Liang68e0a822023-01-26 20:22:58 +000026class ColorSectionView2(context: Context, attrs: AttributeSet?) : SectionView(context, attrs)