我想創建一個選項卡,如下所示,這是一個Holo Light主題,但因爲我使用的是Android 2.3.6,我必須自己創建它。定製霍洛主題標籤
我面臨的問題是我是機器人能夠創建藍見底像 這裏是一個繪製迄今爲止碼,任何一個可以告訴我如何創建底部邊框一樣 ?
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:top="63dp">
<shape android:shape="rectangle">
<solid android:color="#898989" />
</shape>
</item>
<item android:top="63dp" android:bottom="3px">
<shape android:shape="rectangle">
<solid android:color="@color/app_background" />
</shape>
</item>
<item android:left="@dimen/tab_space" android:right="@dimen/tab_space">
<shape android:shape="rectangle">
<gradient android:angle="90" android:startColor="#d9d9d9"
android:endColor="#dfdfdf"/>
<!-- this is create a border but on every side -->
<stroke android:width="3px" android:color="#38c0f4" />
</shape>
</item>
</layer-list>
所以西隧我不知道是創建
1) bottom stroke
2) shadow under each tab
這個圖書館唯一的問題是它不必要的填充我的應用程序 – Hunt 2012-04-23 14:06:45
它將佔用大約400kb。但它會節省大量的時間和大量的代碼,你必須編寫和維護。 – Janusz 2012-04-23 14:09:30
老實說,問題是我已經差不多完成了應用程序,而且我只使用了android兼容庫,所以現在我得花更多的時間在上面的庫中集成我的標籤:) – Hunt 2012-04-23 14:21:40