<?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>Android Development &#187; layout technique</title>
	<atom:link href="http://www.droidnova.com/tag/layout-technique/feed" rel="self" type="application/rss+xml" />
	<link>http://www.droidnova.com</link>
	<description>Rapid android development from Berlin</description>
	<lastBuildDate>Tue, 27 Jul 2010 21:54:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Layout technique: Center a TextView with a Button left and right</title>
		<link>http://www.droidnova.com/layout-technique-center-a-textview-with-a-button-left-and-right,626.html</link>
		<comments>http://www.droidnova.com/layout-technique-center-a-textview-with-a-button-left-and-right,626.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 15:02:03 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[layout technique]]></category>
		<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=626</guid>
		<description><![CDATA[While working on an application which should look similar to an iPhone application, I have to create a bar at the top where I have a back and a forward button (each on one side) and a dynamic text centered in the middle between them.
To get this done, I searched quite a lot and got [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/layout-technique-center-a-textview-with-a-button-left-and-right,626.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Layout technique: Static elements below ScrollView</title>
		<link>http://www.droidnova.com/layout-technique-static-elements-below-scrollview,123.html</link>
		<comments>http://www.droidnova.com/layout-technique-static-elements-below-scrollview,123.html#comments</comments>
		<pubDate>Tue, 07 Apr 2009 07:32:19 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[layout technique]]></category>
		<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=123</guid>
		<description><![CDATA[Did you ever want to know how to place an element below a ScrollView which will normally fill the whole screen?
This is only possible by a little trick: Using margins.
The ScrollView must have positive layout_marginBottom, and the element below the ScrollView must have negative layout_marginTop.

Short example:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
&#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62;
&#60;LinearLayout xmlns:android=&#34;http://schemas.android.com/apk/res/android&#34;
    android:orientation=&#34;vertical&#34;
   [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/layout-technique-static-elements-below-scrollview,123.html/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Display borders in TableLayout</title>
		<link>http://www.droidnova.com/display-borders-in-tablelayout,112.html</link>
		<comments>http://www.droidnova.com/display-borders-in-tablelayout,112.html#comments</comments>
		<pubDate>Fri, 20 Mar 2009 11:16:16 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[layout technique]]></category>
		<category><![CDATA[TableLayout]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=112</guid>
		<description><![CDATA[As the developer guide says that table border lines are not displayed there is only a dirty fix for this problem:
Give the TableLayout a background color, give the TableRow another background color and set margin to the TableRow. The amount of the margin is the amount of the &#8220;border&#8221;. Same for each View in the [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/display-borders-in-tablelayout,112.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>TableLayout supports column span</title>
		<link>http://www.droidnova.com/tablelayout-supports-column-span,105.html</link>
		<comments>http://www.droidnova.com/tablelayout-supports-column-span,105.html#comments</comments>
		<pubDate>Fri, 13 Mar 2009 11:10:21 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[how to]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[layout technique]]></category>
		<category><![CDATA[TableLayout]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=105</guid>
		<description><![CDATA[While working on a little game to learn more about Intents, Activity life cycle and other stuff, I used the TableLayout for the first time. I realized that the auto-completion missed the attribute android:layout_span which is referred by the R.attr. The same with android:stretchColumns. As I read some minutes ago, some people still think column [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/tablelayout-supports-column-span,105.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>First list application</title>
		<link>http://www.droidnova.com/first-list-application,37.html</link>
		<comments>http://www.droidnova.com/first-list-application,37.html#comments</comments>
		<pubDate>Sat, 28 Feb 2009 22:36:34 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[intent]]></category>
		<category><![CDATA[layout technique]]></category>
		<category><![CDATA[ListActivity]]></category>

		<guid isPermaLink="false">http://www.droidnova.com/?p=37</guid>
		<description><![CDATA[Yesterday we started a tutorial we found on the youtube channel of androiddevelopers. The intent of this tutorial is to create an application that shows all contacts by name. You also should be able to click on the name and the phone will start a call to this contact.
The tutorial itself is more than a [...]]]></description>
		<wfw:commentRss>http://www.droidnova.com/first-list-application,37.html/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->