Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0f7a52b authored by Katherine Kuan's avatar Katherine Kuan
Browse files

Add shadow between favorites and frequent lists on tablet

- Remove styles for the favorites/frequent fragments
because we now have people_activity.xml in the sw580dp
and sw580dp-w1000dp folders

Bug: 5143908

Change-Id: Id81df82b50bc62cb2fd6de66684e89fc9a41fa23
parent e2c99d07
Loading
Loading
Loading
Loading
+230 B
Loading image diff...
+194 B
Loading image diff...
+255 B
Loading image diff...
+19 −10
Original line number Diff line number Diff line
@@ -118,23 +118,32 @@
                android:background="@drawable/list_background_holo">

                <!-- Starred -->
                <FrameLayout
                    android:layout_width="0dip"
                    android:layout_height="match_parent"
                    android:layout_weight="7"
                    android:background="@drawable/panel_favorites_holo_light">

                    <fragment
                        android:id="@+id/favorites_fragment"
                        class="com.android.contacts.list.ContactTileListFragment"
                        android:layout_height="match_parent"
                    style="@style/FavoritesFragmentStyle"
                        android:layout_width="match_parent"
                        android:layout_marginTop="32dip"
                    android:layout_marginLeft="32dip"
                    android:layout_marginRight="32dip" />
                        android:layout_marginRight="32dip"
                        android:layout_marginLeft="32dip"/>

                </FrameLayout>

                <!-- Most Frequent -->
                <fragment
                    android:id="@+id/frequent_fragment"
                    class="com.android.contacts.list.ContactTileListFragment"
                    style="@style/FrequentFragmentStyle"
                    android:layout_width="0dip"
                    android:layout_height="match_parent"
                    android:layout_marginTop="32dip"
                    android:layout_marginRight="32dip"/>
                    android:layout_weight="3"
                    android:layout_marginTop="32dip"/>

            </LinearLayout>
        </view>

+19 −10
Original line number Diff line number Diff line
@@ -110,23 +110,32 @@
                android:background="@drawable/list_background_holo">

                <!-- Starred -->
                <FrameLayout
                    android:layout_width="0dip"
                    android:layout_height="match_parent"
                    android:layout_weight="1"
                    android:background="@drawable/panel_favorites_holo_light">

                    <fragment
                        android:id="@+id/favorites_fragment"
                        class="com.android.contacts.list.ContactTileListFragment"
                        android:layout_height="match_parent"
                    style="@style/FavoritesFragmentStyle"
                        android:layout_width="match_parent"
                        android:layout_marginTop="32dip"
                    android:layout_marginLeft="32dip"
                    android:layout_marginRight="32dip" />
                        android:layout_marginRight="32dip"
                        android:layout_marginLeft="32dip"/>

                </FrameLayout>

                <!-- Most Frequent -->
                <fragment
                    android:id="@+id/frequent_fragment"
                    class="com.android.contacts.list.ContactTileListFragment"
                    style="@style/FrequentFragmentStyle"
                    android:layout_width="0dip"
                    android:layout_height="match_parent"
                    android:layout_marginTop="32dip"
                    android:layout_marginRight="32dip"/>
                    android:layout_weight="1"
                    android:layout_marginTop="32dip"/>

            </LinearLayout>
        </view>

Loading