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

19 lines
661 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"
android:layout_height="wrap_content"
2018-08-05 22:05:09 +05:30
android:background="?attr/rectSelector"
android:clickable="true"
android:focusable="true"
2018-07-27 18:37:33 +05:30
android:orientation="vertical">
2018-08-05 22:05:09 +05:30
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
android:id="@+id/title"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2018-08-05 22:05:09 +05:30
android:layout_height="wrap_content"
android:padding="12dp"
android:ellipsize="end"
android:maxLines="2"
android:textAppearance="@style/TextAppearance.AppCompat.Title"/>
2018-07-27 18:37:33 +05:30
</LinearLayout>