[android-developers] Re: Android browser is parsing my XML (KML) document

2009-12-09 Thread Phil V
maybe set the encoding to text/html

On Dec 7, 4:39 pm, Raul  wrote:
> Hey Guys-
>
> Is there any way to display raw XML in an Android Browser. My XML file
> is being stripped of all the XML tags, and I need them for my map
> application to work correctly.
>
> Please advise,
>
> Raul

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Flash and Youtube

2009-12-07 Thread Phil V
There is a youtube app built into Android 2.0 and the browser loads
videos as well. How does this work? Supposedly there is no flash, and
yet the videos work? why is that? I am trying to replicate the youtube
app for another flash video site. I thought I could load the swf or
video file in a webview. Anyone shed any light on this matter?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Please help me !!

2009-12-07 Thread Phil V
Yes. Just select multiple contacts when creating a text message.

On Dec 7, 4:01 pm, IPEG Student  wrote:
> On Tue, Dec 8, 2009 at 12:29 AM, Phil V  wrote:
> > Do you mean like an android exclusive chatroom?
>
> > On Dec 7, 1:44 pm, IPEG Student  wrote:
> > > Hi
>
> > >       Can any one tell me is group messaging is possible in android
> > > or not. If yes then please tell me something like how can i implement
> > this?
>
> > > Thanks,
>
> > > Suman
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Android Developers" group.
> > To post to this group, send email to android-developers@googlegroups.com
> > To unsubscribe from this group, send email to
> > android-developers+unsubscr...@googlegroups.com
> > For more options, visit this group at
> >http://groups.google.com/group/android-developers?hl=en
>
>           Thanks for reply first. But i want to ask you that whether  group
> sms  activity  like  sms  sending  to multiple  contacts  at a time is
> possible on android or not. Am not asking for chatroom.
>
>          Thanks,
>
>  Suman

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: WebView not working

2009-12-07 Thread Phil V
<3

It was the layout. I made the linear layout fill_parent for both width
and height. it makes sense now. It was generating the linear layout
before the webview existed to fill it, therefore not creating any
content to wrap around, correct?

On Dec 7, 2:38 pm, "Mark Murphy"  wrote:
> > I am trying to get a simple webview working for use in a bigger
> > program. I can't even get a sample off the ground. I just get a black
> > screen on my phone (2.0) with a typical title bar at the top that
> > comes by default.
>
> Eliminate the LinearLayout, or make it fill_parent for both width and height.
>
> If that does not help, here are some ideas for investigation:
>
> -- Does the Browser application work on your device?
>
> -- Have you tried another URL? I can state positively 
> thathttp://commonsware.comworks fine with WebView.
>
> --
> Mark Murphy (a Commons Guy)http://commonsware.com
> Android App Developer Books:http://commonsware.com/books.html

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] WebView not working

2009-12-07 Thread Phil V
I am trying to get a simple webview working for use in a bigger
program. I can't even get a sample off the ground. I just get a black
screen on my phone (2.0) with a typical title bar at the top that
comes by default. Please help.

This is my HelloWebView.java:

package com.pv.hellowebview;

import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;

public class HelloWebView extends Activity {
/** Called when the activity is first created. */
WebView webview;

@Override
public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.main);
webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setJavaScriptEnabled(true);
webview.loadUrl("http://www.google.com";);
}
}


here is my layout main.xml:

http://schemas.android.com/apk/res/
android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">




and finally here is my AndroidManifest.xml:

http://schemas.android.com/apk/res/android";
  package="com.pv.hellowebview"
  android:versionCode="1"
  android:versionName="1.0">
  













-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Please help me !!

2009-12-07 Thread Phil V
Do you mean like an android exclusive chatroom?

On Dec 7, 1:44 pm, IPEG Student  wrote:
> Hi
>
>       Can any one tell me is group messaging is possible in android
> or not. If yes then please tell me something like how can i implement this?
>
> Thanks,
>
> Suman

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en