summaryrefslogtreecommitdiff
path: root/PermissionController/res/layout/permission_history_widget.xml
diff options
context:
space:
mode:
Diffstat (limited to 'PermissionController/res/layout/permission_history_widget.xml')
-rw-r--r--PermissionController/res/layout/permission_history_widget.xml53
1 files changed, 0 insertions, 53 deletions
diff --git a/PermissionController/res/layout/permission_history_widget.xml b/PermissionController/res/layout/permission_history_widget.xml
deleted file mode 100644
index 9bdef7200..000000000
--- a/PermissionController/res/layout/permission_history_widget.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?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/permission_history_layout"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:orientation="horizontal">
-
- <TextView
- android:id="@+id/permission_history_time"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:minWidth="60dp"
- android:layout_marginTop="19dp"
- />
-
- <LinearLayout
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- android:layout_marginEnd="20dp"
- android:orientation="vertical">
- <ImageView
- android:id="@+id/permission_history_icon"
- android:layout_width="32dp"
- android:layout_height="32dp"
- android:layout_marginStart="7dp"
- android:layout_marginTop="14dp"/>
-
- <View
- android:id="@+id/permission_history_dash_line"
- android:layout_width="26dp"
- android:layout_height="26dp"
- android:layout_marginStart="10dp"
- android:layout_marginTop="12dp"
- android:background="@drawable/permission_history_dash_line" />
- </LinearLayout>
-</LinearLayout>