summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2015-03-16 19:56:29 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-03-16 19:56:29 +0000
commite1b8593e78f9a645684bd1f0e3b6211fdccc92be (patch)
treee1cff627c1bae1838e752b854d21ed4b066d7409 /res/layout
parent1921e861b051159131df71a405b7ee2aff636e35 (diff)
parent14cfa66d6df53303c280194d661c0b32838aa417 (diff)
Merge "Delete call log list item extras."
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/call_log_list_item.xml6
-rw-r--r--res/layout/call_log_list_item_extra.xml68
2 files changed, 1 insertions, 73 deletions
diff --git a/res/layout/call_log_list_item.xml b/res/layout/call_log_list_item.xml
index db59b74d3..910e78f5e 100644
--- a/res/layout/call_log_list_item.xml
+++ b/res/layout/call_log_list_item.xml
@@ -155,9 +155,5 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
- <!-- Displays the extra link section -->
- <ViewStub android:id="@+id/link_stub"
- android:layout="@layout/call_log_list_item_extra"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"/>
+
</LinearLayout>
diff --git a/res/layout/call_log_list_item_extra.xml b/res/layout/call_log_list_item_extra.xml
deleted file mode 100644
index 87b932bc6..000000000
--- a/res/layout/call_log_list_item_extra.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<!--
- ~ Copyright (C) 2013 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
- -->
-
-<!-- Can't use merge here because this is referenced via a ViewStub -->
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/badge_container"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
-
- <View android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="@color/favorite_contacts_separator_color" />
-
- <LinearLayout android:id="@+id/badge_link_container"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingStart="@dimen/call_log_outer_margin"
- android:paddingEnd="@dimen/call_log_outer_margin"
- android:paddingTop="@dimen/call_log_item_extra_padding_vertical"
- android:paddingBottom="@dimen/call_log_item_extra_padding_vertical"
- android:background="?android:attr/selectableItemBackground"
- android:clickable="true">
-
- <ImageView android:id="@+id/badge_image"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:tint="@color/call_log_extras_text_color"
- android:padding="@dimen/call_log_outer_margin" />
-
- <TextView android:id="@+id/badge_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingStart="@dimen/call_log_start_margin"
- android:textColor="@color/call_log_extras_text_color"
- android:layout_gravity="center_vertical"
- android:layout_weight="1" />
-
- <ImageView android:id="@+id/dismiss_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="@dimen/icon_padding"
- android:layout_gravity="center_vertical"
- android:layout_marginEnd="@dimen/call_log_icon_margin"
- android:src="@drawable/ic_close_dk"
- android:tint="@color/recent_call_log_item_phone_icon_tint"
- android:alpha="0.3"
- android:background="?android:attr/selectableItemBackground"
- android:visibility="gone"
- android:contentDescription="@string/description_dismiss" />
-
- </LinearLayout>
-
-</FrameLayout> \ No newline at end of file