<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Dennsia &#187; Código</title>
	<atom:link href="http://www.dennsia.com/category/codigo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dennsia.com</link>
	<description>Tecnología, desarrollo, noticias y otras parras...</description>
	<lastBuildDate>Fri, 27 Aug 2010 11:03:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Android Shapes Options</title>
		<link>http://www.dennsia.com/2010/07/13/android-shapes-options/</link>
		<comments>http://www.dennsia.com/2010/07/13/android-shapes-options/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 19:48:19 +0000</pubDate>
		<dc:creator>dennso</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Código]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[shape]]></category>
		<category><![CDATA[shapes]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=286</guid>
		<description><![CDATA[Algunas de las opciones que he ido recopilando sobre los shapes para android. Los shapes son utilizables como drawables. Grabando un archivo con extensión XML en res/drawable &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;shape xmlns:android=&#34;http://schemas.android.com/apk/res/android&#34; android:shape=&#34;rectangle&#34;&#62; &#60;gradient android:type=&#34;radial&#34; android:gradientRadius=&#34;100&#34; android:startColor=&#34;#f666&#34; android:endColor=&#34;#0000&#34; /&#62; &#60;gradient android:startColor=&#34;#FFBDEF63&#34; android:centerColor=&#34;#ffff&#34; android:endColor=&#34;#FF6BCF18&#34; android:centerY=&#34;0.5&#34; android:angle=&#34;270&#34; /&#62; &#60;stroke android:width=&#34;1dp&#34; android:color=&#34;#AA004400&#34; android:dashWidth=&#34;1dp&#34; android:dashGap=&#34;2dp&#34; /&#62; &#60;padding android:left=&#34;15dp&#34; android:top=&#34;5dp&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>Algunas de las opciones que he ido recopilando sobre los shapes para android.<br />
Los shapes son utilizables como drawables.<br />
Grabando un archivo con extensión XML en res/drawable</p>
<pre class="brush: xml;">

&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;shape xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot; android:shape=&quot;rectangle&quot;&gt;
    &lt;gradient android:type=&quot;radial&quot; android:gradientRadius=&quot;100&quot; android:startColor=&quot;#f666&quot; android:endColor=&quot;#0000&quot; /&gt;
    &lt;gradient android:startColor=&quot;#FFBDEF63&quot; android:centerColor=&quot;#ffff&quot; android:endColor=&quot;#FF6BCF18&quot; android:centerY=&quot;0.5&quot; android:angle=&quot;270&quot; /&gt;
    &lt;stroke android:width=&quot;1dp&quot; android:color=&quot;#AA004400&quot; android:dashWidth=&quot;1dp&quot; android:dashGap=&quot;2dp&quot; /&gt;
    &lt;padding android:left=&quot;15dp&quot; android:top=&quot;5dp&quot; android:right=&quot;15dp&quot; android:bottom=&quot;5dp&quot; /&gt;
    &lt;corners android:radius=&quot;4dp&quot; /&gt;
    &lt;corners android:bottomRightRadius=&quot;7dp&quot; android:bottomLeftRadius=&quot;7dp&quot; android:topLeftRadius=&quot;7dp&quot; android:topRightRadius=&quot;7dp&quot;/&gt;
    &lt;margin android:left=&quot;15dp&quot; android:top=&quot;5dp&quot; android:right=&quot;15dp&quot; android:bottom=&quot;5dp&quot; /&gt;
    &lt;size android:height=&quot;10dp&quot;/&gt;
&lt;/shape&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/2010/07/13/android-shapes-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS &#8211; div bottom</title>
		<link>http://www.dennsia.com/2009/07/24/css-div-bottom/</link>
		<comments>http://www.dennsia.com/2009/07/24/css-div-bottom/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 07:10:48 +0000</pubDate>
		<dc:creator>dennso</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Código]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[div]]></category>
		<category><![CDATA[position]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=163</guid>
		<description><![CDATA[¿Cómo posicionar una capa abajo y a la derecha de otra? Pues aquí os dejo la &#8220;solution&#8221;: HTML &#60;div id=&#34;dvContenedor&#34;&#62; &#60;div id=&#34;dvBottom&#34;&#62; CSS Sucks! &#60;/div&#62; &#60;/div&#62; CSS #dvContenedor { position:relative; } #dvBottom { position:absolute; bottom:0px; right:0px; }]]></description>
			<content:encoded><![CDATA[<p>¿Cómo posicionar una capa abajo y a la derecha de otra?<br />
Pues aquí os dejo la &#8220;solution&#8221;:</p>
<p><strong>HTML</strong></p>
<pre class="brush: xml;">
&lt;div id=&quot;dvContenedor&quot;&gt;
	&lt;div id=&quot;dvBottom&quot;&gt;
		CSS Sucks!
	&lt;/div&gt;
&lt;/div&gt;
</pre>
<p><strong>CSS</strong></p>
<pre class="brush: css;">
#dvContenedor
{
	position:relative;
}
#dvBottom
{
	position:absolute;
	bottom:0px;
	right:0px;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/2009/07/24/css-div-bottom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

