Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>create layer list as follows.and add it as a background to your relative layout.this will give a border with a drop shadow</p> <p>here is the link for further details <a href="http://www.uifuel.com/android-creating-a-drop-shadow-in-xml-layout/" rel="nofollow">http://www.uifuel.com/android-creating-a-drop-shadow-in-xml-layout/</a></p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;layer-list xmlns:android="http://schemas.android.com/apk/res/android"&gt; &lt;!-- Drop Shadow Stack --&gt; &lt;item&gt; &lt;shape&gt; &lt;padding android:top="1dp" android:right="1dp" android:bottom="1dp" android:left="1dp" /&gt; &lt;solid android:color="#00CCCCCC" /&gt; &lt;/shape&gt; &lt;/item&gt; &lt;item&gt; &lt;shape&gt; &lt;padding android:top="1dp" android:right="1dp" android:bottom="1dp" android:left="1dp" /&gt; &lt;solid android:color="#10CCCCCC" /&gt; &lt;/shape&gt; &lt;/item&gt; &lt;item&gt; &lt;shape&gt; &lt;padding android:top="1dp" android:right="1dp" android:bottom="1dp" android:left="1dp" /&gt; &lt;solid android:color="#20CCCCCC" /&gt; &lt;/shape&gt; &lt;/item&gt; &lt;item&gt; &lt;shape&gt; &lt;padding android:top="1dp" android:right="1dp" android:bottom="1dp" android:left="1dp" /&gt; &lt;solid android:color="#30CCCCCC" /&gt; &lt;/shape&gt; &lt;/item&gt; &lt;item&gt; &lt;shape&gt; &lt;padding android:top="1dp" android:right="1dp" android:bottom="1dp" android:left="1dp" /&gt; &lt;solid android:color="#50CCCCCC" /&gt; &lt;/shape&gt; &lt;/item&gt; &lt;!-- Background --&gt; &lt;item&gt; &lt;shape&gt; &lt;solid android:color="@color/white" /&gt; &lt;corners android:radius="3dp" /&gt; &lt;/shape&gt; &lt;/item&gt; &lt;/layer-list&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload