1

嗨,我在 powerpoint 上做了一个布局,并在 android 上用 xml 实现了它,但它们不一样(影子东西)。这是图像差异(左侧 android 右侧我要创建的内容):

这就是我要的

这就是我所做的

我使用 xml 进行 android 布局:

<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- Bottom Shadow -->
<item
    android:left="2.0dp"
    android:right="2.0dp">
    <shape android:shape="rectangle" >
        <corners android:radius="2dp" />

        <padding
            android:bottom="3dp"
            android:left="0dp"
            android:right="0dp"
            android:top="0dp" />

        <gradient
            android:angle="270"
            android:centerColor="#FF222222"
            android:centerX="0.15"
            android:endColor="#55000000"
            android:startColor="#FF000000" >
        </gradient>
    </shape>
</item>
<!-- White Top color -->
<item>
    <shape android:shape="rectangle" >
        <solid android:color="#E6E0EC" />
    </shape>
</item>

我怎样才能与 xml 相同的阴影谢谢。

4

2 回答 2

1

试试这个:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle">
            <gradient android:angle="90"
                android:endColor="#E0E0E0" android:startColor="#ccc" />
            <corners android:radius="4dp" />
        </shape>
    </item>

    <item
        android:left="0dp"
        android:right="1.5dp"
        android:top="0dp"
        android:bottom="1.5dp">
        <shape android:shape="rectangle">
            <solid android:color="#E6E0EC"/>
            <corners android:radius="4dp" />
        </shape>
    </item>
</layer-list>
于 2015-04-08T08:55:05.777 回答
0

您可以使用它Elevation="8dp"来创建阴影效果,并小心使用android:clipChildren="false"它的父级。这是示例代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#e4032e"
    android:clipChildren="false"
    android:gravity="center"
    android:orientation="vertical">


    <FrameLayout
        android:id="@+id/login_button"
        android:layout_width="match_parent"
        android:layout_height="70dp"
        android:layout_marginRight="30dp"
        android:layout_marginLeft="30dp"
        android:background="@drawable/button_style"
        android:elevation="8dp"
        android:clipChildren="false">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="ورود به آوا"
            android:textColor="#ffffff" />


        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="right|center_vertical"
            android:contentDescription="lock"
            android:src="@drawable/login_lock"
            android:layout_margin="20dp"
            android:adjustViewBounds="true" />


    </FrameLayout>

</LinearLayout>

这是 代码结果图像

于 2016-02-12T17:25:03.033 回答