[android-developers] Re: maps behind proxy 0.9 beta

2008-08-27 Thread jokochi
;t think other lines will cause side effect. On 8月27日, 午後6:52, shan <[EMAIL PROTECTED]> wrote: > Im getting this : > > PHP Parse error: syntax error, unexpected T_LOGICAL_OR in C:\Program > Files\PHP\ > AndroidMapProxy.php on line 169 > > Please assist > > On Aug 26,

[android-developers] Re: MapView and Zoom Control in 0.9 SDK

2008-08-26 Thread jokochi
That's a neat solution. It works! Thank you, Amos. I really know how to use RelativeLayout. It's just a small question comes to me, why mapview was stacked on layer "layout"? I think mapview is able to be on top layer like as before. On 8月26日, 午後9:38, Amos <[EMAIL PROTECTED]> wrote: > Hi All, >

[android-developers] Re: maps behind proxy 0.9 beta

2008-08-26 Thread jokochi
at specified script's parameter. No firewall setting is required. I saw the maps using original map application. On 8月26日, 午後2:35, shan <[EMAIL PROTECTED]> wrote: > Also, did you see the maps via the maps application or on the browser? > > On Aug 22, 7:06 pm, jokochi <[EMAIL

[android-developers] Re: MapView and Zoom Control in 0.9 SDK

2008-08-25 Thread jokochi
In my solution, I made a new class inherit from MapView its overrides onInterceptTouchEvent method to intercept all event. public boolean onInterceptTouchEvent(MotionEvent ev) { onTouchEvent(ev); return false; } It looks wroking. On 8月25日,

[android-developers] Re: maps behind proxy 0.9 beta

2008-08-22 Thread jokochi
forget to turn off the firewall. On 8月22日, 午後6:43, shan <[EMAIL PROTECTED]> wrote: > Thanks Jokochi, still can't get it same problems. Please update if you > could. > Were you able to display the maps? > > On Aug 22, 1:10 pm, jokochi <[EMAIL PROTECTED]> wrote: >

[android-developers] Re: maps behind proxy 0.9 beta

2008-08-22 Thread jokochi
fix this line; wrong: if (isset($argv[2]) && (preg_match("^\d+$", $argv[2]))) correct: if (isset($argv[2]) && (preg_match("/^\d+$/", $argv[2]))) Thank you. On 8月22日, 午後3:58, shan <[EMAIL PROTECTED]> wrote: > Hi Jokochi > > I am using a Windows m

[android-developers] Re: maps behind proxy 0.9 beta

2008-08-21 Thread jokochi
private function error($message) { die($message); } } // Server main process if ((isset($argv[1])) && (preg_match("/^http:\/\/(.+)\.(.+):(\d+)/", $argv[1], $matches))) { $http_proxy = preg_replace("/http:\/\//", 'tcp://', $argv[1

[android-developers] Re: maps behind proxy 0.9 beta

2008-08-21 Thread jokochi
I am in the same situation that the browser in 0.9 couldn't get any data behind proxy. Also I recognize this problem is same as map view. Because of most proxy server will not convey a packet besides SSL(443) port with CONNECT method but MapView is trying to connect with CONNECT method first. The