Android RecyclerView ListView 需要獲取 TextView的 getLineCount() 問題.

原有思路:

  • View.Post() 方式

    說明:將處理添加到主線程隊(duì)列中,等待處理,會(huì)有顯示慢的問題,由于View的復(fù)用,當(dāng)列表滑動(dòng)后,就不能正確返回相關(guān)值了.

  • getViewTreeObserver().addOnGlobalLayoutListener()

    說明:添加全局View 變化監(jiān)聽,會(huì)被多次調(diào)用,并且在列表滑動(dòng)過程中,跟View.Post() 有相同的問題.

新思路

  • onDraw()
  • onLayout()
  • onMeasure() 中進(jìn)行獲取對(duì)應(yīng)TextView 的getLineCount()

View 的繪制過程為 onMeasure()->onLayout()->onDraw()

所以將處理邏輯放置到 onMeasure()中.

說明:

  • 封裝 容器 CommendContainerView,繼承 RelativeLayout
  • 重寫 onMeasure()方法,當(dāng) super.onMeasure(widthMeasureSpec, heightMeasureSpec); 執(zhí)行完后, 容器已經(jīng)知道了所有子View 的相關(guān)尺寸, 這個(gè)時(shí)候 可以去進(jìn)行判斷了.并且不會(huì)有延時(shí)問題.
  • 進(jìn)行邏輯判斷后,調(diào)用 super.onMeasure(widthMeasureSpec, heightMeasureSpec); 對(duì)子View 再進(jìn)行一次測(cè)量.保證顯示邏輯.
  • 針對(duì)于 用戶操作過的 View, 將狀態(tài)進(jìn)行緩存.

下面直接上代碼:

public class CommendContainerView extends RelativeLayout {

    private TextView mCommendTextView;
    private TextView mCommendFun;
    private CommendShowFunListener mListener;

    private boolean mFlag = true;
    private int mLinesLimit = 1;
    private Boolean mShowAll;
    private int mPos;

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

    public CommendContainerView(Context context, @Nullable AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public CommendContainerView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        initView(context, attrs, defStyleAttr);
    }

    //初始化布局~
    private void initView(Context context, AttributeSet attrs, int defStyleAttr) {
        inflate(context, R.layout.view_commend_container, this);
        mCommendTextView = findViewById(R.id.commend_ctv_commend);
        mCommendFun = findViewById(R.id.commend_tv_fun);
        mCommendFun.setOnClickListener(onClickListener);
    }

    public void setCommendInfo(CharSequence text, Boolean showAll, int pos) {
        mShowAll = showAll;
        mPos = pos;
        if (null != mShowAll) {
            mFlag = true;
            mCommendFun.setVisibility(VISIBLE);
            if (mShowAll) {
                mCommendFun.setText(R.string.desc_shrinkup);
                mCommendTextView.setMaxLines(Integer.MAX_VALUE);
            } else {
                mCommendFun.setText(R.string.desc_spread);
                mCommendTextView.setMaxLines(mLinesLimit);
            }
            mCommendTextView.setText(text);
        } else {
            mFlag = false;
            mCommendFun.setVisibility(GONE);
            mCommendTextView.setMaxLines(Integer.MAX_VALUE);
            mCommendTextView.setText(text);
        }
    }

    private OnClickListener onClickListener = new OnClickListener() {
        @Override
        public void onClick(View v) {
            mCommendFun.setVisibility(VISIBLE);
            mFlag = true;
            if (null == mShowAll || !mShowAll) {
                mCommendTextView.setMaxLines(Integer.MAX_VALUE);
                mCommendFun.setText(R.string.desc_shrinkup);
                mShowAll = true;
            } else {
                mCommendTextView.setMaxLines(mLinesLimit);
                mCommendFun.setText(R.string.desc_spread);
                mShowAll = false;
            }
            if (null != mListener) {
                mListener.onShowStatusChange(mPos, mShowAll);
            }
        }
    };

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        if (!mFlag) {
            mFlag = true;
            if (mCommendTextView.getLineCount() > mLinesLimit) {
                //超過行數(shù)~
                mCommendFun.setVisibility(VISIBLE);
                mCommendFun.setText(R.string.desc_spread);
                mCommendTextView.setMaxLines(mLinesLimit);
            } else {
                mCommendFun.setVisibility(GONE);
                mCommendTextView.setMaxLines(Integer.MAX_VALUE);
            }
            super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        }
    }

    public void setCommendShowFunListener(CommendShowFunListener listener) {
        this.mListener = listener;
    }

    public void setLinesLimit(int limit) {
        this.mLinesLimit = limit;
    }

    interface CommendShowFunListener {
        void onShowStatusChange(int pos, boolean showAll);
    }

}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末太惠,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子疲憋,更是在濱河造成了極大的恐慌凿渊,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,042評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件缚柳,死亡現(xiàn)場離奇詭異嗽元,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)喂击,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門剂癌,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人翰绊,你說我怎么就攤上這事佩谷。” “怎么了监嗜?”我有些...
    開封第一講書人閱讀 156,674評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵谐檀,是天一觀的道長。 經(jīng)常有香客問我裁奇,道長桐猬,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,340評(píng)論 1 283
  • 正文 為了忘掉前任刽肠,我火速辦了婚禮溃肪,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘音五。我一直安慰自己惫撰,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,404評(píng)論 5 384
  • 文/花漫 我一把揭開白布躺涝。 她就那樣靜靜地躺著厨钻,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上夯膀,一...
    開封第一講書人閱讀 49,749評(píng)論 1 289
  • 那天诗充,我揣著相機(jī)與錄音,去河邊找鬼诱建。 笑死其障,一個(gè)胖子當(dāng)著我的面吹牛策泣,可吹牛的內(nèi)容都是我干的芹助。 我是一名探鬼主播,決...
    沈念sama閱讀 38,902評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼雕凹,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼辜荠!你這毒婦竟也來了汽抚?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,662評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤伯病,失蹤者是張志新(化名)和其女友劉穎造烁,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體午笛,經(jīng)...
    沈念sama閱讀 44,110評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡惭蟋,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了药磺。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片告组。...
    茶點(diǎn)故事閱讀 38,577評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖癌佩,靈堂內(nèi)的尸體忽然破棺而出木缝,到底是詐尸還是另有隱情,我是刑警寧澤围辙,帶...
    沈念sama閱讀 34,258評(píng)論 4 328
  • 正文 年R本政府宣布我碟,位于F島的核電站,受9級(jí)特大地震影響姚建,放射性物質(zhì)發(fā)生泄漏矫俺。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,848評(píng)論 3 312
  • 文/蒙蒙 一掸冤、第九天 我趴在偏房一處隱蔽的房頂上張望厘托。 院中可真熱鬧,春花似錦贩虾、人聲如沸催烘。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至,卻和暖如春策精,著一層夾襖步出監(jiān)牢的瞬間舰始,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評(píng)論 1 264
  • 我被黑心中介騙來泰國打工咽袜, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留丸卷,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,271評(píng)論 2 360
  • 正文 我出身青樓询刹,卻偏偏與公主長得像谜嫉,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子凹联,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,452評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容