android TabLayout中使用自定义Tab如何设定Tab之间的间距
您可以在自定义Tab布局的XML文件中添加一个padding属性,例如:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="8dp"
android:orientation="vertical">
<TextView
android:id="@+id/tab_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/tab_text_color"
android:textSize="@dimen/tab_text_size" />
</LinearLayout>
在这个例子中,我们将LinearLayout的padding设置为8dp,这将使得每个Tab之间有一定的间距。您可以根据需要调整这个值
原文地址: https://www.cveoy.top/t/topic/haYC 著作权归作者所有。请勿转载和采集!