source: dispositivos_moviles/TibisayMovil/res/drawable/description.xml @ a8ff2b6

Last change on this file since a8ff2b6 was a8ff2b6, checked in by Antonio Araujo Brett <aaraujo@…>, 11 years ago

Agregados códigos fuentes iniciales de la aplicación TibisayMovil?

  • Property mode set to 100644
File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
3
4      <item  android:top="1dp">
5        <shape android:shape="rectangle" >
6            <gradient
7                android:angle="0"
8                android:endColor="#ffffff"
9                android:startColor="#ffffff" />
10        </shape>
11    </item>
12    <item android:bottom="1dp">
13        <shape android:shape="rectangle" >
14            <stroke
15                android:width="1dp"
16                android:color="#cecece" />
17
18            <solid android:color="#cecece" />
19        </shape>
20    </item> 
21    <item  android:top="2dp" android:bottom="1dp">
22        <shape android:shape="rectangle" >
23            <gradient
24                android:angle="0"
25                android:endColor="#cecece"
26                android:startColor="#cecece" />
27        </shape>
28    </item>
29    <item android:bottom="2dp" android:top="1dp">
30        <shape android:shape="rectangle" >
31            <stroke
32                android:width="1dp"
33                android:color="#ffffff" />
34
35            <solid android:color="#ffffff" />
36        </shape>
37    </item>
38    <item android:bottom="2dp"
39        android:top="2dp">
40        <shape android:shape="rectangle" >
41            <stroke
42                android:width="1dp"
43                android:color="#ebebeb" />
44
45            <solid android:color="#ebebeb" />
46        </shape>
47    </item>
48
49</layer-list>
Note: See TracBrowser for help on using the repository browser.