Skip to content
Snippets Groups Projects
Commit cc998a5a authored by Nicolas Pomepuy's avatar Nicolas Pomepuy
Browse files

Fix Info activity spacing

Fixes #1965
parent c56203ad
No related branches found
Tags 3.2.3
1 merge request!942Fix Info activity layout
......@@ -347,19 +347,19 @@
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list"
android:layout_width="0dp"
android:layout_height="wrap_content"
vlc:layout_constraintTop_toBottomOf="@+id/extra_icon"
vlc:layout_constraintStart_toStartOf="parent"
vlc:layout_constraintEnd_toEndOf="parent"
android:layout_height="0dp"
android:layout_marginStart="16dp"
android:layout_marginTop="24dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
android:clipToPadding="false"
android:overScrollMode="never"
android:paddingBottom="@dimen/listview_bottom_padding"
android:visibility="@{item.itemType == MediaLibraryItem.TYPE_MEDIA ? View.VISIBLE : View.INVISIBLE}"
android:layout_marginBottom="16dp"
vlc:layout_constraintBottom_toBottomOf="parent"
android:layout_marginTop="24dp"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp" />
vlc:layout_constraintEnd_toEndOf="parent"
vlc:layout_constraintStart_toStartOf="parent"
vlc:layout_constraintTop_toBottomOf="@+id/extra_icon" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment