mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Simplify track item layout to use LinearLayout instead of nested ConstraintLayouts
This commit is contained in:
		@@ -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>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user