[android-developers] Re: LocationManager crashes app, every time

2008-04-02 Thread guzarva
On Apr 3, 7:09 am, "Harsh Jain" <[EMAIL PROTECTED]> wrote: > are you running this in a second emulator by any chance ? > > > > On Thu, Apr 3, 2008 at 5:35 AM, JoeB <[EMAIL PROTECTED]> wrote: > > > Hi, > > > Any advice on this would help--I can never get a provider from > > LocationManager (there

[android-developers] Re: LocationManager crashes app, every time

2008-04-02 Thread guzarva
On Apr 3, 7:05 am, JoeB <[EMAIL PROTECTED]> wrote: > Hi, > > Any advice on this would help--I can never get a provider from > LocationManager (there is supposed to be a mock one at least, and I > can see the data for it by using "adb shell").  I also can't get > locations or anything else.  Any

[android-developers] Re: WebView History use?

2008-04-02 Thread guzarva
On Apr 3, 4:29 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I'm working on a custom html browser using WebView.loadData().  I'm > trying to implement a back button feature, but it seems that loadData > doesn't update the history, and I have no way to do it myself. > > private WebView wv;

[android-developers] Re: making a http post call from an andriod app to web app

2008-04-02 Thread guzarva
On Apr 3, 4:24 am, yizhao <[EMAIL PROTECTED]> wrote: > I posted a similar question in the beginner group but didn't get what > I was looking for so I'm trying my luck here : ). > > I have a simple android app.  In one of the Activity's onCreate() > method, I have some code to make a http post (t

[android-developers] Re: Can Spinner OnItemSelectedListener use View's drawable state to detect drop-down?

2008-04-02 Thread guzarva
On Apr 3, 5:33 am, "Megha Joshi" <[EMAIL PROTECTED]> wrote: > Hi Todd, > > Its not clear to me what you are trying to do, I read twice through your > post, but I couldn't figure it out. > > Thanks, > Megha > > > > On Wed, Apr 2, 2008 at 1:57 PM, lee.t <[EMAIL PROTECTED]> wrote: > > > Seems there

[android-developers] Re: Can Spinner OnItemSelectedListener use View's drawable state to detect drop-down?

2008-04-02 Thread guzarva
On Apr 3, 3:57 am, "lee.t" <[EMAIL PROTECTED]> wrote: > Seems there have been a lot of questions regarding the selection model > for the spinner (ie - no OnItemClicked, only OnItemSelected listeners, > making it difficult to use callbacks which respond to 'final' item > selection and not every '

[android-developers] Re: SDK Bug - ViewAnimator Crash

2008-04-02 Thread guzarva
On Apr 3, 3:31 am, peter <[EMAIL PROTECTED]> wrote: > Hi, > > I've noticed that the ViewAnimator class will often crash with the > message: > > "Application Error: > [application] > > An error has occured in [application]. width and height must be > 0." > > I am fairly confident this is a proble

[android-developers] Re: how to make a View always display on Screen?

2008-04-02 Thread guzarva
On Apr 3, 3:28 am, Android-Berry <[EMAIL PROTECTED]> wrote: > Hi there, > > I want to create a view stick with screen, > what I means is like status bar, but is always at the bottom of > screen, > > for example, Create a view and it will show at the bottom of the > screen, > > maybe the screen h

[android-developers] Re: Monitor live objects in android app !!!

2008-04-02 Thread guzarva
On Apr 3, 3:56 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > The message of application not responding is not related to the memory > usage, but to the processor usage of you application. All processor > intensive tasks should be done in a seperate thread. > > On Apr 2, 9:45 pm, Niket Ana

[android-developers] Re: Monitor live objects in android app !!!

2008-04-02 Thread guzarva
On Apr 3, 2:45 am, Niket Anand <[EMAIL PROTECTED]> wrote: > Hello, > > I have been facing one problem while running the android app for > sometime. After playing with app for sometime, I usually see > application not responding messages, eventhough I am taking care of > not creating large number

[android-developers] Re: Display Context menu

2008-04-02 Thread guzarva
On Apr 3, 2:38 am, Android-Berry <[EMAIL PROTECTED]> wrote: > Hi There, > > If there is particular view with some specifical menu, > > When pushing menu, if focus is on that view, it will display > specifical menu, if not, it will not show up. > > How to implement this function? > > Thanks. --~-

[android-developers] Re: MapActivity onTouchEvent

2008-04-02 Thread guzarva
On Apr 3, 7:45 am, Alex B <[EMAIL PROTECTED]> wrote: > Indeed, you are right.  Using dispathTouchEvent worked.  Thank you > kindly! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

[android-developers] Re: MapActivity onTouchEvent

2008-04-02 Thread guzarva
On Apr 3, 2:37 am, Alex B <[EMAIL PROTECTED]> wrote: > Hi, > > Has anyone managed to override onTouchEvent within MapActivity?  I > know that overriding onTouchEvent in MapView is possible, and I have > done that, but I need to do it in MapActivity.  I see it in the API in > the section "Methods

[android-developers] Re: MapActivity onTouchEvent

2008-04-02 Thread guzarva
On Apr 3, 7:58 am, Alex B <[EMAIL PROTECTED]> wrote: > Sorry, I meant dispatchTouchEvent. I'm correcting it in case anyone > searches for that keyword. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Develop

[android-developers] Re: MapActivity onTouchEvent

2008-04-02 Thread guzarva
On Apr 3, 4:20 am, wonderoid <[EMAIL PROTECTED]> wrote: > You could try overriding the dispathTouchEvent method, i think it's > called before onTouchEvent > > On 2 Nisan, 22:37, Alex B <[EMAIL PROTECTED]> wrote: > > > > > Hi, > > > Has anyone managed to override onTouchEvent within MapActivity?

[android-developers] Re: Line separator (between views/controls on activity page)

2008-04-02 Thread guzarva
On Apr 3, 5:59 am, Ram <[EMAIL PROTECTED]> wrote: > Thanks Romain guy. I'll go with your suggestion > > Btw Harish, ListView.setDivider sets the divider between individual > lines within the listview and wouldn't be applicable to a separator > between a listview and other controls. > > On Apr 2,

[android-developers] Re: Line separator (between views/controls on activity page)

2008-04-02 Thread guzarva
On Apr 3, 2:52 am, "Harsh Jain" <[EMAIL PROTECTED]> wrote: > You can do a ListView.setDivider(Drawable d). or ListView.setDividerHeight. > > > > On Thu, Apr 3, 2008 at 1:00 AM, Romain Guy <[EMAIL PROTECTED]> wrote: > > > It's actually pretty easy. Just use a View and give it a small height. > >

[android-developers] Re: Line separator (between views/controls on activity page)

2008-04-02 Thread guzarva
On Apr 3, 6:06 am, "Harsh Jain" <[EMAIL PROTECTED]> wrote: > my bad i didnt read ur posting properly. > > > > On Thu, Apr 3, 2008 at 4:29 AM, Ram <[EMAIL PROTECTED]> wrote: > > > Thanks Romain guy. I'll go with your suggestion > > > Btw Harish, ListView.setDivider sets the divider between indivi

[android-developers] Re: ListView - make no item focused on startup?

2008-04-02 Thread guzarva
On Apr 3, 1:40 am, Mark Wyszomierski <[EMAIL PROTECTED]> wrote: > Hi, > > In my ListView, the first list item always gets selected. Is there a > way to just have NO item in the listview selected at startup? > Something like setSelection(-1)? > > Thanks --~--~-~--~~~--

[android-developers] Re: efficiency question: ViewInflate used for rows of a listview

2008-04-02 Thread guzarva
On Apr 3, 1:35 am, Craig <[EMAIL PROTECTED]> wrote: > Is there a more efficient way to create rows for a listview other than > to use ViewInflate over and over?  Is there much of a performance gain > by creating the views programmatically rather than in xml (although I > do perfer the maintainab

[android-developers] Re: Ability to have chapters in video files

2008-04-02 Thread guzarva
On Apr 3, 12:10 am, Cheryl Sedota <[EMAIL PROTECTED]> wrote: > iMovie/iTunes gives users the ability to mark chapters in their video > files.  Will Android's media player or content provider expose an API > for obtaining chapter info/metadata in the future? --~--~-~--~~~-

[android-developers] Re: web service

2008-04-02 Thread guzarva
On Apr 2, 10:57 pm, nEgaTivo <[EMAIL PROTECTED]> wrote: > Guys, > > How can I connect with a web service??? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send emai

[android-developers] Re: JPEG Byte Array in a WebView

2008-04-02 Thread guzarva
On Apr 2, 11:24 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > After hacking around a bit, I found out what the issue is.  My base64 > string being sent is correct; I test this by directly encoding the > base64 string into html using where the complete jpeg is embedded in base64.  I teste

[android-developers] Re: How can I determine if app is running on the emulator or a device.

2008-04-02 Thread guzarva
On Apr 2, 11:50 pm, Agus <[EMAIL PROTECTED]> wrote: > correction: > /lib/ddms.bat > > > > On Wed, Apr 2, 2008 at 12:49 PM, Agus <[EMAIL PROTECTED]> wrote: > > from the dalvik debug monitor > >  run ddms.exe in /lib/tools directory > > >  On Wed, Apr 2, 2008 at 11:27 AM, Brendan <[EMAIL PROTECTED

[android-developers] Re: commitUpdates with ContentProvider.update / ContentProvider.delete issue/misunderstanding?

2008-04-02 Thread guzarva
On Apr 2, 10:26 pm, "Carl H." <[EMAIL PROTECTED]> wrote: > Hello, > > I am trying to write logs for ContentProvided data is created, updated > and deleted. Thus I added Log.i(MYLOG, "update") in my ContentProvider > class as follow: > >     @Override >     public int update(Uri url, ContentValue

[android-developers] Re: How to get pictures files?

2008-04-02 Thread guzarva
On Apr 3, 12:39 am, "Dan U." <[EMAIL PROTECTED]> wrote: > I believe where/how they are stored is really up to the person writing > the app that uses the camera. My guess is that apps will (hopefully) > provide content providers to access them. > > On Apr 2, 6:38 am, "arthur" <[EMAIL PROTECTED]>

[android-developers] Re: Unable to set the image on an ImageView in code

2008-04-02 Thread guzarva
On Apr 2, 9:04 pm, xingye <[EMAIL PROTECTED]> wrote: > My code > > ImageView iv = > (ImageView)convertView.findViewById(R.id.image); > // iv.setImageResource(R.drawable.badge); > Uri uri = Uri.parse("http://www.yexing.org/ > im

[android-developers] Re: OpenGL ES Frame Buffers

2008-04-02 Thread guzarva
On Apr 3, 2:25 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Thank you for your prompt reply. > > The refine my question, I'm trying what I read about in may other > posts: 2D image processing.  I've been using the code sample you > mentioned to try to render to a SurfaceView but have had

[android-developers] Re: How to change menu background and "More" button image?

2008-04-02 Thread guzarva
On Apr 2, 6:20 pm, bloodcarter <[EMAIL PROTECTED]> wrote: > How to work with IconMenuView? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-deve

[android-developers] Re: Resources in the base system theme

2008-04-02 Thread guzarva
On Apr 2, 5:52 pm, David Given <[EMAIL PROTECTED]> wrote: > I'm trying to make some custom user interface elements that mimic the > look of the standard user interface elements with some additional > features --- for example, I want to make a list that looks like the menu > you get with 'API Dem

[android-developers] Re: Cant created non-interactive ListView

2008-04-02 Thread guzarva
On Apr 3, 2:51 am, "Harsh Jain" <[EMAIL PROTECTED]> wrote: > I use the list view to display a constantly changing list of items from an > SQL table. Using ListView lets me use the cursor adapters which keep the > view in sync automatically. But I guess I will go with your suggestion as > using a

[android-developers] Re: Cant created non-interactive ListView

2008-04-02 Thread guzarva
On Apr 2, 5:33 pm, "Harsh Jain" <[EMAIL PROTECTED]> wrote: > Hi, >  I need to create a list view, which doesnt response to user interactions, > it should be non-clickable, and user should not be able to scroll through > it. > I tried the following >         ListView lv = getListView(); >        

[android-developers] Re: How can I play the remote media files in M5 sdk?if there is differences between audio and video ?

2008-04-02 Thread guzarva
On Apr 2, 4:14 pm, Vampire <[EMAIL PROTECTED]> wrote: > Hi everybody, >      I have tried to play the local media files using the code below. >                 mMediaplayer = > (VideoView)findViewById(R.id.video_view); >                // mMediaplayer.setVideoURI( Uri.parse( "http:// > daily3gp.

[android-developers] Re: web browser and dialog theme

2008-04-02 Thread guzarva
On Apr 2, 3:58 pm, dr123 <[EMAIL PROTECTED]> wrote: > Hi, > > I have an acivity which opens another floating activity which opens a > web browser intent. > After the back button from the webbrowser there is the floating > activity and beneath it there are the checkered squares and not the > firs

[android-developers] Re: How to connect to a server that runs on a localhost with the same eclipse program as the emulator?

2008-04-02 Thread guzarva
On Apr 2, 3:56 pm, "Dan U." <[EMAIL PROTECTED]> wrote: > Right, the emulator thinks localhost is itself. You should be able to > specify the actual ip address of your computer when you make a > connection. > > On Apr 2, 1:43 am, "E.D.I" <[EMAIL PROTECTED]> wrote: > > > > > How to connect to a se

[android-developers] Re: How to connect to a server that runs on a localhost with the same eclipse program as the emulator?

2008-04-02 Thread guzarva
On Apr 2, 6:08 pm, Digit <[EMAIL PROTECTED]> wrote: > within the emulator, address 10.0.2.2 is a special alias that connects > directly to your development machine's localhost (i.e. you r own 127.0.0.1) > > > > On Wed, Apr 2, 2008 at 10:56 AM, Dan U. <[EMAIL PROTECTED]> wrote: > > > Right, the e

[android-developers] Re: How to connect to a server that runs on a localhost with the same eclipse program as the emulator?

2008-04-02 Thread guzarva
On Apr 2, 3:43 pm, "E.D.I" <[EMAIL PROTECTED]> wrote: > How to connect to a server that runs on a localhost with the same > eclipse program as the emulator? > > i need the emulator to connect to a server > both of them are in the building process so they both > are running on the same eclipse fo