<?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: Tutorial 1: Transparent Panel (Linear Layout) On MapView (Google Map)</title>
	<atom:link href="http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/</link>
	<description>Know Anywhere</description>
	<lastBuildDate>Wed, 10 Mar 2010 16:16:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Biosopher</title>
		<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/#comment-467</link>
		<dc:creator>Biosopher</dc:creator>
		<pubDate>Thu, 07 Jan 2010 03:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://pocketjourney.wordpress.com/?p=3#comment-467</guid>
		<description>Check out my updated map tutorial:

http://blog.pocketjourney.com/2009/12/27/android-map-tutorials-updated-to-v1-5-cupcake-mapview-mapactivity/

That tutorial provides a link to another tutorial explaining how to properly setup Eclipse to run Google&#039;s maps.</description>
		<content:encoded><![CDATA[<p>Check out my updated map tutorial:</p>
<p><a href="http://blog.pocketjourney.com/2009/12/27/android-map-tutorials-updated-to-v1-5-cupcake-mapview-mapactivity/" rel="nofollow">http://blog.pocketjourney.com/2009/12/27/android-map-tutorials-updated-to-v1-5-cupcake-mapview-mapactivity/</a></p>
<p>That tutorial provides a link to another tutorial explaining how to properly setup Eclipse to run Google&#8217;s maps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: allankliu</title>
		<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/#comment-457</link>
		<dc:creator>allankliu</dc:creator>
		<pubDate>Tue, 05 Jan 2010 11:18:53 +0000</pubDate>
		<guid isPermaLink="false">http://pocketjourney.wordpress.com/?p=3#comment-457</guid>
		<description>I have downloaded the zip code for SDK1.5. It works fine. However, when I add following code into the tutorial 2 as following:

public void onCreate(Bundle icicle){
...
    MapView mapView = (MapView)findViewById(R.layout.tutorial1);
    mapView.setBuiltInZoomControls(true);
...
}

The code is stopped with following error message.

01-05 19:05:59.203: INFO/ActivityManager(583): Starting activity: Intent { comp={com.pocketjourney.tutorials/com.pocketjourney.tutorials.Tutorial1} }
01-05 19:06:00.424: ERROR/ActivityThread(876): Failed to find provider info for com.google.settings
01-05 19:06:01.422: DEBUG/AndroidRuntime(876): Shutting down VM
01-05 19:06:01.453: WARN/dalvikvm(876): threadid=3: thread exiting with uncaught exception (group=0x4000fe70)
01-05 19:06:01.463: ERROR/AndroidRuntime(876): Uncaught handler: thread main exiting due to uncaught exception
01-05 19:06:01.603: ERROR/AndroidRuntime(876): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.pocketjourney.tutorials/com.pocketjourney.tutorials.Tutorial1}: java.lang.NullPointerException
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2268)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2284)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread.access$1800(ActivityThread.java:112)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1692)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.os.Handler.dispatchMessage(Handler.java:99)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.os.Looper.loop(Looper.java:123)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread.main(ActivityThread.java:3948)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at java.lang.reflect.Method.invokeNative(Native Method)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at java.lang.reflect.Method.invoke(Method.java:521)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:782)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:540)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at dalvik.system.NativeStart.main(Native Method)
01-05 19:06:01.603: ERROR/AndroidRuntime(876): Caused by: java.lang.NullPointerException
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at com.pocketjourney.tutorials.Tutorial1.onCreate(Tutorial1.java:21)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2231)
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     ... 11 more
01-05 19:06:01.683: INFO/Process(583): Sending signal. PID: 876 SIG: 3
01-05 19:06:01.683: INFO/dalvikvm(876): threadid=7: reacting to signal 3
01-05 19:06:01.983: INFO/dalvikvm(876): Wrote stack trace to &#039;/data/anr/traces.txt&#039;
01-05 19:06:09.333: WARN/ActivityManager(583): Launch timeout has expired, giving up wake lock!
01-05 19:06:09.553: WARN/ActivityManager(583): Activity idle timeout for HistoryRecord{437acb48 {com.pocketjourney.tutorials/com.pocketjourney.tutorials.Tutorial1}}

I plan to design a focus and list buttons as Google map does. I used to think tutorial 1 is used to implmented on that. However since it is not compatible with BuiltinZoomControl. I guess maybe I should design an Overlay sticks to the screen as the on-screen control? Rather than a button.</description>
		<content:encoded><![CDATA[<p>I have downloaded the zip code for SDK1.5. It works fine. However, when I add following code into the tutorial 2 as following:</p>
<p>public void onCreate(Bundle icicle){<br />
&#8230;<br />
    MapView mapView = (MapView)findViewById(R.layout.tutorial1);<br />
    mapView.setBuiltInZoomControls(true);<br />
&#8230;<br />
}</p>
<p>The code is stopped with following error message.</p>
<p>01-05 19:05:59.203: INFO/ActivityManager(583): Starting activity: Intent { comp={com.pocketjourney.tutorials/com.pocketjourney.tutorials.Tutorial1} }<br />
01-05 19:06:00.424: ERROR/ActivityThread(876): Failed to find provider info for com.google.settings<br />
01-05 19:06:01.422: DEBUG/AndroidRuntime(876): Shutting down VM<br />
01-05 19:06:01.453: WARN/dalvikvm(876): threadid=3: thread exiting with uncaught exception (group=0&#215;4000fe70)<br />
01-05 19:06:01.463: ERROR/AndroidRuntime(876): Uncaught handler: thread main exiting due to uncaught exception<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.pocketjourney.tutorials/com.pocketjourney.tutorials.Tutorial1}: java.lang.NullPointerException<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2268)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2284)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread.access$1800(ActivityThread.java:112)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1692)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.os.Handler.dispatchMessage(Handler.java:99)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.os.Looper.loop(Looper.java:123)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread.main(ActivityThread.java:3948)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at java.lang.reflect.Method.invokeNative(Native Method)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at java.lang.reflect.Method.invoke(Method.java:521)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:782)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:540)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at dalvik.system.NativeStart.main(Native Method)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876): Caused by: java.lang.NullPointerException<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at com.pocketjourney.tutorials.Tutorial1.onCreate(Tutorial1.java:21)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2231)<br />
01-05 19:06:01.603: ERROR/AndroidRuntime(876):     &#8230; 11 more<br />
01-05 19:06:01.683: INFO/Process(583): Sending signal. PID: 876 SIG: 3<br />
01-05 19:06:01.683: INFO/dalvikvm(876): threadid=7: reacting to signal 3<br />
01-05 19:06:01.983: INFO/dalvikvm(876): Wrote stack trace to &#8216;/data/anr/traces.txt&#8217;<br />
01-05 19:06:09.333: WARN/ActivityManager(583): Launch timeout has expired, giving up wake lock!<br />
01-05 19:06:09.553: WARN/ActivityManager(583): Activity idle timeout for HistoryRecord{437acb48 {com.pocketjourney.tutorials/com.pocketjourney.tutorials.Tutorial1}}</p>
<p>I plan to design a focus and list buttons as Google map does. I used to think tutorial 1 is used to implmented on that. However since it is not compatible with BuiltinZoomControl. I guess maybe I should design an Overlay sticks to the screen as the on-screen control? Rather than a button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Biosopher</title>
		<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/#comment-445</link>
		<dc:creator>Biosopher</dc:creator>
		<pubDate>Sun, 03 Jan 2010 05:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://pocketjourney.wordpress.com/?p=3#comment-445</guid>
		<description>What error messages are you seeing, Dominik?</description>
		<content:encoded><![CDATA[<p>What error messages are you seeing, Dominik?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dominik</title>
		<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/#comment-437</link>
		<dc:creator>Dominik</dc:creator>
		<pubDate>Fri, 01 Jan 2010 18:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://pocketjourney.wordpress.com/?p=3#comment-437</guid>
		<description>great tutorial. thanks! it works perfectly!
however, I have a question. Some how I cannot make this work in a ListActivity - is this so?
It works perfectly with RelativeLayout but not with TableLayout. What would I have to change to make this work?</description>
		<content:encoded><![CDATA[<p>great tutorial. thanks! it works perfectly!<br />
however, I have a question. Some how I cannot make this work in a ListActivity &#8211; is this so?<br />
It works perfectly with RelativeLayout but not with TableLayout. What would I have to change to make this work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: allankliu</title>
		<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/#comment-417</link>
		<dc:creator>allankliu</dc:creator>
		<pubDate>Fri, 11 Dec 2009 05:09:04 +0000</pubDate>
		<guid isPermaLink="false">http://pocketjourney.wordpress.com/?p=3#comment-417</guid>
		<description>I am developing a Wifihunter app on Android. Since I am using SDK1.5, the builtinZoomControl is used. I wonder if I can align the positions with other custom buttons together? I am not sure about the SDK version for this tutorial.

I just want to reproduce the UI layout and logic with my own data sources. That means zoom control, focus navigation button(previous/next buttions) and a list/layer button to get list of all onscreen iterized overlay objects.

After reading your tutorial, I know I have to modify the layout file, add/override some functions. But still I am hesitated if I can deal my new buttons with builtinzoom control.

Is there any new update?</description>
		<content:encoded><![CDATA[<p>I am developing a Wifihunter app on Android. Since I am using SDK1.5, the builtinZoomControl is used. I wonder if I can align the positions with other custom buttons together? I am not sure about the SDK version for this tutorial.</p>
<p>I just want to reproduce the UI layout and logic with my own data sources. That means zoom control, focus navigation button(previous/next buttions) and a list/layer button to get list of all onscreen iterized overlay objects.</p>
<p>After reading your tutorial, I know I have to modify the layout file, add/override some functions. But still I am hesitated if I can deal my new buttons with builtinzoom control.</p>
<p>Is there any new update?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tutorial: Transparent Panels &#124; The Android News Magazine</title>
		<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/#comment-349</link>
		<dc:creator>Tutorial: Transparent Panels &#124; The Android News Magazine</dc:creator>
		<pubDate>Sat, 13 Jun 2009 15:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://pocketjourney.wordpress.com/?p=3#comment-349</guid>
		<description>[...] Tutorial 1:  Transparent Panel (Linear Layout) upon MapView (Google Map) [blog.pokerjourney.com]   Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] Tutorial 1:  Transparent Panel (Linear Layout) upon MapView (Google Map) [blog.pokerjourney.com]   Share and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peeyush</title>
		<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/#comment-348</link>
		<dc:creator>Peeyush</dc:creator>
		<pubDate>Fri, 12 Jun 2009 11:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://pocketjourney.wordpress.com/?p=3#comment-348</guid>
		<description>Hi All,
      I tried to apply theme on my new activity which show the transparent background(Previous window)..
I got it but when i depoly on device it is not working it is showing black background..




@android:color/transparent
@null
0.6
true	



can anybody please tell me what is going wrong here..
Thanks,</description>
		<content:encoded><![CDATA[<p>Hi All,<br />
      I tried to apply theme on my new activity which show the transparent background(Previous window)..<br />
I got it but when i depoly on device it is not working it is showing black background..</p>
<p>@android:color/transparent<br />
@null<br />
0.6<br />
true	</p>
<p>can anybody please tell me what is going wrong here..<br />
Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/#comment-294</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Wed, 01 Apr 2009 12:26:15 +0000</pubDate>
		<guid isPermaLink="false">http://pocketjourney.wordpress.com/?p=3#comment-294</guid>
		<description>This has to be the BEST set of tutorials on these Android topics, thanks a million you have helped me no end!</description>
		<content:encoded><![CDATA[<p>This has to be the BEST set of tutorials on these Android topics, thanks a million you have helped me no end!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeffld</title>
		<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/#comment-257</link>
		<dc:creator>jeffld</dc:creator>
		<pubDate>Sun, 18 Jan 2009 14:37:47 +0000</pubDate>
		<guid isPermaLink="false">http://pocketjourney.wordpress.com/?p=3#comment-257</guid>
		<description>This is a good tutorial. 

I&#039;m a little bit behind in regards to the G1.  I only got my G1 in December of 2008.</description>
		<content:encoded><![CDATA[<p>This is a good tutorial. </p>
<p>I&#8217;m a little bit behind in regards to the G1.  I only got my G1 in December of 2008.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Android Tutorial 3: Custom Media Streaming with MediaPlayer &#171; Pocket Journey</title>
		<link>http://blog.pocketjourney.com/2008/03/15/tutorial-1-transparent-panel-linear-layout-on-mapview-google-map/#comment-128</link>
		<dc:creator>Android Tutorial 3: Custom Media Streaming with MediaPlayer &#171; Pocket Journey</dc:creator>
		<pubDate>Mon, 11 Aug 2008 17:47:27 +0000</pubDate>
		<guid isPermaLink="false">http://pocketjourney.wordpress.com/?p=3#comment-128</guid>
		<description>[...] Tutorial 1: Transparent Panel (Linear Layout) On MapView (Google Map) Tutorial 2: “Hit” testing on a View (MapView) Tutorial 4.1: Image and Text-Only Buttons   Possibly related posts: (automatically generated)Rewind, play, rewind, play: AudioLobe makes transcription easier [...]</description>
		<content:encoded><![CDATA[<p>[...] Tutorial 1: Transparent Panel (Linear Layout) On MapView (Google Map) Tutorial 2: “Hit” testing on a View (MapView) Tutorial 4.1: Image and Text-Only Buttons   Possibly related posts: (automatically generated)Rewind, play, rewind, play: AudioLobe makes transcription easier [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
