[android-developers] bottom of the page

2011-09-12 Thread bob
How do I scroll a Webview to the bottom of the page in API Level 7? -- 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 andro

Re: [android-developers] New Game Developer, need help starting

2011-09-12 Thread Mark Murphy
Agreed. Game development is fairly far removed from non-game development on most platforms, including Android. Most Android books -- mine included -- are focused on non-game development. I'd go for books and other resources more tuned to games. However, do watch the publication dates and the versi

Re: [android-developers] How to move map's zoome at the top right of the screen ?

2011-09-12 Thread Adam Ratana
And before you do this, think carefully about whether it is truly necessary to break the standard user experience pattern/expectations with maps implementations, where the zoom controls are where they are. Of course the new google maps app itself, has made smaller the zoom controls and aligned

[android-developers] Re: How can i remove item in listview

2011-09-12 Thread jjoe64
you have to delete the item in the content provider. set a notify url to your cursor and notify change from content provider after deleting. the list will automatically be updated. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Re: same app one tablet and phone with differnt gui

2011-09-12 Thread jjoe64
this is possible with a few tricks. have a look at my blog post: http://www.jjoe64.com/2011/07/universal-app-for-smartphones-and.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@

[android-developers] Re: Graphics in Android

2011-09-12 Thread blake
The Android GUI system is far simpler that Swing. It's more like a cleaned up AWT. It still has a pretty good stable of nifty widgets, but they certainly are not the same widgets you find in Swing-based UIs. The constraints on a mobile app GUI are, at least at the moment, different than those o

[android-developers] ocr

2011-09-12 Thread Lwe
this is word-ocr http://code.google.com/p/wordsnap-ocr/downloads/list but when i compile it they give me error , i don't know what it is help me -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-de

Re: [android-developers] ocr

2011-09-12 Thread Daniel Drozdzewski
On 12 September 2011 15:56, Lwe wrote: > this is word-ocr > http://code.google.com/p/wordsnap-ocr/downloads/list > but when i compile it they give me error , i don't know what it is > help me Ok, let me help you... trying to read your mind... still trying... still trying... still trying... #> t

[android-developers] Re: How can i remove item in listview

2011-09-12 Thread skink
On Sep 12, 9:11 am, Jhew SAN wrote: > This can remove only 1 row So you answered your question from the subject, didn't you? pskink -- 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

[android-developers] TD WIDTH attribute

2011-09-12 Thread bob
I can't seem to get the TD WIDTH attribute working in a WebView. Anyone know how to set a cell's width? -- 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

[android-developers] Re: Android 2.2 can only support 2 concurrent bluetooth connections?

2011-09-12 Thread novakom
Neil, My original implementation used a pool of 7 UUIDs, but since thats a nightmare to manage if you don't make activity limiting assumptions, I tried re-implementing based on a single UUID. My tests showed that I got the same behavior with 1 UUID or 7, so I ripped out the UUID management stuff.

[android-developers] Play video with based on orientation

2011-09-12 Thread ragupathi ragupathi
Hi every one, im new one for android. im developing one application that application getting videos from sd card and display thumbnail view. after user click any one video it will be play its working fine to me. but if that video file is taken from landscape means it will be play landscape, or

[android-developers] Voice recognition (buffered speech)

2011-09-12 Thread the_edge123
Hello, I want to decode a buffered speech to text. Is it possible to send it to a voice recognizer ? If not, is it possible to use the jsapi ? Thanks in advance, Fabien -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

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

2011-09-12 Thread darrinps
I have an asset that I am trying to load in WebView. If the same file is read from the SD card, all works fine, but I cannot read it when packaged as an asset. Here is the code WebView webview = new WebView(this); ((ViewGroup)findViewById(R.id.content)).addView(webview, 0); webview.getSettings(

[android-developers] How to send Post data with JSONString

2011-09-12 Thread Atif Musaddaq
Hi, I would like to send username and password with SERVICE_URL. do any one know how to send it, I am getting username and password from prefs. here is my code at the moment. String SERVICE_URL = "http://10.0.2.2/php_to_json.php";; String s = execHttpRequest(SERVICE_URL); final String[] items2 =

[android-developers] How to open & show large svg files on Android? (without errors)

2011-09-12 Thread saex
First of all, this question is similar to another but is not a duplicate, here i am truying to understand how to simply open and show large svg files without errors. The other question is munch more complicated and it is different from this. Are two different things. I tryed some libraries and che

Re: [android-developers] Play video with based on orientation

2011-09-12 Thread Robin Talwar
android:configChanges="keyboardHidden|orientation" add above in ur manifest for that particular activity On Mon, Sep 12, 2011 at 9:10 PM, ragupathi ragupathi wrote: > Hi every one, > im new one for android. im developing one application that > application getting videos from sd card and dis

[android-developers] Re: how to get LatLng from GPS (java code)?

2011-09-12 Thread Jeremy Dagorn
Hi, Step 1 : Open your favorite browser Step 2 : Write "how to get latitude and longitude in android" on Google Step 3 : Click on the first link Step 4 : You have your answer On Sep 10, 12:06 pm, Vey wrote: > Dear All, > > I try to find a java code to get LatLng from GPS on andoid phone. > if so

[android-developers] Anyone notice app usage trends by month?

2011-09-12 Thread pawpaw17
I've noticed a sharp drop off in the usage of my app starting in July. My app has been on the market for a couple of years, but I've only been tracking usage since last October. Anyone else notice any seasonal variation in app usage? I suspect it might relate to the new filters added to Android Mar

[android-developers] Re: Can i download directly a thumbnail of a picture in android

2011-09-12 Thread Jeremy Dagorn
Hi, To display a thumbnail version of your picture you could use the following : public Bitmap makeThumbnail(Bitmap bmp){ int newWidth = 100; int newHeight = 100; int width = bmp.getWidth(); int height = bmp.getHeight();

Re: [android-developers] Emulator invalid command-line parameter

2011-09-12 Thread Logesh rajendren
run the emulator in command prompt. On Sun, Sep 11, 2011 at 3:59 PM, Bhaskar Anand wrote: > I created a Sample Android Project in Eclipse with a successful AVD created > . But As I am trying to run the Project ,Console is throwing following sets > of Error > > [2011-09-12 04:14:18 - App1] --

[android-developers] how to start a activity using this menu structor

2011-09-12 Thread Raziel23x
I am trying to add a about menu to my application and this is my menu code I get a error when i add this to the code this.startActivity(intent("com.liquid.backgrounds.AboutDialog")); so I can launch my AboutDialog.java import android.view.Menu; import android.view.MenuItem; private static fin

Re: [android-developers] TD WIDTH attribute

2011-09-12 Thread Daniel Drozdzewski
On 12 September 2011 16:28, bob wrote: > I can't seem to get the TD WIDTH attribute working in a WebView. > Anyone know how to set a cell's width? 1) Use CSS. 2) Screen size and zoom level will affect, what you can see. -- Daniel Drozdzewski -- You received this message because you are subscr

[android-developers] How do I change Normal app icon in Market?

2011-09-12 Thread pawpaw17
Does anyone know how to change the standard icon used for my app in Android Market? I think it is pulling the icon from my app resources rather than the assets you add when you submit an app. Is that right? Which icons from the app are used in the market? Everything looks good in the web version of

Re: [android-developers] how to start a activity using this menu structor

2011-09-12 Thread TreKing
On Mon, Sep 12, 2011 at 11:27 AM, Raziel23x wrote: > I get a error when i add this to the code > You want us to guess what error you're getting? > this.startActivity(intent("com.liquid.backgrounds.AboutDialog")); > I'm guessing the error is related to the fact that this code will not compile.

Re: [android-developers] How do I change Normal app icon in Market?

2011-09-12 Thread TreKing
On Mon, Sep 12, 2011 at 11:38 AM, pawpaw17 wrote: > I think it is pulling the icon from my app resources rather than the assets > you add when you submit an app. Is that right? > The icon on the main app details page appears to be the High Resolution Icon. Besides that, yes, it's the app's icon

[android-developers] Re: Flash Nexus One with Gingerbread, from scratch

2011-09-12 Thread Howard M. Harte
Since Nexus One is a developer phone, I don't mind answering on this forum: Download the GRI40 update.zip from developer.htc.com, Unlock the bootloader with "fastboot own unlock" if you have not done so already. Then "fastboot update update.zip" where update.zip is the name of the GRI40 zip you do

Re: [android-developers] how to learn android?

2011-09-12 Thread Logesh rajendren
android pro development . On Sun, Sep 11, 2011 at 7:19 AM, felix wrote: > How to learn android well? > Can you tell me some books videos or other resource? > > thanks. > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to t

[android-developers] Re: Emulator invalid command-line parameter

2011-09-12 Thread Peter Phillips
Your emulator is installed in the "Program Files" folder and eclipse is having trouble running it because of the space in the file name: [2011-09-12 04:14:20 - Emulator] invalid command-line parameter: Files\Android\android-sdk\tools/emulator-arm.exe To fix it either re-install the SDK in a fol

[android-developers] Emulator invalid command-line parameter

2011-09-12 Thread Chris
Install your SDK in a path that doesn't have spaces, and update said path in Eclipse. If you need more info try searching Google for help. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develo

[android-developers] Re: ADT installation problems: cannot find org.eclipse.wst.sse.core

2011-09-12 Thread John Goche
OK, I found a solution. I simply had to do a: Help -> Install New Software... -> http://download.eclipse.org/eclipse/updates/3.7 and then was able to install the ADT. Regards, John Goche On Mon, Sep 12, 2011 at 6:39 PM, John Goche wrote: > > Hello, > > I am running Windows 7 (64-bit) with Ecl

[android-developers] Re: how to start a activity using this menu structor

2011-09-12 Thread Raziel23x
he method intent(String) is undefined for the type LiquidBackgroundsFreeActivity On Sep 12, 12:40 pm, TreKing wrote: > On Mon, Sep 12, 2011 at 11:27 AM, Raziel23x wrote: > > I get a error when i add this to the code > > You want us to guess what error you're getting? > > > this.startActivity(int

[android-developers] ADT installation problems: cannot find org.eclipse.wst.sse.core

2011-09-12 Thread John Goche
Hello, I am running Windows 7 (64-bit) with Eclipse Indigo classic, Java 6 SDK, and Android SDK and AVD Manager (installer_r12-windows.exe ). When I try to install the ADT in eclipse I get: Cannot complete the install because one or more req

[android-developers] Re: ADB could see Samsung Galaxy Tab 10.1 but now it can't!

2011-09-12 Thread RodneyJLambert
mellery451, Thanks but I did try that many times and it makes no difference. FYI today ADB can not see the Tab! For a system that never had a problem see the Tab for three months to suddenly not be able to see it something must have changed and I feel like it is on the Ubuntu side but I don't kn

Re: [android-developers] Re: how to start a activity using this menu structor

2011-09-12 Thread TreKing
On Mon, Sep 12, 2011 at 12:07 PM, Raziel23x wrote: > he method intent(String) is undefined for the > type LiquidBackgroundsFreeActivity > It sounds like you need to learn Java before you starting working on your Android App. Find a good book or tutorial and learn at least the basics of Java. Onc

[android-developers] Re: 9 patch png

2011-09-12 Thread Richard Lalancette
Simply use a 9-patch found on my blog to do your test :) Please enjoy free 9-Patch images found on my blog: http://android9patch.blogspot.com/ I also created an android app to browse, test and share 9-Patch Images: http://market.android.com/details?id=com.android9patch.viewer All images are free

[android-developers] How can I center an ImageView and TextView together?

2011-09-12 Thread Dan
I need to make a heading with an ImageView and TextView that are centered together, like the following diagram. (please use a monospaced font to see this diagram) | | |--- --| |-ImageView- -TextView-| |

Re: [android-developers] Help me with adding overlays in google maps

2011-09-12 Thread Logesh rajendren
i found the problem. the problem is actually in manifest file . i didnt include HelloItemizedOverlay activity in the manifest file. On Mon, Sep 5, 2011 at 8:20 AM, TreKing wrote: > On Mon, Sep 5, 2011 at 6:24 AM, Logesh rajendren wrote: > >> *When i execute this application , i m getting the fol

Re: [android-developers] Anyone notice app usage trends by month?

2011-09-12 Thread Michael Banzon
Do you mean app downloads/active installations or actual app usage? I have not seen decrease in any of those on any of my apps. I don't know how many apps actively track usage. On Mon, Sep 12, 2011 at 6:20 PM, pawpaw17 wrote: > I've noticed a sharp drop off in the usage of my app starting in Jul

[android-developers] HTML table width

2011-09-12 Thread bob
Whenever I set the width of a table to 100% using HTML in an Android WebView, Android makes a mess of the page. Anyone know about this? -- 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: [android-developers] HTML table width

2011-09-12 Thread Miguel Morales
I've used tables with width=100% just fine. You're probably doing something wrong. On Mon, Sep 12, 2011 at 11:49 AM, bob wrote: > Whenever I set the width of a table to 100% using HTML in an Android > WebView, Android makes a mess of the page.  Anyone know about this? > > -- > You received this m

[android-developers] Idiomatic way of getting count of items in content provider directory

2011-09-12 Thread goosedroid
For both writing a content provider, and using an existing one, what is the preferred way of getting the number of items in a directory? For example content://foo/bar I would like to know how many items are in bar. I could select all of the rows and then call Cursor.getCount() but that seems terr

[android-developers] Enable android:hardwareAccelerated, but build against a target earlier than 3.0

2011-09-12 Thread Tom
I want to enable hardware acceleration for my android app, but I still want to build against Android 2.1 (in order to make sure I don't accidentally rely on APIs introduced in 3.0, for example). Is there anyway to turn on a feature and still build against a version before it was introduced? I know

Re: [android-developers] AndRoid Application

2011-09-12 Thread Tom Opgenorth
Checkout Xamarin's Mono for Android: http://android.xamarin.com/ On Sat, Sep 10, 2011 at 02:47, abc xyz wrote: > can any one tall me how to develop Android Applications in DotNet > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To

Re: [android-developers] Re: How can i remove item in listview

2011-09-12 Thread Rafael Maas
why you are setting the adapter (again) inside your try and catch block? "try {

Re: [android-developers] Enable android:hardwareAccelerated, but build against a target earlier than 3.0

2011-09-12 Thread David Turner
That's the point of this attribute, just add android:hardwareAccelerated to your manifest. On platforms < 3.0, it will be ignored, on platforms >= 3.0, it will tell the system to use the hardware-accelerated canvas implementation (that provides the same API than the software based one). Just ensu

[android-developers] download update of unpublished app?

2011-09-12 Thread deveLoper
Hi, We had a version of our application written in Titanium on the Market that we wanted to submit natively. We were not able to submit the natively coded app as an update to the Titanium, so we submitted an update to the Titanium one with a pop up that alerted the users to download our new one wi

[android-developers] Is my brother authorized to buy and review my app?

2011-09-12 Thread sblantipodi
As title. Is my brother authorized to buy one license and review my app? Does this broke some google rules? I know that they are really restrictive with ad words, I don't want to have trouble. -- You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] Samsung Galaxy S2 (2.3.4) and Arduino ADK

2011-09-12 Thread hudvin
Is Arduino ADK compartible with SG s2? I have done all steps from http://developer.android.com/guide/topics/usb/adk.html but all I see is "Connect board" lable on main activity of DemoKit app. -- You received this message because you are subscribed to the Google Groups "Android Developers" group

[android-developers] Re: Download and attach andriod source to eclipse

2011-09-12 Thread joebowbeer
You can add Android sources to your Android projects in Eclipse by installing the (unofficial) Android source feature from update site: http://adt-addons.googlecode.com/svn/trunk/source/com.android.ide.eclipse.source.update/ After installing the Android source feature all your existing projects a

[android-developers] Fill a LinearLayout with an ArrayAdapter

2011-09-12 Thread Isambert
Hi ! As I my LinearLayout will contain an undefined number of childs, I need to fill it dynamically. So as to ease this, I would like to use an ArrayAdapter. What is the best way to achieve so ? Extending AdapterView ? If so, will I need to write the positionItems() methods or can I say that I

[android-developers] Re: How can I center an ImageView and TextView together?

2011-09-12 Thread Adam Ratana
My guess is you would want to try to enclose them in a containing view such as a LinearLayout, as far as the alignment/centering goes. As far as the scaling goes, maybe some more information on exactly what is driving this need would be helpful to offer any more advice on that. On Monday, Sept

[android-developers] Re: Is my brother authorized to buy and review my app?

2011-09-12 Thread sblantipodi
I would like to give it as present but I can't so the only option is to buy it On Sep 12, 10:16 pm, sblantipodi wrote: > As title. > > Is my brother authorized to buy one license and review my app? > > Does this broke some google rules? > I know that they are really restrictive with ad words, I d

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 22 Topics

2011-09-12 Thread Pier Gagné
hi i seach a librairy for to make a wms client, do you have suggestion. From: android-developers@googlegroups.com Sent: Monday, September 12, 2011 3:47 PM To: Digest Recipients Subject: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 22 Topics Today's

Re: [android-developers] Is my brother authorized to buy and review my app?

2011-09-12 Thread TreKing
On Mon, Sep 12, 2011 at 3:16 PM, sblantipodi wrote: > Is my brother authorized to buy one license and review my app? Why not and who would know even if he wasn't? - TreKing

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

2011-09-12 Thread TreKing
On Mon, Sep 12, 2011 at 3:54 PM, Isambert 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 like to use an > ArrayAdapter. What is the best way to achieve so ? Use ListView. ---

[android-developers] Re: How can I center an ImageView and TextView together?

2011-09-12 Thread Dan
The design requirements of the application are why I have to have an Image and Text centered on the top of the screen. On Sep 12, 2:07 pm, Adam Ratana wrote: > My guess is you would want to try to enclose them in a containing view such > as a LinearLayout, as far as the alignment/centering goes.

[android-developers] Bluetooth Dev Guide and BluetoothAdapter Javadoc have conflicting information

2011-09-12 Thread Dan
The Bluetooth Dev Guide http://developer.android.com/guide/topics/wireless/bluetooth.html#Ena... and BluetoothAdapter http://developer.android.com/reference/android/bluetooth/BluetoothAda... Javadoc have conflicting information about Bluetooth discoverable lengths, I was wondering if I could get s

Re: [android-developers] download update of unpublished app?

2011-09-12 Thread TreKing
On Mon, Sep 12, 2011 at 3:15 PM, deveLoper wrote: > Here is my question: if we unpublish the Titanium version that is on the > market, will the users that currently have the Titanium version that have > not updated their apps still be alerted of the update? > >From what I can tell: no. If you un

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

2011-09-12 Thread Mike Wendling
Impact on the wireless network. It makes a difference to the mobile operator. On Sep 12, 3:32 am, TreKing wrote: > On Fri, Sep 9, 2011 at 3:24 PM, Mike Wendling wrote: > > > Does anyone know if automatic upgrades are done on any sort of a schedule, > > delay, etc? > > You're never going to get

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

2011-09-12 Thread Ash
No. Let me explain again. I have not modified the firmware. All I have done is registered my app to receive a broadcast message once the system boot up is complete. When I receive this message, my application auto-starts in full-screen mode. The issue is that there is a 1-2 second window whereb

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

2011-09-12 Thread Kristopher Micinski
Ah, yes, your toolchain generates a classes.dex file in the output directory. And yes, it is created by the suite of dx etc... however to load it in you will want the dexclassloader. How did you plan to distribute the code? Heed the warning about code injection :-). (From phone) Kris On Sep 12, 2

[android-developers] Re: Download and attach andriod source to eclipse

2011-09-12 Thread Anky
Thanks Joe. It has worked for me and was fairly simple. As of now I can start using 2.3.3. Regards, Anky On Sep 12, 4:49 pm, joebowbeer wrote: > You can add Android sources to your Android projects in Eclipse by > installing the (unofficial) Android source feature from update site: > > http://ad

[android-developers] Create videos for android market.

2011-09-12 Thread sblantipodi
Hi all... I would like to create a video of my apps running to show its features. The SDK is too slow to make a decent video, how can I do it? How do you do it? Thanks. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] Re: need help with weird table

2011-09-12 Thread Russell DuRoss
I had a similar need and ended up building my own grid layout dynamically, using textviews with listviews within a vertical scroll view within a horizontal scroll view. By putting a listview inside the horizontal scroll view but outside the vertical scroll view I got column headers that didn't scr

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

2011-09-12 Thread Michael Banzon
With a camera. On Tue, Sep 13, 2011 at 3:03 AM, sblantipodi wrote: > Hi all... > > I would like to create a video of my apps running to show its > features. > The SDK is too slow to make a decent video, how can I do it? > How do you do it? > > Thanks. > > -- > You received this message because yo

Re: [android-developers] How to send Post data with JSONString

2011-09-12 Thread Francisco Dalla Rosa soares
Hello, Try checking out this link: http://hc.apache.org/httpcomponents-client-ga/httpclient/examples/org/apache/http/examples/client/ClientFormLogin.java for an example on how to do a POST using Apache HTTP Components 2011/9/13 Atif Musaddaq > Hi, > > I would like to send username and password

Re: [android-developers] Re: Is my brother authorized to buy and review my app?

2011-09-12 Thread Christopher Van Kirk
Doesn't make sense. If you developed the app, then presumably you are able to generate an APK installer of it. If you can do that then you can mail it to him, and he can side load on his device, and once installed he can play it to his hearts content. That doesn't appear to be your intention, t

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

2011-09-12 Thread Mark Murphy
Just for grins, try all lowercase (shopping) instead of mixed case (Shopping). On Mon, Sep 12, 2011 at 11:55 AM, darrinps wrote: > I have an asset that I am trying to load in WebView. If the same file > is read from the SD card, all works fine, but I cannot read it when > packaged as an asset. >

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

2011-09-12 Thread gjs
Hi, Is it not the case that the user can setup different lock screens, none, pattern, pin & password - in Settings ? Do you wish to bypass these as well ? Just suggesting you quest may be futile unless you use a custom firmware. Regards On Sep 13, 9:34 am, Ash wrote: > No. Let me explain again.

[android-developers] Re: how to learn android?

2011-09-12 Thread davemac
We've received quite a few very good reviews of Pro Android 3 (Apress). I'm a co-author along with Satya Komatineni. Available in print and ebook formats here: http://www.apress.com/9781430232223 and at Amazon: http://www.amazon.com/Pro-Android-3-Satya-Komatineni/dp/1430232226 This is probably th

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

2011-09-12 Thread TreKing
On Mon, Sep 12, 2011 at 8:03 PM, sblantipodi wrote: > The SDK is too slow to make a decent video, how can I do it? > How do you do it? > I googled "free screen capture software" - TreKing

[android-developers] Re: Android 2.2 can only support 2 concurrent bluetooth connections?

2011-09-12 Thread gjs
Hi, I can't confirm it is just 2.2 but I have had similar experiences & I have not been able to get more than four phones to connect via bluetooth reliably on any version of Android in a single server many clients arrangement. I have not tried a daisy chain configuration where each phone just conn

[android-developers] authentication

2011-09-12 Thread arun kumar
Hi, i have to connect to the sap server...i got the user name and password at the server side... final String username = "arun"; final String password = "kumar"; Authenticator.setDefault(new Authenticator() { protected PasswordAuthentication getPasswordAuthen

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

2011-09-12 Thread Ash
It does not matter which lock screen the OS is set to. The issue here is that there is a delay of about 1-2 seconds before my application gets notified that the boot sequence is completed and that delay is enough for the Android screen to be shown. My intention is that when the device is powere

[android-developers] getWritableDatabase always throws Exception on database upgrade for certain Android versions

2011-09-12 Thread pawpaw17
Guys, I'm still pulling my hair out trying to figure out what is up with this issue. Many of my users report the following exception when I try to upgrade my onboard database - a database that I create offline and ship int he assets of my app: android.database.sqlite.SQLiteException: Can't downgr

[android-developers] ExpandableListView Question

2011-09-12 Thread Ash
Hi All, In my application I have a ExpandableListView and x number of buttons. Each button when clicked presents a different list view. Some lists have a lot of items and thus there can be about 1/2-1 second delay before the items are displayed on the screen. When the button is clicked, I have

Re: [android-developers] Re: Android 2.2 can only support 2 concurrent bluetooth connections?

2011-09-12 Thread Kristopher Micinski
Yeah, I'd second that, talking to n>3 devices has been pretty tough for me. With 2.2 I was barely able to get 3 to connect most of the time, extremely difficult, and very unreliable. Pushing it to four was possible perhaps once, though extremely unstable? As for your rfcomm question, I'm unsure,

[android-developers] Re: Stagefright Audio Looping issue

2011-09-12 Thread newbyca
i'm seeing the same thing, not sure why no one's replied yet? ... relatively significant issue and no way we're the only ones seeing it. from what i can tell, the issue is only effecting dual-core devices running gingerbread or greater. On Jul 30, 9:43 am, csyperski wrote: > Is anyone else hav

[android-developers] Write assets

2011-09-12 Thread amon wu
Hi, My case 1: I am trying to write a file into folder 'Assets' for a test, but I cannot do it. My case 2: I write the into sdcard , then copy it to the folder, and I still fail. Can you give me some advice? thx && base regards, Amon -- You received this message because you are subscribed to

[android-developers] How to maintain session in Android

2011-09-12 Thread christopher
hi I want to maintain user details using session in Android, Please tell me how to maintain session in android -- 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 unsu

[android-developers] Re: How can I center an ImageView and TextView together?

2011-09-12 Thread android 4u
Hi Dan, Not sure though, but would the following help you: http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> strin

[android-developers] Google Android Training- Batch starting Sep25,2011

2011-09-12 Thread android 4u
Follow us on Twitter- androidhub4u. Subscribe to our blog at- http://androidhub.wordpress.com/ This Android course is a interactive, hands-on training which provides you a complete overview of the Android platform and how to make the most of your application development. The curriculum is develope

[android-developers] Adobe Reader

2011-09-12 Thread bhargavi
HI. I have installed Adobe Reader 10.0.2 apk on my emulator for GingerBread .I am able to open the files and do operations like searching,scrolling etc..but when i am opening the file which contains pictures it is taking time..Does Adobe Reader uses open Gl to display images or where does exact

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

2011-09-12 Thread بالقاسم الشريف
بتاريخ 2011 9 11 22:36، كتبها "Raffaele Sgarro" : > Is it possible to run code downloaded ar runtime? Something like > > new URLClassLoader(myURL).loadClass("MyClassName") > > The class code will be in a JAR archive. The question is how do I compile > and package that code? I think Dalvik cannot ex

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

2011-09-12 Thread 송원종
On Sep 12, 2011 7:32 PM, "TreKing" wrote: > On Fri, Sep 9, 2011 at 3:24 PM, Mike Wendling wrote: > >> Does anyone know if automatic upgrades are done on any sort of a schedule, >> delay, etc? >> > > You're never going to get any answer to questions on how the Android Market > works in this group.

[android-developers] how can i create an option menu button at status bar

2011-09-12 Thread huangtiejun
Hi,All How can i create an option menu button at status bar, The cell like button after [Recent Apps] . Thanks for your time. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-devel

[android-developers] NFC UICC Secure Element Access

2011-09-12 Thread Rob
Hi All, Thanks to much great help here from posters on this group, I've managed to get access to the Secure Element on the Nexus S in a form of card emulation (Mifare 4K). However, my main aim is to make use if an NFC enabled UICC SIM card that I have. For this, I compiled the current Android so

[android-developers] Re: New Game Developer, need help starting

2011-09-12 Thread Kinnerton
Take a look at something like Lunar Lander (comes with your Android SDK) and poke around. I should point out (before everyone who has ever looked at it jumps down my throat) that you should search 'How To Fix Android Lunar Lander' on the web - as it does have some flaws. (Or take a look at http://

[android-developers] Android Wallpaper Crops Image

2011-09-12 Thread Kathy
I am working on a simple wallpaper app of some images that I have. They are .png files in drawable folders. Here are some code snippets: WallpaperManager myWallpaperManager = WallpaperManager.getInstance(getApplicationContext()); myWallpaperManager.setResource(R.drawable.image1); No matter

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

2011-09-12 Thread pa1ani
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 email to android-developers@googlegroups.com To unsubscribe from this group, send email

[android-developers] Unblock Raghav Dwivedi

2011-09-12 Thread amit puri
Hello Admin, I am new to the group and being referred to this by one of my colleague to share knowledge and Ideas with this Group. I am glad and excited to know about this group. Can You Please Unblock *raghav.hello@ gmail.com* and the mail that came from *Raghav Dwivedi(raghav.he...@gmail.com*) w

[android-developers] help

2011-09-12 Thread Craig Sparks
Im about to get screwed by corporate america and bad business partners. Phonesnake.com is a idea to reduce theft, violent crimes related to theft, and lower insurance costs, and consumer good costs. By tracking serial numbers. I want it to be a non-profit. To help benifit the communities. The devel

Re: [android-developers] New Game Developer, need help starting

2011-09-12 Thread Lucas de Jesus Matias
I'm currently reading Beginning Android Games Development [2] I'm reading the official Android developer website at same time ^^. 2011/9/12 Nico Balestra > I'm currently reading Beginning Android Games Development (Mario Zechner) > but only after reading the official Android developer website.

[android-developers] how to auto install apk programmatic

2011-09-12 Thread Kamala
I have two applications what i want when i install one application other one should be installed automatically. Can you help me with example ..? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to an

[android-developers] itemizedOverlay, onTap

2011-09-12 Thread rochi
hello, I'm having problems with this code: http://developer.android.com/resources/tutorials/views/hello-mapview.html In main.xml I have: http://schemas.android.com/apk/res/ android" android:id="@+id/mainlayout" android:orientation="vertical" android:layout_width="fill_parent" a

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

2011-09-12 Thread sivaatwork
Hi, I am trying to build a app for our Galaxy Tab which is more of a monitoring app. So the app should always be running and if it device crashes it should start by itself. Can you let me know if this can be done through code or configuration in the application itself. Any code samples will be

[android-developers] Surface Created never called and so the thread never runs?

2011-09-12 Thread ruchira
I have been struggling with this issue since a long time.I am a newbie to android. I have done all the homework and gone through all the topics related to my issues but it did not help. My app code is based on lunar lander with modifications. I have got a splash screen which then displays a menu s

[android-developers] Re: New Game Developer, need help starting

2011-09-12 Thread Oli
I can heartily recommend Mario's book if you're starting with an existing knowledge of developing in Java so need to learn some of the ideas behind writing a basic game framework. I've also found libgdx incredibly handy, although it's worth checking out AndEngine as well. Given your question rega

[android-developers] apk android 2.2 to 2.1

2011-09-12 Thread puppystad
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? Thanx -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

<    1   2   3   >