中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

Android中tablayout怎么自定義布局

小億
228
2024-03-06 17:01:46
欄目: 編程語言

要自定義TabLayout的布局,可以通過實現自定義的TabLayout.TabLayout中的Tab的自定義布局。

首先,在xml文件中定義自定義的Tab布局,例如:

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <ImageView
        android:id="@+id/tab_icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <TextView
        android:id="@+id/tab_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</LinearLayout>

然后,在代碼中創建自定義的TabLayout.Tab,并設置自定義的布局:

TabLayout.Tab tab1 = tabLayout.newTab();
View customTab1 = LayoutInflater.from(this).inflate(R.layout.custom_tab_layout, null);
ImageView tabIcon1 = customTab1.findViewById(R.id.tab_icon);
TextView tabText1 = customTab1.findViewById(R.id.tab_text);
tabIcon1.setImageResource(R.drawable.tab_icon);
tabText1.setText("Tab 1");

tab1.setCustomView(customTab1);
tabLayout.addTab(tab1);

這樣就可以實現自定義TabLayout的布局。在創建Tab的時候,可以根據需要設置不同的自定義布局。

0
锦屏县| 宣汉县| 改则县| 阿合奇县| 滨州市| 荔浦县| 揭西县| 双峰县| 清流县| 尉氏县| 中阳县| 台江县| 唐山市| 普宁市| 包头市| 巴东县| 阿克陶县| 大方县| 秦皇岛市| 石棉县| 白河县| 黄骅市| 柘荣县| 蓬莱市| 洞口县| 厦门市| 湖南省| 光泽县| 鄢陵县| 海阳市| 庆安县| 农安县| 长治县| 桃园县| 天水市| 绥中县| 皋兰县| 曲松县| 赣州市| 大洼县| 石首市|