Android中tablayout怎么自定義布局

小億
341
2024-03-06 17:01:46

要自定義TabLayout的布局,可以通過(guò)實(shí)現(xiàn)自定義的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>

然后,在代碼中創(chuàng)建自定義的TabLayout.Tab,并設(shè)置自定義的布局:

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);

這樣就可以實(shí)現(xiàn)自定義TabLayout的布局。在創(chuàng)建Tab的時(shí)候,可以根據(jù)需要設(shè)置不同的自定義布局。

0