开源项目Plaid学习(五)AuthorTextView&DynamicTypeTextView

前言

因为这两个组件都是继承的BaselineGridTextView而且都比较短,就放在一起了。

AuthorTextView

废话不多说,先上源码:

/**
 * An extension to TextView which supports a custom state of {@link #STATE_ORIGINAL_POSTER} for
 * denoting that a comment author was the original poster.
 */
public class AuthorTextView extends BaselineGridTextView {

    private static final int[] STATE_ORIGINAL_POSTER = { R.attr.state_original_poster };

    private boolean isOP = false;

    public AuthorTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public int[] onCreateDrawableState(int extraSpace) {
        final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
        if (isOP) {
            mergeDrawableStates(drawableState, STATE_ORIGINAL_POSTER);
        }
        return drawableState;
    }

    public boolean isOriginalPoster() {
        return isOP;
    }

    public void setOriginalPoster(boolean isOP) {
        if (this.isOP != isOP) {
            this.isOP = isOP;
            refreshDrawableState();
        }
    }
}

需要一个attrs_author_text_view.xml来定义一个额外的属性:

<resources>
    <declare-styleable name="AuthorTextView">
        <attr name="state_original_poster" format="boolean|reference"/>
    </declare-styleable>
</resources>

这个控件的目的很简单,就是多加一个状态isOP来表示某个评论是不是作者发的。当然在xml里面是state_original_poster这个属性。
实际上,Plaid里面并没怎么使用这个属性,至少就我看到的而言,虽然有设置isOP,但没有设置对应的Selector Drawable,因此也是白搭。
不过至少展示了如何自定义加一个状态。
网上查找了一些相关资料,都是比较古老的博客了,大多是2012年的。像这一篇是注释比较详细的:

public class PrivateModeButton extends Button {
    // (Combination of) States are usually specified as an array.
    // Our custom attribute will be generated as R.attr.state_private_mode.
    // Note: This is in our app's scope.
    private static final int[] STATE_PRIVATE_MODE = { R.attr.state_private_mode };
 
    // The view needs a way to know if it's in private mode or not.
    private boolean mIsPrivate = false;
 
    public PrivateModeButton(Context context, AttributeSet attrs) {
        super(context, attrs);
    }
 
    // Android calls this method to know the current drawable state of the view.
    // It starts with an "extraSpace" of 0 in View.java, and each inherited view adds its new state.
    // We add just one more state, hence, we create a new array of size "extraSpace + 1".
    @Override
    public int[] onCreateDrawableState(int extraSpace) {
        // Ask the parent to add its default states.
        final int[] drawableState = super.onCreateDrawableState(extraSpace + 1);
 
        // If we are private, add the state to array of states.
        // If not added, the value will be treated as false.
        // mergeDrawableStates() takes care of resolving the duplicates.
        if (mIsPrivate)
            mergeDrawableStates(drawableState, STATE_PRIVATE_MODE);
 
        // Return the new drawable state.
        return drawableState;
    }
 
    // We need a way for the Activity (or some other part of the code)
    // to enable private mode for the view.
    public void setPrivateMode(boolean isPrivate) {
        // If we flip the current state of private mode, record the value
        // and inform Android to refresh the drawable state.
        // This will in turn invalidate() the view.
        if (mIsPrivate != isPrivate) {
            mIsPrivate = isPrivate;
            refreshDrawableState();
        }
   }
}

本来想展示一下效果的,结果经过一下午的尝试,最后还是没能成功达成想要的效果。
一切看上去很清晰,使用这么一个selector来当背景:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:custom="http://schemas.android.com/apk/res-auto">
    <item custom:state_original_post="true" android:drawable="@android:color/holo_blue_bright"/>
    <item android:drawable="@android:color/transparent"/>
</selector>

结果编译过不去,报No resource identifier found for attribute state_original_post...
然后我查资料,有的人说把第二个xmlns改为xmlns:custom="http://schemas.android.com/apk/lib/packageName"
这样确实能够编译,然后不管我怎么设置isOP,背景都是蓝色的。
我不知道Plaid这个app没有设置这个背景,是不是也是因为有bug呢?毕竟专门写了一个控件,都到了这个份上了,只要再定义一个背景就行了,却止步。
到这个时候,只能先跳过了,等以后再说。

DynamicTypeTextView

上源码:

/**
 * An extension to {@link android.widget.TextView} which sizes text to grow up to a specified
 * maximum size, per the material spec:
 * https://www.google.com/design/spec/style/typography.html#typography-other-typographic-guidelines
 */
public class DynamicTypeTextView extends BaselineGridTextView {

    // configurable attributes
    private final float minTextSize;
    private final float maxTextSize;

    public DynamicTypeTextView(Context context) {
        this(context, null);
    }

    public DynamicTypeTextView(Context context, AttributeSet attrs) {
        this(context, attrs, android.R.attr.textViewStyle);
    }

    public DynamicTypeTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        this(context, attrs, defStyleAttr, 0);
    }

    public DynamicTypeTextView(Context context, AttributeSet attrs,
                               int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);

        /* re-use CollapsingTitleLayout attribs */
        final TypedArray a =
                context.obtainStyledAttributes(attrs, R.styleable.CollapsingTitleLayout);
        if (a.hasValue(R.styleable.CollapsingTitleLayout_collapsedTextSize)) {
            minTextSize = a.getDimensionPixelSize(
                    R.styleable.CollapsingTitleLayout_collapsedTextSize, 0);
            setTextSize(TypedValue.COMPLEX_UNIT_PX, minTextSize);
        } else {
            // if not explicitly set then use the default text size as the min
            minTextSize = getTextSize();
        }
        maxTextSize = a.getDimensionPixelSize(
                R.styleable.CollapsingTitleLayout_maxExpandedTextSize, Integer.MAX_VALUE);
        a.recycle();
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        final float expandedTitleTextSize = Math.max(minTextSize,
                ViewUtils.getSingleLineTextSize(getText().toString(), getPaint(),
                        w - getPaddingStart() - getPaddingEnd(),
                        minTextSize,
                        maxTextSize, 0.5f, getResources().getDisplayMetrics()));
        setTextSize(TypedValue.COMPLEX_UNIT_PX, expandedTitleTextSize);
    }
}

用到了attrs_collasping_title_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="CollapsingTitleLayout">
        <attr name="titleInset" format="reference|dimension" />
        <attr name="titleInsetStart" format="reference|dimension" />
        <attr name="titleInsetTop" format="reference|dimension" />
        <attr name="titleInsetEnd" format="reference|dimension" />
        <attr name="titleInsetBottom" format="reference|dimension" />
        <attr name="maxExpandedTextSize" format="reference|dimension" />
        <attr name="collapsedTextSize" format="reference|dimension" />
        <attr name="lineHeightHint" />
        <attr name="android:textAppearance" />
        <attr name="android:maxLines" />
    </declare-styleable>
    <declare-styleable name="CollapsingTextAppearance">
        <attr name="android:textSize" />
        <attr name="android:textColor" />
        <attr name="font" />
    </declare-styleable>
</resources>

这个控件的目的,就是动态设置字体大小。
其余的都没什么好说的,使用CollapsingTitleLayout的属性有点偷懒,不过如果两个控件功能相似,也无伤大雅。新依赖了一个工具类ViewUtils,看看这个方法:

/**
     * Recursive binary search to find the best size for the text.
     *
     * Adapted from https://github.com/grantland/android-autofittextview
     */
    public static float getSingleLineTextSize(String text,
                                              TextPaint paint,
                                              float targetWidth,
                                              float low,
                                              float high,
                                              float precision,
                                              DisplayMetrics metrics) {
        final float mid = (low + high) / 2.0f;

        paint.setTextSize(TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_PX, mid, metrics));
        final float maxLineWidth = paint.measureText(text);

        if ((high - low) < precision) {
            return low;
        } else if (maxLineWidth > targetWidth) {
            return getSingleLineTextSize(text, paint, targetWidth, low, mid, precision, metrics);
        } else if (maxLineWidth < targetWidth) {
            return getSingleLineTextSize(text, paint, targetWidth, mid, high, precision, metrics);
        } else {
            return mid;
        }
    }

这个方法就是尝试用二分法在min和max之间取得一个精度范围内的值来尽量把字都放在一行上。
经过试验,得到这个控件的表现:

  • 当text字比较少的时候,其会尽量扩大至设置的maxTextSize来填满一行;
  • 当text字比较多的时候,会尽量缩小字体来填满一行,直至达到minTextSize然后换行。

<a href="http://imgur.com/3kQB5gt">
不同长度的效果图

</a>
layout文件:

<?xml version="1.0" encoding="utf-8"?>
<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:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    tools:context="com.branchmessenger.rxjavatestfield.MainActivity">

    <com.branchmessenger.rxjavatestfield.widget.DynamicTypeTextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Text"
        app:maxExpandedTextSize = "100sp"
        app:lineHeightHint="20sp" />

    <com.branchmessenger.rxjavatestfield.widget.DynamicTypeTextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Some Text Here Wow!"
        app:maxExpandedTextSize = "100sp"
        app:lineHeightHint="20sp" />

    <com.branchmessenger.rxjavatestfield.widget.DynamicTypeTextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="The answer to my conundrum was that..."
        app:maxExpandedTextSize = "100sp"
        app:lineHeightHint="20sp" />

    <com.branchmessenger.rxjavatestfield.widget.DynamicTypeTextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/long_text"
        app:maxExpandedTextSize = "100sp"
        app:lineHeightHint="20sp" />
</LinearLayout>

最大的“Text”的尺寸是100sp,这个我设置了普通的来对照过。我这里并没有设置minTextSize,最后textSize的大小是14sp也就是默认值。代码里面注释也说了假如没有特别指定minTextSize就是默认值。

小结

总算把几个TextView过了一遍。也不可能面面俱到,不过还是学到了很多东西。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,233评论 6 495
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,357评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,831评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,313评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,417评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,470评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,482评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,265评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,708评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,997评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,176评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,503评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,150评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,391评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,034评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,063评论 2 352

推荐阅读更多精彩内容