7 lines
339 B
XML
7 lines
339 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||
<corners android:radius="20dp" />
|
||
<solid android:color="#F5F5F5" />
|
||
<!-- 取消所有内边距,让Tab完全贴边 -->
|
||
<padding android:top="0dp" android:bottom="0dp" android:left="0dp" android:right="0dp"/>
|
||
</shape> |