mihon/app/src/main/res/layout/item_library.xml

64 lines
2.1 KiB
XML
Raw Normal View History

2015-09-25 06:44:11 -04:00
<?xml version="1.0" encoding="utf-8"?>
2015-09-25 13:43:23 -04:00
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
2015-09-25 13:43:23 -04:00
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
2015-09-25 06:44:11 -04:00
<FrameLayout
2015-09-25 06:44:11 -04:00
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="match_parent"
android:layout_height="144dp"
android:id="@+id/thumbnailImage"
tools:src="@mipmap/ic_launcher"
tools:background="@color/md_red_100"/>
<eu.kanade.mangafeed.widget.PTSansTextView
android:id="@+id/unreadText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="123"
app:typeface="ptsansNarrowBold"
android:background="@color/md_red_300"
android:layout_gravity="right"
android:textSize="12sp"
android:visibility="gone"
android:textColor="@color/white"
android:paddingLeft="3dp"
android:paddingRight="3dp"
android:paddingTop="1dp"
android:paddingBottom="1dp" />
</FrameLayout>
2015-09-25 06:44:11 -04:00
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="36dp"
2015-09-25 13:43:23 -04:00
android:id="@+id/footerLinearLayout"
android:background="@color/md_grey_300">
2015-09-25 06:44:11 -04:00
<eu.kanade.mangafeed.widget.PTSansTextView
2015-09-25 06:44:11 -04:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
app:typeface="ptsansNarrowBold"
2015-09-25 06:44:11 -04:00
android:ellipsize="middle"
android:maxLines="2"
2015-09-25 13:43:23 -04:00
android:textColor="@color/black_87pc"
android:textSize="13sp"
android:id="@+id/titleText"
2015-09-25 13:43:23 -04:00
android:paddingRight="8dp"
android:paddingLeft="8dp"
tools:text="Sample name"/>
2015-09-25 06:44:11 -04:00
</LinearLayout>
</LinearLayout>