Hide all apk download progress views equally

Two views weren't hidden by default, so they were taking up space before they
were needed. The java code already takes care of showing them when necessary.
This commit is contained in:
Daniel Martí 2015-08-09 18:39:20 -07:00
parent 019c6019d7
commit be3148d0e7

View File

@ -133,6 +133,7 @@
android:layout_alignParentStart="true" android:layout_alignParentStart="true"
android:layout_alignParentLeft="true" android:layout_alignParentLeft="true"
android:layout_below="@id/progress_bar" android:layout_below="@id/progress_bar"
android:visibility="gone"
android:textSize="12sp"/> android:textSize="12sp"/>
<TextView <TextView
android:id="@+id/progress_percentage" android:id="@+id/progress_percentage"
@ -141,6 +142,7 @@
android:layout_alignParentEnd="true" android:layout_alignParentEnd="true"
android:layout_alignParentRight="true" android:layout_alignParentRight="true"
android:layout_below="@id/progress_bar" android:layout_below="@id/progress_bar"
android:visibility="gone"
android:textSize="12sp"/> android:textSize="12sp"/>
</RelativeLayout> </RelativeLayout>
<ImageButton <ImageButton