Browse Source

Simplify track item layout to use LinearLayout instead of nested ConstraintLayouts

arkon 5 years ago
parent
commit
a405324907
1 changed files with 6 additions and 11 deletions
  1. 6 11
      app/src/main/res/layout/track_item.xml

+ 6 - 11
app/src/main/res/layout/track_item.xml

@@ -6,9 +6,10 @@
     style="@style/Theme.Widget.CardView.Item"
     android:padding="0dp">
 
-    <androidx.constraintlayout.widget.ConstraintLayout
+    <LinearLayout
         android:layout_width="match_parent"
-        android:layout_height="wrap_content">
+        android:layout_height="wrap_content"
+        android:orientation="horizontal">
 
         <LinearLayout
             android:id="@+id/logo_container"
@@ -19,9 +20,6 @@
             android:gravity="center"
             android:orientation="vertical"
             android:padding="4dp"
-            app:layout_constraintBottom_toBottomOf="parent"
-            app:layout_constraintStart_toStartOf="parent"
-            app:layout_constraintTop_toTopOf="parent"
             tools:background="#2E51A2">
 
             <ImageView
@@ -46,11 +44,8 @@
         <androidx.constraintlayout.widget.ConstraintLayout
             android:id="@+id/track_details"
             android:layout_width="0dp"
-            android:layout_height="0dp"
-            app:layout_constraintTop_toTopOf="parent"
-            app:layout_constraintBottom_toBottomOf="parent"
-            app:layout_constraintStart_toEndOf="@+id/logo_container"
-            app:layout_constraintEnd_toEndOf="parent">
+            android:layout_height="wrap_content"
+            android:layout_weight="1">
 
             <LinearLayout
                 android:id="@+id/status_container"
@@ -164,6 +159,6 @@
 
         </androidx.constraintlayout.widget.ConstraintLayout>
 
-    </androidx.constraintlayout.widget.ConstraintLayout>
+    </LinearLayout>
 
 </androidx.cardview.widget.CardView>