265 lines
9.2 KiB
XML
265 lines
9.2 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<!--
|
||
|
|
~ Copyright (C) 2023 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.
|
||
|
|
-->
|
||
|
|
|
||
|
|
<RelativeLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_centerHorizontal="true"
|
||
|
|
android:padding="8dp"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:background="#444444">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_title"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="10dp"
|
||
|
|
android:text="Metadata for "HDR (test)" (values in linear space):" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="10dp"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_gainmapmin_text"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Gain Map Min:" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_gainmapmin_val"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ems="4"
|
||
|
|
android:text="TODO" />
|
||
|
|
|
||
|
|
<SeekBar
|
||
|
|
android:id="@+id/gainmap_metadata_gainmapmin"
|
||
|
|
android:min="0"
|
||
|
|
android:max="100"
|
||
|
|
android:layout_width="150dp"
|
||
|
|
android:layout_height="wrap_content" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="10dp"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_gainmapmax_text"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Gain Map Max:" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_gainmapmax_val"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ems="4"
|
||
|
|
android:text="TODO" />
|
||
|
|
|
||
|
|
<SeekBar
|
||
|
|
android:id="@+id/gainmap_metadata_gainmapmax"
|
||
|
|
android:min="0"
|
||
|
|
android:max="100"
|
||
|
|
android:layout_width="150dp"
|
||
|
|
android:layout_height="wrap_content" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="10dp"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_capacitymin_text"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Capacity Min:" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_capacitymin_val"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ems="4"
|
||
|
|
android:text="TODO" />
|
||
|
|
|
||
|
|
<SeekBar
|
||
|
|
android:id="@+id/gainmap_metadata_capacitymin"
|
||
|
|
android:min="0"
|
||
|
|
android:max="100"
|
||
|
|
android:layout_width="150dp"
|
||
|
|
android:layout_height="wrap_content" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="10dp"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_capacitymax_text"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Capacity Max:" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_capacitymax_val"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ems="4"
|
||
|
|
android:text="TODO" />
|
||
|
|
|
||
|
|
<SeekBar
|
||
|
|
android:id="@+id/gainmap_metadata_capacitymax"
|
||
|
|
android:min="0"
|
||
|
|
android:max="100"
|
||
|
|
android:layout_width="150dp"
|
||
|
|
android:layout_height="wrap_content" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="10dp"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_gamma_text"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Gamma:" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_gamma_val"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ems="4"
|
||
|
|
android:text="TODO" />
|
||
|
|
|
||
|
|
<SeekBar
|
||
|
|
android:id="@+id/gainmap_metadata_gamma"
|
||
|
|
android:min="0"
|
||
|
|
android:max="100"
|
||
|
|
android:layout_width="150dp"
|
||
|
|
android:layout_height="wrap_content" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="10dp"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_offsetsdr_text"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Offset SDR:" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_offsetsdr_val"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ems="4"
|
||
|
|
android:text="TODO" />
|
||
|
|
|
||
|
|
<SeekBar
|
||
|
|
android:id="@+id/gainmap_metadata_offsetsdr"
|
||
|
|
android:min="0"
|
||
|
|
android:max="100"
|
||
|
|
android:layout_width="150dp"
|
||
|
|
android:layout_height="wrap_content" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="10dp"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_offsethdr_text"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Offset HDR:" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/gainmap_metadata_offsethdr_val"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:ems="4"
|
||
|
|
android:text="TODO" />
|
||
|
|
|
||
|
|
<SeekBar
|
||
|
|
android:id="@+id/gainmap_metadata_offsethdr"
|
||
|
|
android:min="0"
|
||
|
|
android:max="100"
|
||
|
|
android:layout_width="150dp"
|
||
|
|
android:layout_height="wrap_content" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/gainmap_metadata_reset"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Reset" />
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/gainmap_metadata_done"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Done" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</RelativeLayout>
|