Skip to content

Instantly share code, notes, and snippets.

@avanisimov
Created February 8, 2025 12:43
Show Gist options
  • Save avanisimov/8c9e0e26ba8e982b9fa90ff2fae6761a to your computer and use it in GitHub Desktop.
Save avanisimov/8c9e0e26ba8e982b9fa90ff2fae6761a to your computer and use it in GitHub Desktop.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/tvArtistName"
android:layout_width="0dp"
android:layout_weight="1"
android:ellipsize="end"
android:maxLines="1"
android:layout_height="wrap_content"/>
<ImageView
android:id="@+id/ivDot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/tvDuration"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment