<?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/"
	
	>
<channel>
	<title>
	〈Android Tabhost with FragmentActivity〉的留言	</title>
	<atom:link href="https://noter.tw/2125/android-tabhost-with-fragmentactivity/feed/" rel="self" type="application/rss+xml" />
	<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/</link>
	<description>一路上踩到的坑、遇到的問題，一點一滴記下來，希望能幫助到需要的人~</description>
	<lastBuildDate>Wed, 06 Nov 2019 14:33:39 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.3</generator>
	<item>
		<title>
		留言者: zhujinshan3		</title>
		<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-276</link>

		<dc:creator><![CDATA[zhujinshan3]]></dc:creator>
		<pubDate>Thu, 08 Jan 2015 08:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://wazai.net/?p=2125#comment-276</guid>

					<description><![CDATA[多谢lz，tab实现的方式茫茫多，得每种都研究研究找到最适合自己需求的实现方式]]></description>
			<content:encoded><![CDATA[<p>多谢lz，tab实现的方式茫茫多，得每种都研究研究找到最适合自己需求的实现方式</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		留言者: Hans		</title>
		<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-275</link>

		<dc:creator><![CDATA[Hans]]></dc:creator>
		<pubDate>Wed, 07 Jan 2015 03:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://wazai.net/?p=2125#comment-275</guid>

					<description><![CDATA[回覆的對象為「&lt;a href=&quot;https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-274&quot;&gt;zhujinshan3&lt;/a&gt;」。

Dear zhujinshan3:
小蛙後來改用下面這種做法
https://github.com/codepath/android_guides/wiki/ActionBar-Tabs-with-Fragments
http://www.tuicool.com/articles/rmqqMjY
供您參考看看囉！]]></description>
			<content:encoded><![CDATA[<p>回覆的對象為「<a href="https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-274" data-wpel-link="internal">zhujinshan3</a>」。</p>
<p>Dear zhujinshan3:<br />
小蛙後來改用下面這種做法<br />
<a href="https://github.com/codepath/android_guides/wiki/ActionBar-Tabs-with-Fragments" rel="ugc nofollow external noopener noreferrer" data-wpel-link="external" target="_blank" class="wpel-icon-right">https://github.com/codepath/android_guides/wiki/ActionBar-Tabs-with-Fragments<span class="wpel-icon wpel-image wpel-icon-6"></span></a><br />
<a href="http://www.tuicool.com/articles/rmqqMjY" rel="ugc nofollow external noopener noreferrer" data-wpel-link="external" target="_blank" class="wpel-icon-right">http://www.tuicool.com/articles/rmqqMjY<span class="wpel-icon wpel-image wpel-icon-6"></span></a><br />
供您參考看看囉！</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		留言者: zhujinshan3		</title>
		<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-274</link>

		<dc:creator><![CDATA[zhujinshan3]]></dc:creator>
		<pubDate>Tue, 06 Jan 2015 03:59:48 +0000</pubDate>
		<guid isPermaLink="false">http://wazai.net/?p=2125#comment-274</guid>

					<description><![CDATA[LocalActivityManager现在是个过期的类，不太想使用它，而TabHost直接用setup()方法会报错，看了网上其他的解决办法没能很好的解决，不知道版主有没有考虑过这个问题]]></description>
			<content:encoded><![CDATA[<p>LocalActivityManager现在是个过期的类，不太想使用它，而TabHost直接用setup()方法会报错，看了网上其他的解决办法没能很好的解决，不知道版主有没有考虑过这个问题</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		留言者: Hans		</title>
		<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-273</link>

		<dc:creator><![CDATA[Hans]]></dc:creator>
		<pubDate>Wed, 12 Feb 2014 02:26:53 +0000</pubDate>
		<guid isPermaLink="false">http://wazai.net/?p=2125#comment-273</guid>

					<description><![CDATA[回覆的對象為「&lt;a href=&quot;https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-272&quot;&gt;dean&lt;/a&gt;」。

Dear dean:
在 Fragment 下是沒有辦法接收到 startActivityForResult 結果的喔！
把 startActivityForResult(securityIntent, SecurityCheckRequestCode);
改成
getActivity().getParent().startActivityForResult(securityIntent, SecurityCheckRequestCode);
透過 MainTabActivity 來呼叫 startActivityForResult，
同時也要使用 MainTabActivity 的 onActivityResult 來處理這個事件！
Good Luck !!]]></description>
			<content:encoded><![CDATA[<p>回覆的對象為「<a href="https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-272" data-wpel-link="internal">dean</a>」。</p>
<p>Dear dean:<br />
在 Fragment 下是沒有辦法接收到 startActivityForResult 結果的喔！<br />
把 startActivityForResult(securityIntent, SecurityCheckRequestCode);<br />
改成<br />
getActivity().getParent().startActivityForResult(securityIntent, SecurityCheckRequestCode);<br />
透過 MainTabActivity 來呼叫 startActivityForResult，<br />
同時也要使用 MainTabActivity 的 onActivityResult 來處理這個事件！<br />
Good Luck !!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		留言者: dean		</title>
		<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-272</link>

		<dc:creator><![CDATA[dean]]></dc:creator>
		<pubDate>Tue, 11 Feb 2014 14:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://wazai.net/?p=2125#comment-272</guid>

					<description><![CDATA[hi 非常感谢LZ共享这个方法，很实用。不过有个问题，一直没解决，请LZ帮忙看下，
我在其中一个FRAGMENT中的 onCreateView 里调用了 startActivityForResult
 Intent securityIntent = new Intent(layoutView.getContext(),
                            SecurityCheckActivity.class)
startActivityForResult(securityIntent, SecurityCheckRequestCode);
可是怎么都接收不到 onActivityResult事件，请问要怎么处理？]]></description>
			<content:encoded><![CDATA[<p>hi 非常感谢LZ共享这个方法，很实用。不过有个问题，一直没解决，请LZ帮忙看下，<br />
我在其中一个FRAGMENT中的 onCreateView 里调用了 startActivityForResult<br />
 Intent securityIntent = new Intent(layoutView.getContext(),<br />
                            SecurityCheckActivity.class)<br />
startActivityForResult(securityIntent, SecurityCheckRequestCode);<br />
可是怎么都接收不到 onActivityResult事件，请问要怎么处理？</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		留言者: Hans		</title>
		<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-271</link>

		<dc:creator><![CDATA[Hans]]></dc:creator>
		<pubDate>Wed, 07 Aug 2013 13:16:24 +0000</pubDate>
		<guid isPermaLink="false">http://wazai.net/?p=2125#comment-271</guid>

					<description><![CDATA[回覆的對象為「&lt;a href=&quot;https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-270&quot;&gt;severus&lt;/a&gt;」。

Dear severus:
文章最後面已經有下載連結了喔！]]></description>
			<content:encoded><![CDATA[<p>回覆的對象為「<a href="https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-270" data-wpel-link="internal">severus</a>」。</p>
<p>Dear severus:<br />
文章最後面已經有下載連結了喔！</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		留言者: severus		</title>
		<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-270</link>

		<dc:creator><![CDATA[severus]]></dc:creator>
		<pubDate>Wed, 07 Aug 2013 11:56:53 +0000</pubDate>
		<guid isPermaLink="false">http://wazai.net/?p=2125#comment-270</guid>

					<description><![CDATA[回覆的對象為「&lt;a href=&quot;https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-269&quot;&gt;wasai&lt;/a&gt;」。

求demo!!!谢谢
fagezi@hotmail.com]]></description>
			<content:encoded><![CDATA[<p>回覆的對象為「<a href="https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-269" data-wpel-link="internal">wasai</a>」。</p>
<p>求demo!!!谢谢<br />
<a href="mailto:fagezi@hotmail.com">fagezi@hotmail.com</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		留言者: wasai		</title>
		<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-269</link>

		<dc:creator><![CDATA[wasai]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 03:01:43 +0000</pubDate>
		<guid isPermaLink="false">http://wazai.net/?p=2125#comment-269</guid>

					<description><![CDATA[求Demo，谢谢~~~~~~
fmshu@sina.com]]></description>
			<content:encoded><![CDATA[<p>求Demo，谢谢~~~~~~<br />
<a href="mailto:fmshu@sina.com">fmshu@sina.com</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		留言者: Hans		</title>
		<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-268</link>

		<dc:creator><![CDATA[Hans]]></dc:creator>
		<pubDate>Thu, 10 Jan 2013 10:12:22 +0000</pubDate>
		<guid isPermaLink="false">http://wazai.net/?p=2125#comment-268</guid>

					<description><![CDATA[回覆的對象為「&lt;a href=&quot;https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-265&quot;&gt;me&lt;/a&gt;」。

Dear me:
寄過去囉！]]></description>
			<content:encoded><![CDATA[<p>回覆的對象為「<a href="https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-265" data-wpel-link="internal">me</a>」。</p>
<p>Dear me:<br />
寄過去囉！</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		留言者: Hans		</title>
		<link>https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-267</link>

		<dc:creator><![CDATA[Hans]]></dc:creator>
		<pubDate>Thu, 10 Jan 2013 10:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://wazai.net/?p=2125#comment-267</guid>

					<description><![CDATA[回覆的對象為「&lt;a href=&quot;https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-266&quot;&gt;wanghao&lt;/a&gt;」。

Dear wanghao:
不好意思喔，小蛙沒有用 QQ，網站上方有 email，可以直接寫 mail 給小蛙！^__^]]></description>
			<content:encoded><![CDATA[<p>回覆的對象為「<a href="https://noter.tw/2125/android-tabhost-with-fragmentactivity/#comment-266" data-wpel-link="internal">wanghao</a>」。</p>
<p>Dear wanghao:<br />
不好意思喔，小蛙沒有用 QQ，網站上方有 email，可以直接寫 mail 給小蛙！^__^</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
