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

Commit 461aa659 authored by Wysie's avatar Wysie
Browse files

Release 2.0.

Alphabetical separators is now working. Made it a preference so you can still disable it.

Fixed a couple of bugs as follows:
Fixed groups being shown duplicated when editing contacts. Thanks to acrawl1 for reporting.
Fixed FC bug when adding contacts, and green dial button not dialing in call log. Self-introduced bug :X. Thanks adair for reporting.
A few other layout tweaks, and some minor code changes. Eg. Green dial button was shown when adding contacts, fixed it already.
parent 567290c3
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