0

嗨朋友们请在这里帮助我尝试在以下形状下做超过三天但无法得到它我该怎么做

在此处输入图像描述

但我得到的输出是这个

在此处输入图像描述

下面是我的代码

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>

在此处输入图像描述

4

1 回答 1

0

您的圈子 xml 应如下所示:

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" >
<solid android:color="#20000000" />
<size
    android:width="70dp"
    android:height="70dp" />
</shape>

编辑:如果您的布局中有填充,则可能会发生这种情况ImageVIew

于 2017-03-16T19:24:36.097 回答