0
我想在android中創建以下形狀。如何在Android中創建以下形狀?
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#ffffff" />
<gradient
android:startColor="#00EBCF"
android:endColor="#00BEEC"
android:angle="180"
android:type="linear" />
<corners
android:bottomLeftRadius="80dp"
android:bottomRightRadius="80dp"
android:topLeftRadius="0dp"
android:topRightRadius="0dp" />
什麼,我需要做的代碼更改爲實現上述形狀?
EDIT1
按答案我用下面的代碼(在佈局高度修改):
<?xml version="1.0" encoding="utf-8"?>
</shape>
</item>
<item
android:width="1500dp"
android:height="200dp"
android:top="95dp">
<shape android:shape="oval">
<solid android:color="#36D6E9" />
</shape>
</item>
但是,當我使用這個佈局作爲background
的LinearLayout
。它顯示我:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@drawable/header_shape_rect">
它說:'元項目必須declared' –
但它沒有顯示圖層列表在這裏我不知道爲什麼。將這兩個'物品'包裹在''中。我已添加代碼 –
Sony
的屏幕截圖感謝您的回答。請查看#Edit1部分我的問題詳情。 –