Jump to content

Folder List Display changes


vijer

Recommended Posts

The new folder list "List - Compact" is great, now if we could get the list to display in this format.

Not the colors, but the items in the list. If the list is sorted by Artist then the first row displays the artist tag, then the track tag, and finally the album tag and for those who like it the track length and file type.

I hope others like this layout and that it could be implemented in a future beta.

Screensh6t_test_Android_Studiopng.png.4caba7ef1d08b2a95daf8b8b70a48933.png

 

<View
        android:id="@+id/group_one"
        android:layout_width="match_parent"
        android:layout_height="80dp"
        android:background="@android:color/darker_gray"
        app:layout_constraintLeft_creator="@id/listLayout"
        app:layout_constraintTop_creator="@id/listLayout" />

    <ImageView
        android:id="@+id/album_art1"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:contentDescription="@string/image_description"
        android:src="@drawable/image1"
        app:layout_constraintLeft_creator="@id/listLayout"
        app:layout_constraintTop_toTopOf="@id/listLayout" />

    <View
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintEnd_toEndOf="parent" />

    <TextView
        android:id="@+id/meta_artist1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="4dp"
        android:fontFamily="@font/abeezee"
        android:textColor="#ffffff"
        android:textSize="18sp"
        android:textStyle="bold"
        app:layout_constraintLeft_toRightOf="@id/album_art1"
        app:layout_constraintTop_toTopOf="@id/listLayout"
        tools:text="@string/tag_artist1" />

    <TextView
        android:id="@+id/meta_title1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="4dp"
        android:fontFamily="@font/abeezee"
        android:textColor="#ffffff"
        android:textSize="18sp"
        android:textStyle="bold"
        app:layout_constraintLeft_toRightOf="@id/album_art1"
        app:layout_constraintTop_toBottomOf="@id/meta_artist1"
        tools:text="@string/tag_title1" />

    <TextView
        android:id="@+id/meta_album1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="4dp"
        android:fontFamily="@font/abeezee"
        android:textColor="#ffffff"
        android:textSize="16sp"
        app:layout_constraintLeft_toRightOf="@id/album_art1"
        app:layout_constraintTop_toBottomOf="@id/meta_title1"
        tools:text="@string/tag_album1" />

    <TextView
        android:id="@+id/meta_time1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginEnd="4dp"
        android:layout_marginStart="4dp"
        android:fontFamily="@font/abeezee"
        android:textColor="#ffffff"
        android:textSize="16sp"
        app:layout_constraintEnd_toStartOf="@+id/meta_delimiter1"
        app:layout_constraintTop_toBottomOf="@id/meta_title1"
        tools:text="@string/tag_length1" />

    <TextView
        android:id="@+id/meta_delimiter1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginEnd="4dp"
        android:layout_marginStart="4dp"
        android:fontFamily="@font/abeezee"
        android:textColor="#ffffff"
        android:textSize="16sp"
        app:layout_constraintEnd_toStartOf="@+id/meta_file_type1"
        app:layout_constraintTop_toBottomOf="@id/meta_title1"
        tools:text="@string/tag_delimiter" />

    <TextView
        android:id="@+id/meta_file_type1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginEnd="4dp"
        android:layout_marginTop="4dp"
        android:fontFamily="@font/abeezee"
        android:textColor="#ffffff"
        android:textSize="16sp"
        app:layout_constraintBottom_toBottomOf="@+id/meta_time1"
        app:layout_constraintEnd_toEndOf="@+id/listLayout"
        tools:text="@string/tag_file_type1" />

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...