summaryrefslogtreecommitdiff
path: root/Settings/res/layout/color_correction_palette.xml
diff options
context:
space:
mode:
Diffstat (limited to 'Settings/res/layout/color_correction_palette.xml')
-rw-r--r--Settings/res/layout/color_correction_palette.xml49
1 files changed, 49 insertions, 0 deletions
diff --git a/Settings/res/layout/color_correction_palette.xml b/Settings/res/layout/color_correction_palette.xml
new file mode 100644
index 000000000..2365a0e2b
--- /dev/null
+++ b/Settings/res/layout/color_correction_palette.xml
@@ -0,0 +1,49 @@
+<?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
+ -->
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/palette_view"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:importantForAccessibility="noHideDescendants"
+ android:theme="@style/ColorCorrectionPaletteTextViewStyle">
+ <TextView
+ android:id="@+id/color_correction_palette_textview_red"
+ android:text="@string/palette_color_red"/>
+ <TextView
+ android:id="@+id/color_correction_palette_textview_orange"
+ android:text="@string/palette_color_orange" />
+ <TextView
+ android:id="@+id/color_correction_palette_textview_yellow"
+ android:text="@string/palette_color_yellow" />
+ <TextView
+ android:id="@+id/color_correction_palette_textview_green"
+ android:text="@string/palette_color_green" />
+ <TextView
+ android:id="@+id/color_correction_palette_textview_cyan"
+ android:text="@string/palette_color_cyan" />
+ <TextView
+ android:id="@+id/color_correction_palette_textview_blue"
+ android:text="@string/palette_color_blue" />
+ <TextView
+ android:id="@+id/color_correction_palette_textview_purple"
+ android:text="@string/palette_color_purple" />
+ <TextView
+ android:id="@+id/color_correction_palette_textview_gray"
+ android:text="@string/palette_color_gray" />
+</LinearLayout> \ No newline at end of file