RetroMusicPlayer/app/src/main/res/layout/item_playlist.xml

19 lines
708 B
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
2018-08-05 22:05:09 +05:30
android:layout_height="wrap_content"
2018-11-05 19:23:07 +05:30
android:background="?attr/rectSelector"
android:clickable="true"
android:focusable="true"
android:orientation="vertical">
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLines="2"
android:padding="12dp"
android:textAppearance="@style/TextAppearance.AppCompat.Subhead" />
2018-07-27 18:37:33 +05:30
</LinearLayout>