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

Commit a424cd98 authored by Katherine Kuan's avatar Katherine Kuan Committed by Android (Google) Code Review
Browse files

Merge "Add shadow between favorites and frequent lists on tablet"

parents c54be18d c0f7a52b
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