<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: How to use Table View layout</title>
	<atom:link href="http://devblog.blackberry.com/2009/10/how-to-use-table-view-layout/feed/" rel="self" type="application/rss+xml" />
	<link>http://devblog.blackberry.com/2009/10/how-to-use-table-view-layout/</link>
	<description></description>
	<lastBuildDate>Tue, 29 Jan 2013 20:13:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Janak Rajyaguru</title>
		<link>http://devblog.blackberry.com/2009/10/how-to-use-table-view-layout/#comment-20</link>
		<dc:creator><![CDATA[Janak Rajyaguru]]></dc:creator>
		<pubDate>Tue, 21 Dec 2010 10:30:00 +0000</pubDate>
		<guid isPermaLink="false">http://blackberrydev.edstaging.com/?p=553#comment-20</guid>
		<description><![CDATA[u can extends MainScreen instead Manager........no any error occurs jst chk it out !]]></description>
		<content:encoded><![CDATA[<p>u can extends MainScreen instead Manager&#8230;&#8230;..no any error occurs jst chk it out !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khadaree</title>
		<link>http://devblog.blackberry.com/2009/10/how-to-use-table-view-layout/#comment-19</link>
		<dc:creator><![CDATA[Khadaree]]></dc:creator>
		<pubDate>Thu, 16 Dec 2010 10:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://blackberrydev.edstaging.com/?p=553#comment-19</guid>
		<description><![CDATA[Hi,
Is it possible to focus the complete inner table (contains 6 cells) alone.

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
Is it possible to focus the complete inner table (contains 6 cells) alone.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://devblog.blackberry.com/2009/10/how-to-use-table-view-layout/#comment-18</link>
		<dc:creator><![CDATA[Richard]]></dc:creator>
		<pubDate>Fri, 26 Nov 2010 03:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://blackberrydev.edstaging.com/?p=553#comment-18</guid>
		<description><![CDATA[it&quot;s like a container i think
u can use it like HorizontalFieldManager or VerticalFieldManager
tablelayoutmanager is extending manager]]></description>
		<content:encoded><![CDATA[<p>it&#8221;s like a container i think<br />
u can use it like HorizontalFieldManager or VerticalFieldManager<br />
tablelayoutmanager is extending manager</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yamil Bracho</title>
		<link>http://devblog.blackberry.com/2009/10/how-to-use-table-view-layout/#comment-17</link>
		<dc:creator><![CDATA[Yamil Bracho]]></dc:creator>
		<pubDate>Wed, 25 Aug 2010 20:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://blackberrydev.edstaging.com/?p=553#comment-17</guid>
		<description><![CDATA[In the second example, there is no code publish, so i did : &lt;br&gt;&lt;br&gt;TableLayoutManager outerTable = new TableLayoutManager(new int [] {&lt;br&gt;	TableLayoutManager.USE_PREFERRED_SIZE,&lt;br&gt;	TableLayoutManager.USE_PREFERRED_SIZE,&lt;br&gt;	TableLayoutManager.USE_PREFERRED_SIZE,&lt;br&gt;	TableLayoutManager.USE_PREFERRED_SIZE,&lt;br&gt;	TableLayoutManager.USE_PREFERRED_SIZE&lt;br&gt;}, Manager.HORIZONTAL_SCROLL);&lt;br&gt;&lt;br&gt;for(int i= 0;i &lt; images.length;i++) {&lt;br&gt;  TableLayoutManager innerTable = new TableLayoutManager(new int [] { &lt;br&gt;		TableLayoutManager.USE_PREFERRED_SIZE&lt;br&gt;	}, Manager.HORIZONTAL_SCROLL);&lt;br&gt;  innerTable.add(new BitmapField(images[i],Field.FOCUSABLE));&lt;br&gt;  innerTable.add(new LabelField(labels[i]);&lt;br&gt;  colFMgr.add(innerTable);&lt;br&gt;}&lt;br&gt;add(colFMgr );&lt;br&gt;&lt;br&gt;Is this OK ?&lt;br&gt;&lt;br&gt;Thanks for a great article]]></description>
		<content:encoded><![CDATA[<p>In the second example, there is no code publish, so i did : </p>
<p>TableLayoutManager outerTable = new TableLayoutManager(new int [] {<br />	TableLayoutManager.USE_PREFERRED_SIZE,<br />	TableLayoutManager.USE_PREFERRED_SIZE,<br />	TableLayoutManager.USE_PREFERRED_SIZE,<br />	TableLayoutManager.USE_PREFERRED_SIZE,<br />	TableLayoutManager.USE_PREFERRED_SIZE<br />}, Manager.HORIZONTAL_SCROLL);</p>
<p>for(int i= 0;i &lt; images.length;i++) {<br />  TableLayoutManager innerTable = new TableLayoutManager(new int [] { <br />		TableLayoutManager.USE_PREFERRED_SIZE<br />	}, Manager.HORIZONTAL_SCROLL);<br />  innerTable.add(new BitmapField(images[i],Field.FOCUSABLE));<br />  innerTable.add(new LabelField(labels[i]);<br />  colFMgr.add(innerTable);<br />}<br />add(colFMgr );</p>
<p>Is this OK ?</p>
<p>Thanks for a great article</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh</title>
		<link>http://devblog.blackberry.com/2009/10/how-to-use-table-view-layout/#comment-16</link>
		<dc:creator><![CDATA[Rajesh]]></dc:creator>
		<pubDate>Fri, 20 Aug 2010 13:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://blackberrydev.edstaging.com/?p=553#comment-16</guid>
		<description><![CDATA[hey man it is available in the Knowledge base in BB...&lt;br&gt;&lt;a href=&quot;http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800508/How_To_-_Create_a_rich_UI_layout_with_TableLayoutManager.html?nodeid=1906675&amp;vernum=0&quot; rel=&quot;nofollow&quot;&gt;http://www.blackberry.com/knowledgecenterpublic...&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>hey man it is available in the Knowledge base in BB&#8230;<br /><a href="http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800508/How_To_-_Create_a_rich_UI_layout_with_TableLayoutManager.html?nodeid=1906675&#038;vernum=0" rel="nofollow"></a><a href="http://www.blackberry.com/knowledgecenterpublic" rel="nofollow">http://www.blackberry.com/knowledgecenterpublic</a>&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adi krisna</title>
		<link>http://devblog.blackberry.com/2009/10/how-to-use-table-view-layout/#comment-15</link>
		<dc:creator><![CDATA[adi krisna]]></dc:creator>
		<pubDate>Thu, 29 Jul 2010 10:07:22 +0000</pubDate>
		<guid isPermaLink="false">http://blackberrydev.edstaging.com/?p=553#comment-15</guid>
		<description><![CDATA[can you post the code ?]]></description>
		<content:encoded><![CDATA[<p>can you post the code ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sim</title>
		<link>http://devblog.blackberry.com/2009/10/how-to-use-table-view-layout/#comment-14</link>
		<dc:creator><![CDATA[Sim]]></dc:creator>
		<pubDate>Wed, 14 Jul 2010 17:59:23 +0000</pubDate>
		<guid isPermaLink="false">http://blackberrydev.edstaging.com/?p=553#comment-14</guid>
		<description><![CDATA[This article is really cool...... but i&#039;m still not getting that how to implement this code in project... There are 2 constructors and how to display this on screen.. There is no instance of MainScreen.... plz help...]]></description>
		<content:encoded><![CDATA[<p>This article is really cool&#8230;&#8230; but i&#39;m still not getting that how to implement this code in project&#8230; There are 2 constructors and how to display this on screen.. There is no instance of MainScreen&#8230;. plz help&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
