summaryrefslogtreecommitdiffstats
path: root/res/layout/hidden_folder.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/hidden_folder.xml')
-rw-r--r--res/layout/hidden_folder.xml70
1 files changed, 0 insertions, 70 deletions
diff --git a/res/layout/hidden_folder.xml b/res/layout/hidden_folder.xml
deleted file mode 100644
index fc336dde2..000000000
--- a/res/layout/hidden_folder.xml
+++ /dev/null
@@ -1,70 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2015 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"
- xmlns:insettable="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/settings_bg_color"
- android:orientation="vertical"
- android:paddingLeft="@dimen/overview_panel_button_spacing"
- android:paddingRight="@dimen/overview_panel_button_spacing"
- android:paddingTop="@dimen/overview_panel_bottom_padding"
- android:focusable="true"
- android:focusableInTouchMode="true"
- insettable:layout_ignoreInsets="true"
- android:clickable="true" >
-
- <RelativeLayout
- android:id="@+id/folder_title_lock"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/folder_lock_icon"
- android:layout_width="25dp"
- android:layout_height="25dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:src="@drawable/folder_unlocked"
- android:background="@drawable/listitem_bg" />
-
- <EditText
- android:id="@+id/folder_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_toStartOf="@id/folder_lock_icon"
- android:paddingBottom="@dimen/folder_name_padding"
- android:paddingTop="@dimen/folder_name_padding"
- android:hint="@string/folder_hint_text"
- android:textColor="@color/workspace_icon_text_color"
- android:textSize="20sp"
- android:textColorHighlight="@color/folder_name_highlight_text_color"
- android:textColorHint="@color/folder_name_hint_text_color"
- android:textCursorDrawable="@null"
- android:singleLine="true"
- android:background="#00000000" />
- </RelativeLayout>
-
- <ListView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/hidden_apps_list"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp" />
-
-</LinearLayout>