[android-developers] Porting Application project from Eclipse to Flash Builder

2011-09-13 Thread s.rawat
HI, Is it possible to port the application project from Eclipse to Flash Builder.I think Later has also the ndk support for building the native c code and building a shared library and linking it to the android code.In short can we develop the same android application in flash Builder. Rgds

[android-developers] webview onPause does not stop js setInterval

2011-09-13 Thread Xiaofen Qin
hi, dear all When I create a webview instance to load an url, which call setInterval in Js code, and call webview.onPause() in activity's onPause callback, however, the timer is still working when the webview.onPause() is invoked when the activity is finished. Is it a bug in sdk level 8? Anyone

Re: [android-developers] Fill a LinearLayout with an ArrayAdapter

2011-09-13 Thread Guillaume LACHAUD
My linear layout is in a scrollview Le 13 sept. 2011 00:01, TreKing treking...@gmail.com a écrit : On Mon, Sep 12, 2011 at 3:54 PM, Isambert guilo.gu...@gmail.com wrote: As I my LinearLayout will contain an undefined number of childs, I need to fill it dynamically. So as to ease this, I would

Re: [android-developers] Re: How to maintain session in Android

2011-09-13 Thread ANKUR GOEL
Hi, i am using one web view for login i want to be logged in for suppose 1 hour . but as i move to other activities and come back to web view the session is lost .. can u elaborate on this wht might be the case . i tried with cookies but that does not work . thanks' On Tue, Sep 13, 2011 at

[android-developers] Re: ocr

2011-09-13 Thread ko5tik
This one compiles, is pure java and contains android demo: http://sourceforge.net/projects/javaocr/ On Sep 12, 5:01 pm, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On 12 September 2011 15:56, Lwe luaisul...@gmail.com wrote: this is word-ocr

Re: [android-developers] I have met some problems when run test Android project

2011-09-13 Thread zheng wu
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.cieaura/com. cieaura.virtualoffice.activity.VOLogin}: java.lang.NullPointerException ,there is a error in you code. 2011/9/12 Bich Hong tranhong@gmail.com 09-12 13:57:32.966: WARN/dalvikvm(1047): threadid=1: thread

Re: [android-developers] How to create private folders in sdcard?

2011-09-13 Thread Amit Mangal
yes it is possible On Tue, Sep 13, 2011 at 1:00 PM, Shruthi Varma shruthi.tlis...@gmail.comwrote: Hi All, I have to store some images in a folder in sdcard and retreive back from my application. But I dont want to view those images in gallery. That means, I want to store images which is

[android-developers] How to create private folders in sdcard?

2011-09-13 Thread Shruthi Varma
Hi All, I have to store some images in a folder in sdcard and retreive back from my application. But I dont want to view those images in gallery. That means, I want to store images which is specific to that application itself. Is it possible. Regards, Shruthi. -- You received this message

Re: [android-developers] How to create private folders in sdcard?

2011-09-13 Thread Shruthi Varma
Then can you please help me out with an example. On Tue, Sep 13, 2011 at 1:05 PM, Amit Mangal forum.amit.man...@gmail.com wrote: yes it is possible On Tue, Sep 13, 2011 at 1:00 PM, Shruthi Varma shruthi.tlis...@gmail.com wrote: Hi All, I have to store some images in a folder in sdcard

[android-developers] Re: How to create private folders in sdcard?

2011-09-13 Thread Alessandro Pellizzari
Il Tue, 13 Sep 2011 13:15:49 +0530, Shruthi Varma ha scritto: Then can you please help me out with an example. Please quote the right way. Just create an empty file in your folder named .nomedia Don't forget the dot. Bye. -- You received this message because you are subscribed to the

[android-developers] Re: Need a gud UI designer for my project

2011-09-13 Thread Tushar Sahni
Hii I accept,, On Sep 12, 12:00 pm, pa1ani reverselibr...@gmail.com wrote: Hi I need a gud UI designer for my project.. Interested people can ping me.. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Plugin development for Gtalk

2011-09-13 Thread Anndy
Hi Guys, Is there a way supported for external community to extend the capabilities of gtalk by writing plugins for it? These plugins can use the currently active session of gtalk and help adding more and more capabilities to gtalk. ~Nitin -- You received this message because you are

Re: [android-developers] Plugin development for Gtalk

2011-09-13 Thread Marcin Orlowski
On 13 September 2011 10:13, Anndy see.n...@gmail.com wrote: Hi Guys, Is there a way supported for external community to extend the capabilities of gtalk by writing plugins for it? These plugins can use the currently active session of gtalk and help adding more and more capabilities to

[android-developers] Re: Problem loading an HTML asset in WebView

2011-09-13 Thread endyk
hello, may be you should use function load data with base url where your assets placed webview.loadDataWithBaseURL(file:///android_asset/ Shopping/, ... On Sep 12, 10:55 pm, darrinps darri...@gmail.com wrote: I have an asset that I am trying to load in WebView. If the same file is read

[android-developers] Re: Write assets

2011-09-13 Thread amon wu
My code snippets: 1. String filePath = file:///assets/android.txt; 2. OutputStream os= openFileOutput(filePath, MODE_WORLD_WRITEABLE); 3. OutputStreamWriter osw = new OutputStreamWriter(os); 4. outWriter.write(hello...); 5. outWriter.flush(); 6. outWriter.close(); The

Re: [android-developers] Write assets

2011-09-13 Thread Wenhua Li
Just in my understanding, the Assets should be defined in compiling stage and packed into APK file. So it should be read-only. On Tue, Sep 13, 2011 at 12:29 PM, amon wu amon.wu1...@gmail.com wrote: Hi, My case 1: I am trying to write a file into folder 'Assets' for a test, but I cannot do

Re: [android-developers] Dynamically loading code in Android application

2011-09-13 Thread Raffaele Sgarro
I'm only evaulating if it's viable.. My plan is to download the code from a server. What's the warning about code injection? 2011/9/13 بالقاسم الشريف b0592221...@gmail.com بتاريخ 2011 9 11 22:36، كتبها Raffaele Sgarro raffaelesga...@gmail.com : Is it possible to run code downloaded ar

[android-developers] Re: Problem loading an HTML asset in WebView

2011-09-13 Thread amon wu
The class AssetManager can open an inputstream from the folder assets. Well, Which class can open an outputstream from it? Thx, Amon On 9月13日, 下午4时37分, endyk nit...@gmail.com wrote: hello, may be you should use function load data with base url where your assets placed

Re: [android-developers] Re: How to maintain session in Android

2011-09-13 Thread Christopher
could you please send any sample code.. i want to maintain this session through out my application On Tue, Sep 13, 2011 at 10:55 AM, Ryan Mattison rmattis...@gmail.comwrote: Hey Christopher, There are a lot of ways. Simplest is to extend application, set this as your application in the

[android-developers] Re: Android audio control

2011-09-13 Thread Doug
What do you mean by manually control? Doug On Sep 10, 1:51 pm, 3ast jared.e...@gmail.com wrote: I am a beginner programmer in Android and I would like to create an app that will act as an audio control. The main goal is to be able to manually control the output of audio to the headset, or

Re: [android-developers] Re: How to create private folders in sdcard?

2011-09-13 Thread Marcin Orlowski
Then can you please help me out with an example. Please quote the right way Just create an empty file in your folder named .nomedia You are NOT making folder private. It just makes Gallery skipping. Other apps may ignore .nomedia file and still show the images. If you want data private you

[android-developers] Re: Problem loading an HTML asset in WebView

2011-09-13 Thread Zsolt Vasvari
We already answered you, but here it is again: ASSETS ARE READ ONLY. On Sep 13, 4:54 pm, amon wu amon.wu1...@gmail.com wrote: The class AssetManager can open an inputstream from the folder assets. Well, Which class can open an outputstream from it? Thx, Amon On 9月13日, 下午4时37分, endyk

[android-developers] soap webservice(xml pull parser exception )

2011-09-13 Thread arun kumar
Hi , am getting xml pull parser exception while consuming webservice from the sap server...PLZ any one tell me where am making the mistake.thanks in advance static StringBuilder sb; private static final String SOAP_ACTION =

[android-developers] Re: info about ARMV6 processor type and phone model

2011-09-13 Thread Doug
Android only gives you the ability to detect the platform ABI as armeabi or armeabi-v7a. You can also detect neon extensions to v7a. That's pretty much it, unless you want to take a non-standard unsupported approach. You should read the NDK docs for more info. Doug On Sep 10, 7:48 am,

Re: [android-developers] Re: How to create private folders in sdcard?

2011-09-13 Thread Shruthi Varma
But I am not supposed to store those images in my app folder as per my client's requirements. This is achievable in Iphone. On Tue, Sep 13, 2011 at 2:09 PM, Marcin Orlowski webnet.andr...@gmail.com wrote: Then can you please help me out with an example. Please quote the right way Just

[android-developers] How to delete tag in XmlSerializer when i remove from listview

2011-09-13 Thread Jhew SAN
package demo.weatherforecast.main; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import org.xmlpull.v1.XmlSerializer; import

[android-developers] SSL certificate error for authenticating the credentials

2011-09-13 Thread Atik
Hello friends i have a php webservice which checks with database for the username and password provided. when i run the following code i get 09-13 15:42:28.354: WARN/ System.err(593): javax.net.ssl.SSLPeerUnverifiedException: No peer certificate .. and my line HttpResponse res =

[android-developers] Re: Defining custom drawables in XML

2011-09-13 Thread Jean-Michel
Erm... I concede, this would create some security challenges, but it is a pity there is such a limitation. Being able to use custom drawables in the XML would certainly simplify the life of a lot of developpers. Thanks for your reply anyway. JM On Sep 12, 9:18 am, Romain Guy

Re: [android-developers] apk android 2.2 to 2.1

2011-09-13 Thread Marcin Orlowski
On 11 September 2011 08:32, puppystad maartenhond...@gmail.com wrote: Hy, I want to download use a android 2.2 app, but i have android 2.1. When i ll install the app ther is a parseer error. Is ther a converter from 2.2 to 2.1 apk? Yes. It's called firmware upgrade. Regards, Marcin

Re: [android-developers] Fill a LinearLayout with an ArrayAdapter

2011-09-13 Thread TreKing
On Tue, Sep 13, 2011 at 1:28 AM, Guillaume LACHAUD guilo.gu...@gmail.comwrote: My linear layout is in a scrollview So what? A ListView scrolls. - TreKing

Re: [android-developers] Re: Android Market - Allow Automatic Updating

2011-09-13 Thread TreKing
On Mon, Sep 12, 2011 at 5:45 PM, Mike Wendling mike.wendl...@gmail.comwrote: Impact on the wireless network. It makes a difference to the mobile operator. And why do you care? Or are you just curious?

[android-developers] How can I can open local files in the default Android browser?

2011-09-13 Thread venugopal reddy
Hi guys please help me below problem How can I can open local files in the default Android browser? I mean Just I Want to open one HTML file it is stored in my local system. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] How can I can open local files in the default Android browser?

2011-09-13 Thread Monzurul Islam Shamim
use 10.0.2.2 to access you local system. On Tue, Sep 13, 2011 at 4:43 PM, venugopal reddy venugopal.re...@tspl.comwrote: Hi guys please help me below problem How can I can open local files in the default Android browser? I mean Just I Want to open one HTML file it is stored in my local

[android-developers] Re: How to delete tag in XmlSerializer when i remove from listview

2011-09-13 Thread skink
On Sep 13, 12:13 pm, Jhew SAN tawisak.ruksu...@gmail.com wrote: Problem  ---    When i delete item in listview , How can i remove that tag in XmlSerializer in SD card ? Store your data in sqlite db rather than in xml file pskink -- You received this message because you are subscribed to

[android-developers] Re: Create videos for android market.

2011-09-13 Thread sblantipodi
the camera way is ugly and the screen capture software is too slow, it completely cut off the animations. Will we ever see a decent SDK with decent speeds? On Sep 13, 4:03 am, TreKing treking...@gmail.com wrote: On Mon, Sep 12, 2011 at 8:03 PM, sblantipodi perini.dav...@dpsoftware.orgwrote:

Re: [android-developers] Re: How to create private folders in sdcard?

2011-09-13 Thread Nikolay Elenkov
On Tue, Sep 13, 2011 at 6:38 PM, Shruthi Varma shruthi.tlis...@gmail.com wrote: But I am not supposed to store those images in my app folder as per my client's requirements. This is achievable in Iphone. I don't think the iPhone has an SD card, but if you say so. You can get a 'private'

[android-developers] How to implement chat application in android

2011-09-13 Thread Ratheesh Valamchuzhy
Hi All Plse share any ideas about implementing chat in android application... -- -- ωιтн яєgαя∂ѕ Ratheesh * *... -- 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] Re: How can I can open local files in the default Android browser?

2011-09-13 Thread android 4u
Read the local file from assets or raw folder into a string variable and then use web view to load it in a default web kit browser as shown below: String summary = htmlbodyYou scored b192/b points./body/ html; webview.loadData(summary, text/html, utf-8); On Sep 13, 3:47 pm, Monzurul Islam

[android-developers] Hi

2011-09-13 Thread Tushar Sahni
Hi all,,, I have developed an application that is made in android 3.2. The project contains 5 tabs and activity group.Is it possible for me to run the same code in android 3.2 ..? But when i run the code its crashing.Its working fine in android 2.1 and above... Is dere any solution in which

[android-developers] Re: Create videos for android market.

2011-09-13 Thread RichardC
Use a phone with a video out (there are quite a few available) and record it. On Sep 13, 11:53 am, sblantipodi perini.dav...@dpsoftware.org wrote: the camera way is ugly and the screen capture software is too slow, it completely cut off the animations. Will we ever see a decent SDK with decent

Re: [android-developers] how to auto install apk programmatic

2011-09-13 Thread Mark Murphy
On Mon, Sep 12, 2011 at 10:00 AM, Kamala kamala...@gmail.com wrote: I have two applications what i want when i install one application other one should be installed automatically. This is not possible. You can arrange for the first application to initiate a download and installation of the

[android-developers] Re: How to implement chat application in android

2011-09-13 Thread Ratheesh Valamchuzhy
NO ANSWER.?.. :) -- 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

Re: [android-developers] Re: Create videos for android market.

2011-09-13 Thread TreKing
On Tue, Sep 13, 2011 at 5:53 AM, sblantipodi perini.dav...@dpsoftware.orgwrote: the camera way is ugly and the screen capture software is too slow, it completely cut off the animations. You tried every single option you found?

Re: [android-developers] How to implement chat application in android

2011-09-13 Thread TreKing
On Tue, Sep 13, 2011 at 5:58 AM, Ratheesh Valamchuzhy android...@gmail.comwrote: Plse share any ideas about implementing chat in android application... Here are a few ideas. 1: Learn to spell please. 2: Try to solve your own problem. 3: If you can't, read this:

Re: [android-developers] itemizedOverlay, onTap

2011-09-13 Thread Logesh rajendren
you have only one activity in your manifest file . include the HelloItemizedOverlay activity in your manifest file. On Mon, Sep 12, 2011 at 12:30 AM, rochi pruebaenvioj...@gmail.com wrote: hello, I'm having problems with this code:

[android-developers] emulator: android.process.acore has stopped unexpectedly.

2011-09-13 Thread John Goche
Hello, I am having some problems with the various emulators. I am running 64-bit Windows 7 with the latest JDK SE 6 Update 27 and Eclipse 3.7.0 (Indigo) classic. I downloaded release 12 of the android sdk starter kit and installed the ADT plugin. I then installed several android SDKs and compiled

Re: [android-developers] itemizedOverlay, onTap

2011-09-13 Thread androidhub trainer
While creating the object of your class helloItemizedOverlay you are supposed to pass the current context. Use the constructor helloItemizedOverlay(Drawable defaultMarker, Context context). When you do this your context will not be null. On Mon, Sep 12, 2011 at 1:00 PM, rochi

Re: [android-developers] itemizedOverlay, onTap

2011-09-13 Thread androidhub trainer
While creating the object of your class helloItemizedOverlay you are supposed to pass the current context. Use the constructor helloItemizedOverlay(Drawable defaultMarker, Context context). When you do this your context will not be null. This constructor in turn is calling the super constructor.

[android-developers] How to make custom Spinner pop-up list radio button on Android

2011-09-13 Thread petr.maza...@mautilus.com
Hello, I am able to customize the Spinner widget drop-down background by specifying the drawable resource in the Spinner XML element: Spinner android:id=@+id/search_spinner android:layout_height=wrap_content android:layout_width=fill_parent android:background=@drawable/spinner_dropdown

Re: [android-developers] Hi

2011-09-13 Thread TreKing
On Tue, Sep 13, 2011 at 5:59 AM, Tushar Sahni tusharsahni...@gmail.comwrote: I have developed an application that is made in android 3.2. The project contains 5 tabs and activity group. You should not be using ActivityGroup. Use Fragments. Is it possible for me to run the same code in

[android-developers] Re: itemizedOverlay, onTap

2011-09-13 Thread android 4u
While creating the object of your class helloItemizedOverlay you are supposed to pass the current context. Use the constructor helloItemizedOverlay(Drawable defaultMarker, Context context). When you do this your context will not be null. This constructor in turn is calling the super constructor.

Re: [android-developers] How to make custom Spinner pop-up list radio button on Android

2011-09-13 Thread TreKing
On Tue, Sep 13, 2011 at 7:06 AM, petr.maza...@mautilus.com petr.maza...@mautilus.com wrote: How can I define the custom check mark - ideally by using styles/ themes for the whole application? I have tried many ways including this one, but nothing works. If anyone has the working example

[android-developers] Re: Memory Usage and Garbage Collection issues on 1.6 and 2.1

2011-09-13 Thread MarcoAndroid
To better understand/how to analyse memory usage, you probably want to check: http://android-developers.blogspot.com/2011/03/memory-analysis-for-android.html http://ttlnews.blogspot.com/2010/01/attacking-memory-problems-on-android.html

Re: [android-developers] emulator: android.process.acore has stopped unexpectedly.

2011-09-13 Thread Mark Murphy
On Tue, Sep 13, 2011 at 7:56 AM, John Goche johngoch...@googlemail.com wrote: P.S. Do all of these problems show up under Linux as well? They can. All of these are symptoms of a computer with either too slow of a CPU or insufficient RAM. What are the specifications of your development machine?

Re: [android-developers] ExpandableListView Question

2011-09-13 Thread TreKing
On Mon, Sep 12, 2011 at 10:02 PM, Ash anan...@gmail.com wrote: Is there way to get notified when all the items have been loaded and shown on the screen? Do whatever is taking so long in an AsyncTask. Show your progress dialog on start, do your work, then hide your dialog when the work is

Re: [android-developers] Re: Emulator Help

2011-09-13 Thread Amol Sharma
RAM is 3GB.it's working fine now...i reinstalled the things..and it's performance is improved !! -- Amol Sharma Third Year Student Computer Science and Engineering MNNIT Allahabad http://gplus.to/amolsharma99

Re: [android-developers] How can i write name city from listview into SD Card

2011-09-13 Thread TreKing
On Mon, Sep 12, 2011 at 9:43 PM, Jhew SAN tawisak.ruksu...@gmail.comwrote: How i can delete it in searchcity.xml in SD Card too ? Read your data from XML to memory, delete the entry in question, write it back. This is not Android-specific.

Re: [android-developers] How do I filter out applications from system packages

2011-09-13 Thread TreKing
On Mon, Sep 12, 2011 at 12:29 PM, Taranasus tarana...@gmail.com wrote: What can I do so that it doesn't exclude these apps that are somewhat essential to be in an application launcher but are already part of the Android OS? How do you define somewhat essential to be in an application

Re: [android-developers] Accessory Developer Kit on any phone running 2.3.4

2011-09-13 Thread TreKing
On Mon, Sep 12, 2011 at 11:15 AM, John Windberg jwindb...@gmail.com wrote: That ought be enough to get the accessory developer kit app working, but I'm getting messages about a missing library. Does anyone know what it really takes to get the adk demo app working? I don't, but posting the

[android-developers] Re: Why is the default to use dpi instead of screen size for drawables

2011-09-13 Thread ArcDroid
So it appears I need to have the same higher res images in drawable- hdpi and drawable-large buckets. This is going to make the install big if an app has many pictures. On Sep 10, 10:44 am, Dianne Hackborn hack...@android.com wrote: They are two completely different things. Please

[android-developers] Re: itemizedOverlay, onTap

2011-09-13 Thread Saket Agarwal
From what i understand mContext is never initialized in your code. Instead of doing itemizedOverlay = new helloItemizedOverlay(drawable); try, itemizedOverlay = new helloItemizedOverlay(drawable,getcontext); On Sep 12, 3:30 am, rochi pruebaenvioj...@gmail.com wrote: hello, I'm having

[android-developers] Communicating with widget

2011-09-13 Thread Vic
Hello I've been searching for some informations for few days and as I didn't found solution to my problem I'm writing here. I need to do a widget with one imagebutton. It displays green icon when a MyCommService is running and red icon when service is not ronning. When service is not running and I

[android-developers] Re: Is it possible to use MonkeyRunner from java

2011-09-13 Thread suman
Is the problem related to dispose() method of MonkeyDevice class resolved in ChimChat? If yes then where can I download the chimpchat.jar? Thanks Suman On Aug 23, 1:42 am, Bill Napier nap...@android.com wrote: We re-factored a bunch of code to take a lot of the MonkeyRunner source and make it

[android-developers] How to close ADBMonkeyDevice and iDevice classes if device is disconnected

2011-09-13 Thread suman
I am trying to close instances of ADBMonkeyDevice and IDevice classes by calling ADBMonkeyDevice.dispose() method. But this method always throws null pointer exception. I am disposing adbMonkeyDevice when my device is no longer attached. When device comes online again I can not create new instance

[android-developers] Using the Ringtone class

2011-09-13 Thread Antonio
Hi there, I've been trying to use the Ringtone class to ensure that I can play ringtones easily. So I'm using the Ringtone.play() method. The problem is that the Ringtone.play() method is static and the onCreate() method of an Activity is not, so it won't compile. How can I use it then? I feel

Re: [android-developers] Re: auto starting application after boot complete

2011-09-13 Thread jayaram p
Ash, You can try setting high priority to your intent-filter similar to the following snippet so that your application will be the first one to receive the BOOT_COMPLETED intent by which your application would avoid showing up Home screen in delta time intent-filter android:priority=*100*

[android-developers] SampleSyncAdapter synchronization interval

2011-09-13 Thread Claire Reynaud
Hi, I am trying out the SampleSyncAdapter application (android 2.2 API level 8), and I would like to know if it is possible to specify the synchronization interval programmatically. The SyncAdapter.onPerformSync method is only called when I select Sync Contacts in my SampleSyncAdapter account

[android-developers] Using chimpchat

2011-09-13 Thread suman
I have read on one of the Android groups that it is better ti use ChimpChat rather than using MonkeyRunner. I have downloaded chimpchat source and jar file. Till now I have not found any documentation or code sample on how to use it. Is it in a stable state to be used in my automation project.

Re: [android-developers] Using the Ringtone class

2011-09-13 Thread TreKing
On Tue, Sep 13, 2011 at 7:09 AM, Antonio chichim...@gmail.com wrote: The problem is that the Ringtone.play() method is static and the onCreate() method of an Activity is not, so it won't compile. How can I use it then? What have you tried that is not working?

[android-developers] Re: Why is the default to use dpi instead of screen size for drawables

2011-09-13 Thread RichardC
So it appears I need to have the same higher res images in drawable- hdpi and drawable-large buckets. NO Go back and read the docs On Sep 13, 2:02 pm, ArcDroid jacobrjohn...@gmail.com wrote: So it appears I need to have the same higher res images in drawable- hdpi and drawable-large

[android-developers] WebView takes up entire screen, I need it to fit in the remaining space of the layout.

2011-09-13 Thread MCON Dev
Hello All, I am trying to use Webview in a relative layout with a progress bar and some buttons. But as soon as I run webview.loadUrl(my path), the webview takes over the entire space. I need the webview to fit in the remaining space of my layout. Please help. code ?xml version=1.0

Re: [android-developers] WebView takes up entire screen, I need it to fit in the remaining space of the layout.

2011-09-13 Thread Mark Murphy
Try pressing the MENU button. If you see the options menu from the browser app, that's because you're in the browser app, and you are not looking at your WebView. That would be because the server issued a redirect, which you did not handle in shouldOverrideUrlLoading() of a WebViewClient. If,

[android-developers] Re: WebView takes up entire screen, I need it to fit in the remaining space of the layout.

2011-09-13 Thread IcedNet
WebView android:id=@+id/searchResultPages android:layout_below=@id/searchResultPages is a pretty good indication you are doing something wrong... Peace, Dan On Sep 13, 9:49 am, Mark Murphy mmur...@commonsware.com wrote: Try pressing the MENU button. If you see the options menu

[android-developers] Starting an Activity from a service and then passing through the backkey

2011-09-13 Thread Sanjay
Hi, I'm starting an Activity from a Service, something like the Whitepages Application. Now in the Activity, I don't want to use any key inputs like Back Key etc. However these keys should be passed to another application (pl. note this application is not started by my Service, instead it's the

[android-developers] Drawing errors during a shrink animation in Android 2.3.4

2011-09-13 Thread neuromit
I have 12 ImageButtons setup in a 3x4 grid. When the user clicks on an image button it grows to fill the screen, holds, and then shrinks down to its original location. The animation works except that when the button is shrinking it sometimes leaves lines behind. (I've attached images below). The

Re: [android-developers] info about ARMV6 processor type and phone model

2011-09-13 Thread David Turner
ARMv6 doesnt use the same VFP instruction set than ARMv7 (ARMv6 is VFPv2, while ARMv7 is VFPv3) The two are completely incompatible, I really doubt that Firefox is going to work on this device. On Sat, Sep 10, 2011 at 4:49 PM, netuser501 netuser...@gmail.com wrote: Hi, I'm looking for the

[android-developers] Re: SSL certificate error for authenticating the credentials

2011-09-13 Thread b0b
use this for your SSL factory: SSLSocketFactory sslFactory = SSLSocketFactory.getSocketFactory(); sslFactory.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER); But since you didn't specify a truststore with the certificate of the server, you'll probably have another error. --

[android-developers] MediaRecorder.start() fails

2011-09-13 Thread Matthew Fleming
Hi, I have the following ridiculously simple code which for some reason is not working: recorder = new MediaRecorder(); recorder.setAudioSource(MediaRecorder.AudioSource.MIC); recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);

[android-developers] Inapp Billing: Security best practices

2011-09-13 Thread androidmediadeveloper
We are integrating with market to provide inapp billing on our app. The implementation guide says for additional security, we can use a server to do the key verification process. This is so we dont bake the apk with the public key I suppose. Having a server side presence for us for right now is

Re: [android-developers] MediaRecorder.start() fails

2011-09-13 Thread Michael Banzon
I would try it on a device. The emulator usually makes audio handeling a pain (for me) and generally doesn't work (for me). On Tuesday, September 13, 2011, Matthew Fleming mgf...@gmail.com wrote: Hi, I have the following ridiculously simple code which for some reason is not working:

[android-developers] Re: MediaRecorder.start() fails

2011-09-13 Thread Matthew Fleming
Thanks, I will. I would have already, but don't have a device with me at the moment. Also, when I last played with audio recording -- which admittedly was some time ago -- I recall it did work on an AVD. Matthew Fleming On Sep 13, 10:58 am, Michael Banzon mich...@banzon.dk wrote: I would try it

Re: [android-developers] Re: Why is the default to use dpi instead of screen size for drawables

2011-09-13 Thread Dianne Hackborn
If you are writing drawable-large, you are almost certainly doing it wrong. On Tue, Sep 13, 2011 at 6:02 AM, ArcDroid jacobrjohn...@gmail.com wrote: So it appears I need to have the same higher res images in drawable- hdpi and drawable-large buckets. This is going to make the install big if

Re: [android-developers] Dynamically loading code in Android application

2011-09-13 Thread Kristopher Micinski
2011/9/13 Raffaele Sgarro raffaelesga...@gmail.com: I'm only evaulating if it's viable.. My plan is to download the code from a server. What's the warning about code injection? If you store it on SD card: it can happen. Kris -- You received this message because you are subscribed to the

Re: [android-developers] Re: auto starting application after boot complete

2011-09-13 Thread Dianne Hackborn
You can't do this. BOOT_COMPLETED isn't shown until the Launcher is running, so the user doesn't have to wait for the BOOT_COMPLETED broadcast to complete before they can use their device. On Mon, Sep 12, 2011 at 7:50 PM, Ash anan...@gmail.com wrote: It does not matter which lock screen the OS

[android-developers] Re: Create videos for android market.

2011-09-13 Thread sblantipodi
what do you mean? The only option I know is to record the phone screen, I don't like this way. The other option is to use a recording software but no one as far as I know is fast enough to record a smooth animation or transition. I'm searching for a solution. On Sep 13, 1:38 pm, TreKing

Re: [android-developers] Dialog dismiss()

2011-09-13 Thread Greg Donald
On Friday, September 9, 2011 10:44:24 PM UTC-5, TreKing wrote: At this point I'm going with setRequestedOrientation( ActivityInfo.SCREEN_ORIENTATION_PORTRAIT ); It's a sure thing. It's not Yup, it's not. I have crash logs (many of them, and for multiple resolutions) with

[android-developers] Scroll not working on 'div's with overflow:auto set

2011-09-13 Thread archana
Hi, In my web-application, we need to use the 'overflow:auto' property to enable scrolling in multi-page documents. Any scrolling functions from javascript stops working when a 'div' has the the overflow set to 'auto'. The scrolling starts working if the overflow is changed to 'hidden'. We

[android-developers] Need help for Android news alert program

2011-09-13 Thread Rathna Kumara Premadasa
Hi all, I've wanted to create a android application to display the news alerts which are recently updated using RSS feed from corresponding web sites.Actually I've already not any idea about that kind of project.Please help me to find a any tutorial or any path to get a help to my project. I

[android-developers] Re: Need a gud UI designer for my project

2011-09-13 Thread martypantsROK
sure. I'll do it - how much will you pay me? On Sep 12, 4:00 pm, pa1ani reverselibr...@gmail.com wrote: Hi I need a gud UI designer for my project.. Interested people can ping me.. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: Need a gud UI designer for my project

2011-09-13 Thread rambabu mareedu
hi ..we have a mobile apps dev company...if u r intrested then drop me a word to rambabu.mare...@gmail.com On Tue, Sep 13, 2011 at 10:39 AM, martypantsROK martyg...@gmail.com wrote: sure. I'll do it - how much will you pay me? On Sep 12, 4:00 pm, pa1ani reverselibr...@gmail.com wrote: Hi

[android-developers] Why is my ImageView (wrap_content) bigger than the Image itself?

2011-09-13 Thread Martin
Hi! I want to put a Button in a RelativeLayout on top of an Image and also at the bottom. The Image should be scaled with the scaletype centerInside. The ImageView has the height and width wrap_content. Why does the ImageView take more space than the image itself? Like this I cannot use the

[android-developers] Gallery View and SQLite database

2011-09-13 Thread Abhi
Hi all, I have a sqlite database of 100+ low res images saved as Blob data. I am creating an App that has a GalleryView and I would like to display the 100+ images from my database in this view. The user can scroll through the horizontally scrolling list and select the one he wants to see full

Re: [android-developers] Dialog dismiss()

2011-09-13 Thread Miguel Morales
It really isn't that hard. I went ahead and created a test project to show the way I'm doing it. I'll probably write a blog post about it. See: https://github.com/therevoltingx/android_orientation_test/blob/master/src/com/solrpg/orientation_test/DefaultActivity.java On Tue, Sep 13, 2011 at 9:50

[android-developers] Re: Textview from thread

2011-09-13 Thread Kristoffer
Thanks. Its now up and running with Handler On 10 Sep, 12:53, HideCheck hidech...@gmail.com wrote: You need to use the Handler. http://developer.android.com/reference/android/os/Handler.html Handler handler = new Handler(); ex)  public void run() {         handler.post(new Runnable() {

[android-developers] Re: Gallery View and SQLite database

2011-09-13 Thread lbendlin
There's a thing called The Google. Try it... http://www.tutorialforandroid.com/2009/10/how-to-insert-image-data-to-sqlite.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] Re: AccountManager.getAuthTokenByFeatures() with null authTokenType

2011-09-13 Thread richf
I realize this is a bit of an old thread, but this might be what you're looking for: http://code.google.com/apis/gdata/faq.html#clientlogin -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] emulator: android.process.acore has stopped unexpectedly.

2011-09-13 Thread John Goche
Thanks Mark Murphy for your reply, I am developing on a brand new Sony laptop with: - Intel Core i5-2410M CPU 2.30 GHz - 6 GB RAM Is this configuration not good enough? I need to solve this problem soon but don't know what I should do. Thank you for your help, John Goche On Tue, Sep 13,

[android-developers] Changing the scaled pixel size

2011-09-13 Thread Doug Gordon
In a number of places the documentation recommends specifying font sizes in sp (scaled pixels) because the size can then be adjusted by user preference. However, AFAIK there is no global way to do this. So if I want to allow users to increase or decrease the font size in my app, I assume that

[android-developers] Analytics Tracking

2011-09-13 Thread Mullins
Whilst trying to determine what is causing significant data on my Android device I noticed the following packet in Wireshark.

[android-developers] word wrapping

2011-09-13 Thread bob
Is there a way to make Eclipse do word wrapping? Do you all use word wrapping or no? -- 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,

  1   2   >