Files
yusheng-android/MainModule/src/main/res/drawable/tab_indicator_bottom.xml

20 lines
873 B
XML
Raw Normal View History

2025-11-04 16:39:10 +08:00
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- 用item标签限制整体尺寸maxWidth=100dpheight=10dp与tabIndicatorHeight一致 -->
<item
2025-11-06 11:53:23 +08:00
android:height="@dimen/dp_6"
2025-11-04 16:39:10 +08:00
android:gravity="center"
android:maxWidth="@dimen/dp_40">
<!-- 最大宽度(根据需求调整) -->
<!-- 固定高度与tabIndicatorHeight匹配 -->
<!-- 图片在item内居中 -->
<!-- 嵌套bitmap设置图片资源和缩放模式 -->
<bitmap
android:dither="true"
android:scaleType="fitCenter"
android:src="@mipmap/tab_x" />
<!-- 你的图片资源 -->
<!-- 等比例缩放确保图片在maxWidth和height内完整显示 -->
<!-- 抗锯齿优化 -->
</item>
</layer-list>