我想要使用線性佈局創建一個像這樣的自定義標題欄。我無法弄清楚如何在底部獲得3D/Shodow效果。有什麼建議麼?標題欄喜歡風格在android上的佈局
<?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="@android:color/darker_gray" />
<corners android:radius="0dp"/>
</shape>
</item>
<item android:bottom="1dp" android:top="1dp">
<shape
android:shape="rectangle">
<solid android:color="#019BD9"/>
<corners android:radius="0dp"/>
</shape>
</item>
</layer-list>
你必須使用工具欄.. – Moinkhan
你聽說過新的工具欄的概念,Android已經21 API發佈後這將會給你這個陰影。讓我知道你是否需要更多的幫助。 – Saraschandraa
這是工具欄/ ActionBar,不要重新發明輪子,至於陰影,在API 21及更高版本上使用setElevation,對於以下API 21,使用FrameLayout的'android:foreground'標籤。您可以從github上的iosched app抓取shadow.png圖像,它位於xxhdpi文件夾中。 – Skynet