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

Commit 4d89ef85 authored by Maurice Chu's avatar Maurice Chu
Browse files

Hide updates view on app launch

The updates view was not set to have visibility set to
gone for a couple of layouts which caused this jank
at app launch.  Now, before data is loaded, the contact
details will be blank with no updates view showing.

Bug: 5129393
Change-Id: I82b0f954deecccb9ce2ad4b70bc9c5d2eb5ca3a5
parent 51f568c2
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -54,6 +54,7 @@
        android:id="@+id/updates_fragment_container"
        android:layout_width="0dip"
        android:layout_weight="2"
        android:layout_height="match_parent" />
        android:layout_height="match_parent"
        android:visibility="gone" />

</LinearLayout>
+2 −1
Original line number Diff line number Diff line
@@ -22,4 +22,5 @@
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/updates_fragment_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
 No newline at end of file
    android:layout_height="match_parent"
    android:visibility="gone" />