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

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

Pixel perfect tweaks for tablet

- Fix contact list item height
- Shift the Gtalk presence icon down
- Fix padding with name/company in contact details
- Remove the blue underline view in the group header
and use an asset on the existing container instead

Bug: 5543418
Change-Id: I635ff78e479b575055506fda0c19e8a4685f0c1e
parent 57f61c89
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -56,6 +56,7 @@
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:paddingLeft="8dip"
            android:paddingRight="24dip"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:textSize="@dimen/detail_header_name_text_size" />
@@ -69,6 +70,7 @@
        android:id="@+id/company"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="8dip"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="?android:attr/textColorSecondary" />

+3 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:paddingBottom="8dip">
    android:paddingBottom="16dip">

    <!-- Ensure that the contact photo for a contact WITHOUT social updates is the same width and
    height as a contact WITH social updates (where the photo is 2/3 of the screen width). -->
@@ -70,6 +70,7 @@
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:paddingLeft="8dip"
            android:paddingRight="24dip"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:textSize="@dimen/detail_header_name_text_size" />
@@ -83,6 +84,7 @@
        android:id="@+id/company"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="8dip"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="?android:attr/textColorSecondary" />

+1 −0
Original line number Diff line number Diff line
@@ -65,6 +65,7 @@
            android:id="@+id/presence_icon"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="1dip"
            android:layout_marginRight="4dip"
            android:layout_gravity="center_vertical"
            android:scaleType="centerInside" />
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingBottom="8dip"
    android:orientation="horizontal">

    <ImageView
+3 −0
Original line number Diff line number Diff line
@@ -23,6 +23,8 @@
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingLeft="8dip"
    android:paddingBottom="16dip"
    android:orientation="vertical">

    <LinearLayout
@@ -48,6 +50,7 @@
        android:id="@+id/company"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="16dip"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="?android:attr/textColorSecondary" />

Loading