如何添加一个框显示我单击和橡皮擦的图像

时间:2015-11-16 06:58:14

标签: android android-layout android-activity

如何在我的应用中的所有活动中执行类似此框显示的操作,当我按下我的应用中的任何图像时,此框中的图像显示,任何人都可以帮助我这个

the image

1 个答案:

答案 0 :(得分:0)

好吧在android xml布局中没有box shadow属性,这就是为什么我们使用border或stroke,或者你可以用一点位移创建2个盒子来创建阴影外观,使用layer-list这是boxshadow .xml drawable xml文件,保存在res / drawable文件夹中:

call mvn clean install -Dmaven.test.skip=true % This is a comment %

这只是一个例子,这是这个形状的结果:

enter image description here

我使用xml文件作为activitylayout.xml中按钮的背景,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item  >
        <shape>
            <corners android:radius="10dip" />
            <gradient
                android:angle="0"
                android:endColor="#cccccc"
                android:startColor="#4c4c4c" />
        </shape>
    </item>
    <item android:bottom="3dp" android:right="3dp" android:left="3dp" android:top="3dp" >
        <shape>
            <corners android:radius="10dip" />
            <gradient
                android:angle="270"
                android:centerColor="#f8d79b"
                android:centerY="0.5"
                android:endColor="#f8d79b"
                android:startColor="#f8d79b" />
        </shape>
    </item>

</layer-list>

当然,您可以使用相同的boxshadow.xml作为TextView,EditText或ImageView等任何其他元素的背景。