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

Commit b2ef1600 authored by Steve Kondik's avatar Steve Kondik
Browse files

Merge branch 'donut' of git://github.com/Wysie/android_packages_apps_Contacts into HEAD

parents 38d9f019 461aa659
Loading
Loading
Loading
Loading
+696 B
Loading image diff...
+2.74 KiB
Loading image diff...
+17 −0
Original line number Diff line number Diff line
@@ -17,6 +17,16 @@
 */
-->

<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
>
    <include
        android:id="@+id/header"
        layout="@layout/list_section"
    />

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
@@ -102,3 +112,10 @@
    />

</RelativeLayout>

    <View android:id="@+id/list_divider"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@*android:drawable/divider_horizontal_dark_opaque"
    />  
</LinearLayout>
+18 −0
Original line number Diff line number Diff line
@@ -17,6 +17,16 @@
 */
-->

<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
>
    <include
        android:id="@+id/header"
        layout="@layout/list_section"
    />

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
@@ -114,3 +124,11 @@
    />

</RelativeLayout>

    <View android:id="@+id/list_divider"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/divider_horizontal_dark_opaque"
    />
    
</LinearLayout>
+37 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2009 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 used for list section separators. -->
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="25dip"
    android:background="@drawable/dark_header"
    >

    <TextView
        android:id="@+id/header_text"
        android:layout_width="56dip"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_alignParentLeft="true"
        android:textStyle="bold"
        android:textSize="14sp"
        android:gravity="center"
        android:textColor="@*android:color/dim_foreground_dark"
    />
    
</RelativeLayout>
Loading