Android-->FlowRadioGroup(流式布局RadioGroup, 自定義View的簡單使用)

項目源碼地址: https://github.com/angcyo/FlowRadioGroup


為了更好的擁有RadioGroup的屬性/方法:
1:新建一個View,繼承RadioGroup

public class FlowRadioGroup extends RadioGroup

流式布局最重要的就是,測量子View 的大小和子View 的布局位置
2:重寫onMeasure和onLayout方法

List<List<View>> mAllViews;//保存所有行的所有View
List<Integer> mLineHeight;//保存每一行的行高

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);
    int modeWidth = MeasureSpec.getMode(widthMeasureSpec);
    int sizeHeight = MeasureSpec.getSize(heightMeasureSpec);
    int modeHeight = MeasureSpec.getMode(heightMeasureSpec);

    int width = 0, height = 0;
    int lineWidth = 0, lineHeight = 0;
    int childWidth = 0, childHeight = 0;

    mAllViews = new ArrayList<>();
    mLineHeight = new ArrayList<>();

    List<View> lineViews = new ArrayList<>();
    int count = getChildCount();
    for (int i = 0; i < count; i++) {
        View child = getChildAt(i);
        measureChild(child, widthMeasureSpec, heightMeasureSpec);
        LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) child.getLayoutParams();

        childWidth = child.getMeasuredWidth() + params.leftMargin + params.rightMargin;
        childHeight = child.getMeasuredHeight() + params.topMargin + params.bottomMargin;

        if (lineWidth + childWidth > sizeWidth - getPaddingLeft() - getPaddingRight()) {
            width = Math.max(width, lineWidth);
            height += lineHeight;
            mLineHeight.add(lineHeight);
            mAllViews.add(lineViews);

            lineWidth = childWidth;
            lineHeight = childHeight;
            lineViews = new ArrayList<>();
        } else {
            lineWidth += childWidth;
            lineHeight = Math.max(childHeight, lineHeight);
        }
        lineViews.add(child);

        if (i == (count - 1)) {
            width = Math.max(width, lineWidth);
            height += lineHeight;
        }
    }
    mLineHeight.add(lineHeight);
    mAllViews.add(lineViews);
    width += getPaddingLeft() + getPaddingRight();
    height += getPaddingTop() + getPaddingBottom();
    setMeasuredDimension(modeWidth == MeasureSpec.AT_MOST ? width : sizeWidth, modeHeight == MeasureSpec.AT_MOST ? height : sizeHeight);
}

@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
    int top = getPaddingTop();//開始布局子view的 top距離
    int left = getPaddingLeft();//開始布局子view的 left距離

    int lineNum = mAllViews.size();//行數(shù)
    List<View> lineView;
    int lineHeight;
    for (int i = 0; i < lineNum; i++) {
        lineView = mAllViews.get(i);
        lineHeight = mLineHeight.get(i);

        for (int j = 0; j < lineView.size(); j++) {
            View child = lineView.get(j);
            if (child.getVisibility() == View.GONE) {
                continue;
            }

            LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) child.getLayoutParams();
            int ld = left + params.leftMargin;
            int td = top + params.topMargin;
            int rd = ld + child.getMeasuredWidth();//不需要加上 params.rightMargin,
            int bd = td + child.getMeasuredHeight();//不需要加上 params.bottomMargin, 因為在 onMeasure , 中已經(jīng)加在了 lineHeight 中
            child.layout(ld, td, rd, bd);

            left += child.getMeasuredWidth() + params.leftMargin + params.rightMargin;//因為在 這里添加了;
        }

        left = getPaddingLeft();
        top += lineHeight;
    }
}

到此,基本上布局就可以使用了;
不過還有一個問題,就是布局不具備保存狀態(tài)的能力;
所以需要重寫onSaveInstanceState和onRestoreInstanceState方法;
這里不展示,項目源碼中有,并且也有使用方法;


為了更靈活, 更方便使用;
可以擴張接口;

/**
 * 獲取選中按鈕的索引,從開始, 未選中返回 -1
 */
public int getCheckedRadioButtonIndex() {
    return indexOfChild(findViewById(getCheckedRadioButtonId()));
}

/**
 * 獲取選中按鈕的文本,未選中 返回 空字符串
 */
public String getCheckedRadioButtonText() {
    if (getCheckedRadioButtonId() == -1) {
        return "";
    }
    return ((RadioButton) findViewById(getCheckedRadioButtonId())).getText().toString();
}

更多更好的擴展方法, 大家可以根據(jù)需求定制;


至此: 文章就結(jié)束了,如有疑問: QQ群:274306954 歡迎您的加入.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖甸私,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異飞傀,居然都是意外死亡皇型,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進店門砸烦,熙熙樓的掌柜王于貴愁眉苦臉地迎上來弃鸦,“玉大人,你說我怎么就攤上這事幢痘』8瘢” “怎么了?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵颜说,是天一觀的道長购岗。 經(jīng)常有香客問我,道長门粪,這世上最難降的妖魔是什么藕畔? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮庄拇,結(jié)果婚禮上注服,老公的妹妹穿的比我還像新娘。我一直安慰自己措近,他們只是感情好溶弟,可當我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著瞭郑,像睡著了一般辜御。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上屈张,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天擒权,我揣著相機與錄音袱巨,去河邊找鬼。 笑死碳抄,一個胖子當著我的面吹牛愉老,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播剖效,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼嫉入,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了璧尸?” 一聲冷哼從身側(cè)響起咒林,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎爷光,沒想到半個月后垫竞,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡蛀序,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年件甥,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片哼拔。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡引有,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出倦逐,到底是詐尸還是另有隱情譬正,我是刑警寧澤,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布檬姥,位于F島的核電站曾我,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏健民。R本人自食惡果不足惜抒巢,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望秉犹。 院中可真熱鬧蛉谜,春花似錦、人聲如沸崇堵。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽鸳劳。三九已至狰贯,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背涵紊。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工傍妒, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人摸柄。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓颤练,卻偏偏與公主長得像,于是被迫代替她去往敵國和親塘幅。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,792評論 2 345

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