diff options
author | Yorke Lee <yorkelee@google.com> | 2014-03-26 02:56:25 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-03-26 02:56:25 +0000 |
commit | 06107886477be724c055b3e151d2988768839a6b (patch) | |
tree | abbeb70bbfbb2239e5cf5716d0a75e6da46db93c /res | |
parent | fde758062c2591fe823f0b1214dafbff220eb9ed (diff) | |
parent | 64f9593c85ac00dbcdbc99d2d18c457c0bd0f68e (diff) |
Merge "Remove layout and logic for unused non-tiled favorites"
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/phone_favorite_regular_row_view.xml | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/res/layout/phone_favorite_regular_row_view.xml b/res/layout/phone_favorite_regular_row_view.xml deleted file mode 100644 index ff8b47a42..000000000 --- a/res/layout/phone_favorite_regular_row_view.xml +++ /dev/null @@ -1,70 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2011 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. ---> - -<!-- Layout parameters are set programmatically. --> -<view - xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/contact_tile" - class="com.android.dialer.list.PhoneFavoriteRegularRowView"> - - <RelativeLayout - android:id="@+id/contact_favorite_card" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:focusable="true"> - - <com.android.contacts.common.widget.LayoutSuppressingQuickContactBadge - android:id="@+id/contact_tile_quick" - android:layout_width="64dip" - android:layout_height="64dip" - android:layout_alignParentLeft="true" - android:layout_alignParentStart="true" - android:nextFocusRight="@id/contact_tile" - android:scaleType="centerCrop" - android:focusable="true" /> - - <LinearLayout - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginLeft="8dip" - android:layout_marginStart="8dip" - android:layout_toRightOf="@id/contact_tile_quick" - android:layout_toEndOf="@id/contact_tile_quick" - android:layout_centerVertical="true" - android:orientation="vertical"> - <TextView - android:id="@id/contact_tile_name" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:textSize="16sp" - android:textColor="@color/dialtacts_primary_text_color" - android:singleLine="true" - android:fadingEdge="horizontal" - android:fadingEdgeLength="3dip" - android:ellipsize="marquee" - android:textAlignment="viewStart" /> - <TextView - android:id="@+id/contact_tile_phone_type" - android:layout_height="wrap_content" - android:layout_width="wrap_content" - android:textSize="12sp" - android:ellipsize="marquee" - android:singleLine="true" - android:textColor="@color/dialtacts_secondary_text_color" /> - </LinearLayout> - - </RelativeLayout> -</view> |