摘要:Android - Button - only bottom border
如果要建一個Button,而這個Button只有下面有線,而且是粗線。
事實上我要做一個像Tab的東西,只不過是用Button加上一個背景圖顯示。
只不過如果沒有設計的幫助,該怎麼辦呢?
想的就是自己建一個 drawable的xml,但要怎麼建立一個只有下方有Border的圖呢?(xml),
後來找一找,如下,就可以處理。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@color/button_bottom_line" />
</shape>
</item>
<item android:bottom="3dp">
<shape android:shape="rectangle">
<solid android:color="@color/button_background" />
</shape>
</item>
</layer-list>