mirror of
https://github.com/mihonapp/mihon.git
synced 2025-10-22 19:18:54 +02:00
Add proguard rules. Show unread count. Use compact font
This commit is contained in:
BIN
app/src/main/assets/fonts/PTSans-Narrow.ttf
Normal file
BIN
app/src/main/assets/fonts/PTSans-Narrow.ttf
Normal file
Binary file not shown.
BIN
app/src/main/assets/fonts/PTSans-NarrowBold.ttf
Normal file
BIN
app/src/main/assets/fonts/PTSans-NarrowBold.ttf
Normal file
Binary file not shown.
@@ -17,22 +17,29 @@ import uk.co.ribot.easyadapter.annotations.ViewId;
|
||||
@LayoutId(R.layout.item_library)
|
||||
public class MangaLibraryHolder extends ItemViewHolder<Manga> {
|
||||
|
||||
@ViewId(R.id.thumbnailImageView)
|
||||
ImageView mImageView;
|
||||
@ViewId(R.id.thumbnailImage)
|
||||
ImageView mThumbImage;
|
||||
|
||||
@ViewId(R.id.nameTextView)
|
||||
TextView mTextView;
|
||||
@ViewId(R.id.titleText)
|
||||
TextView mTitleText;
|
||||
|
||||
@ViewId(R.id.unreadText)
|
||||
TextView mUnreadText;
|
||||
|
||||
public MangaLibraryHolder(View view) {
|
||||
super(view);
|
||||
}
|
||||
|
||||
public void onSetValues(Manga manga, PositionInfo positionInfo) {
|
||||
mTextView.setText(manga.title);
|
||||
mTitleText.setText(manga.title);
|
||||
if (manga.unread > 0) {
|
||||
mUnreadText.setVisibility(View.VISIBLE);
|
||||
mUnreadText.setText(Integer.toString(manga.unread));
|
||||
}
|
||||
Glide.with(getContext())
|
||||
.load("http://img1.wikia.nocookie.net/__cb20090524204255/starwars/images/thumb/1/1a/R2d2.jpg/400px-R2d2.jpg")
|
||||
.centerCrop()
|
||||
.into(mImageView);
|
||||
.into(mThumbImage);
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -0,0 +1,52 @@
|
||||
package eu.kanade.mangafeed.widget;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.res.TypedArray;
|
||||
import android.graphics.Typeface;
|
||||
import android.util.AttributeSet;
|
||||
import android.widget.TextView;
|
||||
|
||||
import eu.kanade.mangafeed.R;
|
||||
|
||||
|
||||
public class PTSansTextView extends TextView {
|
||||
private final static int PTSANS_NARROW = 0;
|
||||
private final static int PTSANS_NARROW_BOLD = 1;
|
||||
|
||||
|
||||
public PTSansTextView(Context c) {
|
||||
super(c);
|
||||
}
|
||||
|
||||
public PTSansTextView(Context c, AttributeSet attrs) {
|
||||
super(c, attrs);
|
||||
parseAttributes(c, attrs);
|
||||
}
|
||||
|
||||
public PTSansTextView(Context c, AttributeSet attrs, int defStyle) {
|
||||
super(c, attrs, defStyle);
|
||||
parseAttributes(c, attrs);
|
||||
}
|
||||
|
||||
private void parseAttributes(Context c, AttributeSet attrs) {
|
||||
TypedArray values = c.obtainStyledAttributes(attrs, R.styleable.PTSansTextView);
|
||||
|
||||
//The value 0 is a default, but shouldn't ever be used since the attr is an enum
|
||||
int typeface = values.getInt(R.styleable.PTSansTextView_typeface, 0);
|
||||
|
||||
switch(typeface) {
|
||||
case PTSANS_NARROW:
|
||||
//You can instantiate your typeface anywhere, I would suggest as a
|
||||
//singleton somewhere to avoid unnecessary copies
|
||||
setTypeface(Typeface.createFromAsset(c.getAssets(), "fonts/PTSans-Narrow.ttf"));
|
||||
break;
|
||||
case PTSANS_NARROW_BOLD:
|
||||
setTypeface(Typeface.createFromAsset(c.getAssets(), "fonts/PTSans-NarrowBold.ttf"));
|
||||
break;
|
||||
default:
|
||||
throw new IllegalArgumentException("Font not found " + typeface);
|
||||
}
|
||||
|
||||
values.recycle();
|
||||
}
|
||||
}
|
@@ -2,35 +2,58 @@
|
||||
<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"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
>
|
||||
|
||||
<ImageView
|
||||
<FrameLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="144dp"
|
||||
android:id="@+id/thumbnailImageView"
|
||||
tools:src="@mipmap/ic_launcher"
|
||||
tools:background="@color/md_red_100"/>
|
||||
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>
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="36dp"
|
||||
android:id="@+id/footerLinearLayout"
|
||||
android:background="@color/md_blue_100">
|
||||
android:background="@color/md_grey_300">
|
||||
|
||||
<TextView
|
||||
<eu.kanade.mangafeed.widget.PTSansTextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
app:typeface="ptsansNarrowBold"
|
||||
android:ellipsize="middle"
|
||||
android:maxLines="2"
|
||||
android:textColor="@color/black_87pc"
|
||||
android:textStyle="bold"
|
||||
android:textSize="12sp"
|
||||
android:id="@+id/nameTextView"
|
||||
android:textSize="13sp"
|
||||
android:id="@+id/titleText"
|
||||
android:paddingRight="8dp"
|
||||
android:paddingLeft="8dp"
|
||||
tools:text="Sample name"/>
|
||||
|
14
app/src/main/res/values/attrs.xml
Normal file
14
app/src/main/res/values/attrs.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Define the values for the attribute -->
|
||||
<attr name="typeface" format="enum">
|
||||
<enum name="ptsansNarrow" value="0"/>
|
||||
<enum name="ptsansNarrowBold" value="1"/>
|
||||
</attr>
|
||||
|
||||
<!-- Tell Android that the class "CustomButton" can be styled,
|
||||
and which attributes it supports -->
|
||||
<declare-styleable name="PTSansTextView">
|
||||
<attr name="typeface"/>
|
||||
</declare-styleable>
|
||||
</resources>
|
Reference in New Issue
Block a user