<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2021 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/privacy_item"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="48dp"
    android:orientation="horizontal"
    android:layout_marginTop="4dp"
    android:importantForAccessibility="yes"
    android:background="?android:attr/selectableItemBackground"
    android:focusable="true"
    >
    <!-- 4dp marginTop makes 20dp minimum between icons -->
    <ImageView
        android:id="@+id/icon"
        android:layout_width="@dimen/ongoing_appops_dialog_circle_size"
        android:layout_height="@dimen/ongoing_appops_dialog_circle_size"
        android:layout_gravity="center_vertical"
    />

    <TextView
        android:id="@+id/text"
        android:layout_height="wrap_content"
        android:minHeight="48dp"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_gravity="center_vertical"
        android:layout_marginStart="16dp"
        android:layout_marginEnd="16dp"
        android:textDirection="locale"
        android:textAlignment="viewStart"
        android:gravity="start | center_vertical"
        android:textAppearance="@style/TextAppearance.PrivacyDialog"
        android:lineHeight="20sp"
    />

    <ImageView
        android:id="@+id/chevron"
        android:layout_height="24dp"
        android:layout_width="24dp"
        android:layout_gravity="center_vertical"
        android:src="@*android:drawable/ic_chevron_end"
        android:tint="?android:attr/textColorPrimary"
        />

</LinearLayout>