Skip to content
Snippets Groups Projects
Commit b91d79c7 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Set margins to audio layouts

parent 87330e51
No related branches found
No related tags found
No related merge requests found
......@@ -3,19 +3,14 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent" >
<include layout="@layout/button_search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="@dimen/default_margin"
android:layout_marginLeft="@dimen/default_margin"
android:layout_marginStart="@dimen/default_margin"
android:layout_marginRight="@dimen/default_margin"
android:layout_marginEnd="@dimen/default_margin" />
app:layout_constraintTop_toTopOf="parent" />
<org.videolan.vlc.gui.view.SwipeRefreshLayout
android:id="@+id/swipeLayout"
......@@ -30,6 +25,8 @@
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
app:layout_constraintTop_toBottomOf="@+id/searchButton"
app:layout_constraintBottom_toBottomOf="parent" >
<include layout="@layout/audio_recyclerview" />
......
......@@ -40,7 +40,7 @@
android:id="@+id/section_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="28dp"
android:paddingLeft="24dp"
android:paddingTop="8dp"
android:paddingRight="28dp"
android:paddingBottom="8dp"
......@@ -57,7 +57,7 @@
android:id="@+id/media_cover"
android:layout_height="@dimen/audio_browser_item_size"
android:layout_width="0dp"
android:layout_marginStart="20dp"
android:layout_marginStart="16dp"
vlc:layout_constraintDimensionRatio="1"
vlc:layout_constraintTop_toBottomOf="@+id/section_header"
vlc:layout_constraintStart_toStartOf="parent"
......@@ -104,7 +104,7 @@
android:id="@+id/item_more"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="20dp"
android:layout_marginEnd="16dp"
vlc:layout_constraintEnd_toEndOf="parent"
vlc:layout_constraintTop_toTopOf="@+id/title"
vlc:layout_constraintBottom_toBottomOf="@+id/subtitle"
......
......@@ -86,6 +86,6 @@
<dimen name="subs_dl_dialog_height">170dp</dimen>
<dimen name="player_option_width">224dp</dimen>
<dimen name="default_margin_plus_audio_margin">28dp</dimen>
<dimen name="default_margin_plus_audio_margin">24dp</dimen>
<dimen name="audio_player_seekbar_bottom_margin">16dp</dimen>
</resources>
\ No newline at end of file
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