61 lines
2.8 KiB
XML
61 lines
2.8 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.
|
||
|
|
-->
|
||
|
|
<androidx.constraintlayout.motion.widget.MotionLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_height="@dimen/fullscreen_indicator_height"
|
||
|
|
android:layout_width="@dimen/fullscreen_indicator_container_width"
|
||
|
|
android:layout_marginTop="@dimen/fullscreen_indicator_padding_vertical"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
|
app:layoutDescription="@xml/immersive_privacy_chip_scene">
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/immersive_privacy_microphone"
|
||
|
|
android:contentDescription="@null"
|
||
|
|
android:layout_height="@dimen/fullscreen_indicator_height"
|
||
|
|
android:layout_width="@dimen/fullscreen_indicator_width"
|
||
|
|
android:scaleType="center"
|
||
|
|
android:src="@drawable/ic_mic_dark"
|
||
|
|
android:background="@drawable/privacy_chip_active_background_pill"
|
||
|
|
android:visibility="gone"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/immersive_privacy_camera"
|
||
|
|
android:contentDescription="@null"
|
||
|
|
android:layout_height="@dimen/fullscreen_indicator_height"
|
||
|
|
android:layout_width="@dimen/fullscreen_indicator_width"
|
||
|
|
android:scaleType="center"
|
||
|
|
android:src="@drawable/ic_camera_dark"
|
||
|
|
android:background="@drawable/privacy_chip_active_background_pill"
|
||
|
|
android:visibility="gone"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/immersive_privacy_dot"
|
||
|
|
android:contentDescription="@null"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:scaleType="center"
|
||
|
|
android:src="@drawable/system_animation_ongoing_dot"
|
||
|
|
android:visibility="gone"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
||
|
|
</androidx.constraintlayout.motion.widget.MotionLayout>
|