朋友你好,請幫我在這裏嘗試做如下形狀超過三天,但不能能得到它,我怎麼能做到這一點從圓去除小部分
但輸出我得到這是一個
下面是我的代碼
close_drawable.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="oval">
<solid android:color="#30000000"/>
<size android:height="70dp" android:width="70dp"/>
</shape>
<clip android:gravity="left" android:clipOrientation="horizontal"/>
</item>
<item android:drawable="@drawable/close" android:width="50dp" android:height="50dp" android:gravity="center"/>
</layer-list>
我的XML代碼
<RelativeLayout
android:id="@+id/bottomroot"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="5dp"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:id="@+id/nope"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/close_drawable" />
<ImageView
android:id="@+id/superlike"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="-1.5dp"
android:layout_toRightOf="@+id/nope"
app:srcCompat="@drawable/superlike_drawable" />
<ImageView
android:id="@+id/like"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="-1.5dp"
android:layout_toRightOf="@+id/superlike"
app:srcCompat="@drawable/like_drawable" />
<ImageView
android:id="@+id/like_list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="-1.5dp"
android:layout_toRightOf="@+id/like"
app:srcCompat="@drawable/likelist_drawable" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignStart="@+id/superlike"
android:layout_alignEnd="@+id/superlike"
android:gravity="center"
android:layout_below="@+id/superlike"
android:text="Mashalla!"
android:textColor="#fff" />
</RelativeLayout>
我認爲你編輯了錯誤的img-既好又不好看起來一樣 – X3Btel