summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/searchfragment/res
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/dialer/searchfragment/res')
-rw-r--r--java/com/android/dialer/searchfragment/res/layout/fragment_search.xml21
-rw-r--r--java/com/android/dialer/searchfragment/res/layout/search_contact_row.xml75
-rw-r--r--java/com/android/dialer/searchfragment/res/values/dimens.xml23
3 files changed, 0 insertions, 119 deletions
diff --git a/java/com/android/dialer/searchfragment/res/layout/fragment_search.xml b/java/com/android/dialer/searchfragment/res/layout/fragment_search.xml
deleted file mode 100644
index 06f234889..000000000
--- a/java/com/android/dialer/searchfragment/res/layout/fragment_search.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- ~ Copyright (C) 2017 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
- -->
-<android.support.v7.widget.RecyclerView
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/recycler_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
diff --git a/java/com/android/dialer/searchfragment/res/layout/search_contact_row.xml b/java/com/android/dialer/searchfragment/res/layout/search_contact_row.xml
deleted file mode 100644
index efeca0e9d..000000000
--- a/java/com/android/dialer/searchfragment/res/layout/search_contact_row.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- ~ Copyright (C) 2017 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:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="@dimen/search_row_height"
- android:paddingStart="16dp"
- android:paddingEnd="16dp"
- android:background="?android:attr/selectableItemBackground">
-
- <QuickContactBadge
- android:id="@+id/photo"
- android:layout_width="@dimen/search_row_height"
- android:layout_height="@dimen/search_row_height"
- android:padding="@dimen/search_photo_padding"
- android:clickable="false"/>
-
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_toEndOf="@+id/photo"
- android:layout_toStartOf="@+id/call_to_action"
- android:layout_centerVertical="true">
-
- <TextView
- android:id="@+id/primary"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingStart="@dimen/search_text_padding_start"
- android:gravity="center_vertical|start"
- android:textSize="@dimen/new_search_text_size"
- android:textColor="@color/dialer_primary_text_color"
- android:maxLines="1"
- android:ellipsize="end"
- android:fontFamily="sans-serif"/>
-
- <TextView
- android:id="@+id/secondary"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingStart="@dimen/search_text_padding_start"
- android:gravity="center_vertical|start"
- android:textSize="@dimen/new_search_text_size"
- android:textColor="@color/dialer_primary_text_color"
- android:maxLines="1"
- android:ellipsize="end"
- android:fontFamily="sans-serif"/>
- </LinearLayout>
-
- <ImageView
- android:id="@+id/call_to_action"
- android:layout_width="@dimen/search_row_height"
- android:layout_height="@dimen/search_row_height"
- android:layout_alignParentEnd="true"
- android:padding="@dimen/call_to_action_padding"
- android:tint="@color/secondary_text_color"
- android:visibility="gone"
- android:scaleType="center"/>
-</RelativeLayout> \ No newline at end of file
diff --git a/java/com/android/dialer/searchfragment/res/values/dimens.xml b/java/com/android/dialer/searchfragment/res/values/dimens.xml
deleted file mode 100644
index d5459ddb3..000000000
--- a/java/com/android/dialer/searchfragment/res/values/dimens.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- ~ Copyright (C) 2017 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
- -->
-<resources>
- <dimen name="search_row_height">56dp</dimen>
- <dimen name="search_photo_padding">8dp</dimen>
- <dimen name="call_to_action_padding">8dp</dimen>
- <dimen name="search_text_padding_start">16dp</dimen>
- <dimen name="new_search_text_size">16sp</dimen>
-</resources> \ No newline at end of file