這篇文章主要介紹了Android中TabLayout如何設(shè)置指示器寬度,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
我們提供的服務(wù)有:成都網(wǎng)站設(shè)計、成都做網(wǎng)站、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、瀘州ssl等。為1000多家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的瀘州網(wǎng)站制作公司
anroid 5.0 Design v7 包中引用了TabLayout 簡單快速的寫出屬于自己的Tab切換效果 如圖所示:
但是正常使用中你發(fā)現(xiàn)無法設(shè)置tablayout指示器的寬度。查看源碼你會發(fā)現(xiàn)設(shè)計師將指示器的寬度設(shè)置成TabView最大的寬度。并且設(shè)計師并沒有給我們暴漏出接口,這導(dǎo)致有時使用TabLayout無法滿足一些產(chǎn)品設(shè)計要求,這么好的組件無法使用還需要自定義費時費力。這個時候我們可以通過反射機制拿到TabLayout中的指示器對象對它的寬度進行處理就可以滿足我們的要求:具體代碼如下
重寫 onMeasure方法
@Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); int dp10 = CommUitls.dip2px(context, 10); LinearLayout mTabStrip = (LinearLayout) this.getChildAt(0); try { Field mTabs = TabLayout.class.getDeclaredField("mTabs"); mTabs.setAccessible(true); ArrayListtabs = (ArrayList ) mTabs.get(this); for (int i = 0; i < mTabStrip.getChildCount(); i++) { Tab tab = tabs.get(i); Field mView = tab.getClass().getDeclaredField("mView"); mView.setAccessible(true); Object tabView = mView.get(tab); Field mTextView = context.getClassLoader().loadClass("android.support.design.widget.TabLayout$TabView").getDeclaredField("mTextView"); mTextView.setAccessible(true); TextView textView = (TextView) mTextView.get(tabView); float textWidth = textView.getPaint().measureText(textView.getText().toString()); View child = mTabStrip.getChildAt(i); child.setPadding(0, 0, 0, 0); LinearLayout.LayoutParams params = new LinearLayout.LayoutParams((int) textWidth, LinearLayout.LayoutParams.MATCH_PARENT); params.leftMargin = dp10; params.rightMargin = dp10; child.setLayoutParams(params); child.invalidate(); } } catch (Exception e) { e.printStackTrace(); } }
感謝你能夠認真閱讀完這篇文章,希望小編分享的“Android中TabLayout如何設(shè)置指示器寬度”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!