source: dispositivos_moviles/TibisayMovil/res/drawable/blue_button.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: 982 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
3
4   
5    <item>
6        <shape android:shape="rectangle" >
7            <stroke
8                android:width="1dp"
9                android:color="#297491" />
10
11            <solid android:color="#297491" />
12        </shape>
13    </item>
14    <item
15        android:bottom="2dp"
16        android:right="2dp" >
17        <shape android:shape="rectangle" >
18            <gradient
19                android:angle="0"
20                android:endColor="#66b3cf"
21                android:startColor="#66b3cf" />
22        </shape>
23    </item>
24
25    <item android:bottom="2dp"
26        android:top="2dp"
27        android:left="2dp"
28        android:right="2dp">
29        <shape android:shape="rectangle" >
30            <gradient
31                android:angle="0"
32                android:endColor="#4bbae3"
33                android:startColor="#4bbae3" />
34        </shape>
35    </item>
36
37</layer-list>
Note: See TracBrowser for help on using the repository browser.