[android-developers] Re: Android book for learners

2012-03-11 Thread Chuck Krutsinger
This is a good book, Beginning Android 3: http://www.amazon.com/Beginning-Android-3-Mark-Murphy/dp/1430232978 There is also a Beginning Android 4 and Advanced Android 3 and 4 from the same author. On Mar 9, 11:48 pm, pandey praveen@gmail.com wrote: Hi ,     I am new to android and I have

Re: [android-developers] Re: Android book for learners

2012-03-11 Thread James Black
If you have been working as a developer for 4 months, what in particular are you trying to learn about from a book? On Sun, Mar 11, 2012 at 10:48 PM, Chuck Krutsinger chuck.krutsin...@gmail.com wrote: This is a good book, Beginning Android 3:

Re: [android-developers] Re: Android compatibility clarification

2012-03-11 Thread James Black
I use this: uses-sdk android:minSdkVersion=4 android:targetSdkVersion=15 / in my manifest, so that it can work on older versions, but it will use the newer UI if available. http://developer.android.com/guide/topics/manifest/uses-sdk-element.html On Sun, Mar 11, 2012 at 10:46

Re: [android-developers] Re: finding the java sdk

2012-03-11 Thread James Black
It won't be in your java directory, it will be installed in it's own directory. On Sun, Mar 11, 2012 at 10:42 PM, Chuck Krutsinger chuck.krutsin...@gmail.com wrote: Download the Java JDK at http://www.oracle.com/technetwork/java/javase/downloads/index.html. Follow the instructions posted

Re: [android-developers] bluetooth porting, hciattach

2012-03-11 Thread vijay Badawadagi
you will need the hciattach service anyway. but i believe the hciattach needs to be started something like this service hciattach /system/bin/hciattach /dev/ttyUSB0 . so insead of ttys dev node it will be ttyUSB dev node Thanks Vijay On Fri, Mar 9, 2012 at 7:24 AM, enming xie

Re: [android-developers] Android book for learners

2012-03-11 Thread Kristopher Micinski
I can personally recommend Mark Murphy's books. They're great as everything from tutorials to resources for development. The way Mr. Murphy distributes his books also means that they are very up to date, and he's constantly answering questions and improving his material. To be short, for $40 a

Re: [android-developers] Re: java.net.UnknownHostException: api.linkedin.com while trying to use sociallib in my app ?

2012-03-11 Thread James Black
It appears that url is no longer valid, so you may want to clone the repository (which you may already have done) and perhaps find the correct URL or remove the need for it. On Sun, Mar 11, 2012 at 9:31 PM, Walaa Mahmoud walaamahmou...@gmail.comwrote: Yeah i have internet permission in manifest

Re: [android-developers] device testing on iOS app port

2012-03-11 Thread James Black
It depends on what your application does. For example, if you don't need the camera or GPS you may be able to get away with using the emulator for some devices. What are you targeting and what features are you going to need? On Fri, Mar 9, 2012 at 4:53 AM, Miles Egan milese...@gmail.com wrote:

Re: [android-developers] Simple chess engine

2012-03-11 Thread James Black
Why not just write your own, since it won't be used for chess games? You may want to look for some open source java chess games, to see what may meet your needs. I found this one with a quick search: http://www.chesspresso.org/ On Sat, Mar 10, 2012 at 12:02 PM, onur formula...@gmail.com wrote:

Re: [android-developers] Suspend from market?

2012-03-11 Thread James Black
I have never got a suspension, but on this page they have an example of a message that would seem more likely to be legit, though I don't know anything about the merits of the issue on this page, just looking at the suspension email:

Re: [android-developers] Stack overflow error in android - help needed to execute

2012-03-11 Thread James Black
Have you looked in the referenced eclipse log file? On Sun, Mar 11, 2012 at 6:42 PM, Karthick Siva karthicksiv...@gmail.comwrote: i get a stack overflow error while trying to draw a qr code in canvas, saying unable to create .dex file and prompting to close eclipse, even i changed memory in

[android-developers] Re: Tutorial Needed

2012-03-11 Thread Thomas
Try looking at http://thenewboston.org/index.php Android tutorials. They have an detailed approach to the subject. Best, Tom B On Mar 10, 11:14 pm, rayhan rayha...@gmail.com wrote: Now i am learning android developing.I want to know that where i can get tutorial from basic to advance level to

[android-developers] MediaRecorder.start fails

2012-03-11 Thread mgah
Does anyone know why MediaRecorder.start() returns start failed -2147483648? I followed the state machine in the Camera description and I am able to see the camera on my phone but when I start to record, i get that error. Any ideas? Thanks -- You received this message because you are

[android-developers] Problems with scroll view and orientation

2012-03-11 Thread Put_tiMe
I have a ScrollView. If the orientation is changed, then it's scroll position is automatically changing. Is there any way to switch off automatic scrolling? If I use any other view, like LinearLayout, then it works fine (except there is no manual scrolling also) -- You received this

[android-developers] Extending ScrollView

2012-03-11 Thread Put_tiMe
I might have to extend ScrollView and I would like to call it *myScrollView* . Is it possible to specify this *myScrollView* in the XML file itself? Or can it be done only programmatically? If it can be done only through code, then, can I squeeze in a layout specified in the XML file into

Re: [android-developers] device testing on iOS app port

2012-03-11 Thread Anirudh Loya
It all depends on your Application. On Mon, Mar 12, 2012 at 8:47 AM, James Black planiturth...@gmail.comwrote: It depends on what your application does. For example, if you don't need the camera or GPS you may be able to get away with using the emulator for some devices. What are you

[android-developers] Help me to Bluetooth

2012-03-11 Thread Thusitha Fernando
Dear All I have a problem, I write a code for blue tooth printing , after one printing bluetooth connection loss how can I solve that . -- තුසිත අසන්ත ප්‍රනාන්දු -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] [Android - developers] Exponential Smoothing on Latitude and Langitude

2012-03-11 Thread concave
Hi guys, i've a little problem here. I'm working with gps data, getting values every second and displaying current position on a map. The problem is that sometimes (specially when im using the app on indoor and not make a move) the values vary a lot, making the current position to change. I was

[android-developers] interval between invalidate/similar method call

2012-03-11 Thread dara kok
interval between invalidate call what is the refresh interval between each call to invalidate or similar method? according to Android documentation, in one second, android device can draw up to 50 times per second. In my example, if i wan to animate an object on x-coordinate from point A to B

[android-developers] API for spherical to planar projection?

2012-03-11 Thread jakob t
Hi! I need to project altitude azimuth coordinates to screen coordinates x,y. Checking around but can't find anything spot on. The closest right now is stereographic projection that preserves angels. Is there any api out there? What I want to achieve is something like google sky app, anybody

[android-developers] Android phone's hardware Back button

2012-03-11 Thread Anirudh Loya
Hi Guys, Off late i was trying to make Android Phone's Hardware back button according to my application logic but was not successful. Can anyone help me out.. Thank you Anirudh Loya | Android Developer** Desk: +9140-30681824 | Mobile: +91*9246561265* *The lingering question - WHAT

[android-developers] Re: Android phone's hardware Back button

2012-03-11 Thread Anirudh Loya
onBackPressed() is not working as expected.. Any other way ? On Sun, Mar 11, 2012 at 2:52 PM, Anirudh Loya loya.anir...@gmail.comwrote: Hi Guys, Off late i was trying to make Android Phone's Hardware back button according to my application logic but was not successful. Can anyone help me

[android-developers] Re: Android phone's hardware Back button

2012-03-11 Thread Anirudh Loya
Got the output !! Thanks !! On Sun, Mar 11, 2012 at 2:57 PM, Anirudh Loya loya.anir...@gmail.comwrote: onBackPressed() is not working as expected.. Any other way ? On Sun, Mar 11, 2012 at 2:52 PM, Anirudh Loya loya.anir...@gmail.comwrote: Hi Guys, Off late i was trying to make Android

[android-developers] Re: Android Game Programming help

2012-03-11 Thread Oli Wright
I had replied but it didn't submit for some reason. Oh well. It boiled down to: 1. What Kris said 2. Read Mario Zechner's book Beginning Android Games 3. Until you've done (2) I don't buy Most of the links given by the group are links and sources i've gone through before. If you still don't

[android-developers] Help with Javascript from html

2012-03-11 Thread Tunarock
Hello, i explain my situation: I have an application that connects a web page to collect html information. Part of this information is generate via Javascript, particularly i need to get a map with all of his overlay. That map is create dinamically after a research direction. I think about

[android-developers] Open KML/KMZ File Links in Google Earth

2012-03-11 Thread mduffy215
I tried to open a KML link in my android app. My expectation was that Google Earth would open and the KML file would be displayed. Instead, I saw a text version of the KML file. Is there some manifest entry I need to set for permission? Why isn't this magically simple? Mike -- You received

Re: [android-developers] Re: Implementing onShowCustomView on Android 3.1 throws in HTML5VideoFullScreen

2012-03-11 Thread Varun Tewari
One problem i am facing currently is upon second launch of media player application is getting crashed because i have not stopped playback and released Media player. As VideoSurfaceView object, which we get in onShowCustomView function from 3.0 OS, are specific to browser and not a VideoView

Re: [android-developers] sticky radio button (solved)

2012-03-11 Thread Ray Tayek
At 04:25 AM 3/9/2012, you wrote: hi, the radio buttons work fine. except for the second. when i click on that one, it gets stuck and won't uncheck. please see small self contained code sample below. i am using 4.0.3. the radio buttons were in a group that had the same id as one of the radio

[android-developers] Xml parsing issue

2012-03-11 Thread hazem omies
i implement xml parsing from http Request ,,i have a problem with parsing this structure xml as follow: Services item sample1/sample sample2/sample . . . . . .

Re: [android-developers] How to read the large sized text file

2012-03-11 Thread TreKing
On Fri, Mar 9, 2012 at 9:21 PM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: Please suggest me what should I do in this case in order to solve my problem. Provide the details of the exception: the message and stack trace, at the every least. And the sample code that calls it.

Re: [android-developers] Taxmob

2012-03-11 Thread TreKing
On Sat, Mar 10, 2012 at 12:34 PM, bob b...@coolfone.comze.com wrote: Does anyone know what to do about taxes for Admob income for U.S. people? Does Admob send you some kind of tax form or something? Contact an accountant or AdMod. Once again your question has absolutely nothing to do with

[android-developers] I can't get a Jpeg callback

2012-03-11 Thread Robert Young
Hello all, I have the following code that gets called from my main activity to capture a full Frame Image with the camera. I've tried many differnt combinations of callback requests, but I NEVER get a Jepeg Callback. // ** public void

Re: [android-developers] How to read the large sized text file

2012-03-11 Thread Narendra Singh Rathore
On Sun, Mar 11, 2012 at 9:30 PM, TreKing treking...@gmail.com wrote: On Fri, Mar 9, 2012 at 9:21 PM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: Please suggest me what should I do in this case in order to solve my problem. Provide the details of the exception: the message and

[android-developers] Why can't I get a Jpeg Callback

2012-03-11 Thread Robert Young
Hello all, I have the following code that gets called from my main activity to capture a full Frame Image with the camera. I've tried many differnt combinations of callback requests, but I NEVER get a Jepeg Callback, though I do get all the other callbacks. //

Re: [android-developers] MediaMetadaRetriever getFrameAtTime() call crashes

2012-03-11 Thread Yves Liu
Anyone? On Fri, Mar 9, 2012 at 11:22 AM, Yves Liu yves...@gmail.com wrote: And another question is here is my code, why can't I capture the crash? @Override       public Bitmap getFrame(String uri) {               try{                       MediaMetadataRetriever retriever = new

[android-developers] Custom Relativelayout class is not shown but normal Relativelayout is

2012-03-11 Thread martin g
Hi, I have the following problem: I've created a class that extends RelativeLayout (not more or less) but when I try to add it to a Linearlayout it is not shown. The strange thing to me is if I add a standard/normal RelativeLayout it works. I checked this with hierachyviewer, but the

Re: [android-developers] Re: What to use for supports-screens so that only 10 screens an alternatate APK?

2012-03-11 Thread jtoolsdev
All the support article says is that Play isn't currently supporting the dp based attribute. It hasn't been deprecated. Neither does it support what appears to be the shorthand qualifiers. It does suggest that I should have the screen size qualifiers for this situation. Again at least a

[android-developers] What are Android websites ?

2012-03-11 Thread Farhan Tariq
Hi, I recently ran into online jobs for making mobile phone website and it got me a little confused. Aren't they just webViews ? Or is there more to it? To be able to make an android website, do I need to look into anything other than web View ? Is it just making a webView content? If it is, why

Re: [android-developers] What are Android websites ?

2012-03-11 Thread James Black
This has nothing to do with this list, but a mobile website can have different meanings, but it will probably be some variation on a site that works best on mobile devices, peryable to get GPS info, for example. On Mar 11, 2012 6:31 PM, Farhan Tariq farhan@gmail.com wrote: Hi, I recently ran

Re: [android-developers] What are Android websites ?

2012-03-11 Thread Farhan Tariq
This has nothing to do with this list Well, if I started off with saying that I want to develop an android website, and I am looking for a starting point, then it would have everything to do with this list, isn't it? a mobile website can have different meanings, but it will probably be some

Re: [android-developers] What are Android websites ?

2012-03-11 Thread Kristopher Micinski
On Sun, Mar 11, 2012 at 7:36 PM, Farhan Tariq farhan@gmail.com wrote: This has nothing to do with this list Well, if I started off with saying that I want to develop an android website, and I am looking for a starting point, then it would have everything to do with this list, isn't it?

Re: [android-developers] What are Android websites ?

2012-03-11 Thread Farhan Tariq
Ok, this might sound stupid now, but I need to ask this for my own clarification. I have made applications with Android UI, running RESTful webservices in the background. If this is common in the so called 'android-website' and an 'android application that uses REST based webservices', then what

Re: [android-developers] What are Android websites ?

2012-03-11 Thread Kristopher Micinski
On Sun, Mar 11, 2012 at 7:52 PM, Farhan Tariq farhan@gmail.com wrote: Ok, this might sound stupid now, but I need to ask this for my own clarification. I have made applications with Android UI, running RESTful webservices in the background. If this is common in the so called

[android-developers] Re: access my own map from my android phone ?!

2012-03-11 Thread lbendlin
You obviously didn't look at osmandroid. Has nothing to do with Google. On Saturday, March 10, 2012 11:57:02 PM UTC-5, ltvie wrote: I have done my project to get current position and can access map from google.. but i don't need map from google that show on my android phone..i want show

Re: [android-developers] Expanding Galaxy?

2012-03-11 Thread lbendlin
The Android source code perchance? On Friday, March 9, 2012 4:40:53 PM UTC-5, bob wrote: What code? -- 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] bluetooth porting, hciattach

2012-03-11 Thread enming xie
Hello, Everyone. I am now doing the Bluetooth porting on Android 4.0.3 for a board of Freescale. The Bluetooth dongle(adapter) is Sitecom USB bluetooth2.0 class 1 dongle CN-521 with the main chip CSR BC04 (Cambridge Silicon Radio Ltd. BlueCore 04) in it. I read on

Re: [android-developers] Re: Help me on selecting a name to a game..

2012-03-11 Thread alex Kim And Lee
I just got an error that cannot find a spread sheet... 2012. 3. 10. 오후 12:49 Spiral123 cumis...@gmail.com 작성: Whale Wars On Mar 6, 9:01 pm, Fred fredrisch...@gmail.com wrote: Hi Everybody, I'm developing a android game and i'm urgently needing to define a name to this game.. can you

[android-developers] Re: Camera Access through WebView

2012-03-11 Thread RLyman
It is possible to punch through a webview with a custom view. Make sure Internet and Camera permissions are set in the manifest. The following will make a circular hole in the web page through which the camera shows. - rich package com.optiv.cameraweb; import android.content.Context;

[android-developers] problem reading with randomaccessfile

2012-03-11 Thread Ali
Hi all, i have an android tablet which is able to mount usb disks i have rooted it. and have root permittion i need to read 1024 first sector of my usb disk in android i have make a program to do that with randomaccess file but it gives me an exception which says /dev/block/sda (permission denied)

[android-developers] How do the android.speech package classes work?

2012-03-11 Thread vincenzo83-android
Hello, In the android.speech package there are some classes for speech recognition. I read this article and I created a simple application that send an Intent in order to start a speech recognition activity: in this way I created an example of speech recognition application and I only used

[android-developers] Suspend from market?

2012-03-11 Thread -Marcel-
*Real or just a fake? * *Subject: Notification From Google Play From: Android Market Support androidmarketsp...@gmail.com* Hi, This is a notification that the application, *[APPNAME]*, with package * [PACKAGE-ID]* should be removed from Google Play in 2 business day due to a

[android-developers] Result errors in RecognizerIntent

2012-03-11 Thread vincenzo83-android
In the class RecognizerIntent there are some result codes which should be returned when an error occurs during the speech recognition activity. In order to get the results of this activity, the onActivityResult(int requestCode, int resultCode, Intent data) method is overridden. How can I test

[android-developers] How can I receive a response for a sendOrderedBroadcast()?

2012-03-11 Thread vincenzo83-android
I'm developing an application that uses the voice recognition service provided by Google. The language used by default is set in the device and it is returned by Locale.getDefault(), so I would allow the user to set one of the supported languages for speech recognition. For this reason I need to

[android-developers] SSL Certificate Error when trying to get ACSID token from App Engine

2012-03-11 Thread Andreas Ka
Hey! When I'm doing a get on https://myapp.appspot.com/_ah/login?auth=somelongauthtokenhere I am getting. SSLPeerUnverifiedException: No peer certificate. I am using DefaultHttpClient. The problem occurs on an AppEngine instance I just created. I did not have this issue on an instance that I

[android-developers] Proxy doesn't work in connection with VPN

2012-03-11 Thread Jaypi
Hello, I have a Samsung Galaxy Nexus with ICS 4.0.2 and the web proxy server doesn't work while I'm connected with a VPN connection. First we have to connect with the wifi in our university, then we need to establish a VPN connection. The connection works and I get/send packages

[android-developers] Re: location based app

2012-03-11 Thread Chuck Krutsinger
This tutorial is very helpful and takes you step by step through putting things onto a Google Map. a href=http:// developer.android.com/guide/tutorials/views/hello- mapview.htmlHelloMapView/a. Enjoy! -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Stack overflow error in android - help needed to execute

2012-03-11 Thread Karthick Siva
i get a stack overflow error while trying to draw a qr code in canvas, saying unable to create .dex file and prompting to close eclipse, even i changed memory in eclipse.ini but nothing worked here is the QRcodeActivity.java file package karthick.vampire; import android.app.Activity;

[android-developers] last lines of log in download attempt

2012-03-11 Thread firebreather
Done loading packages. Preparing to install archives Downloading SDK Platform Android 4.0.3, API 15, revision 2 File not found: C:\Program Files\Android\android-sdk\temp \android-15_r02.zip (Access is denied) Downloading Sources for Android SDK, API 15, revision 1 File not found: C:\Program

[android-developers] File not found: C:\Program Files\Android\android-sdk\temp\android-15_r02.zip (Access is denied)

2012-03-11 Thread firebreather
i get the following error message when trying to download the SDK platform from the SDK manager: File not found: C:\Program Files\Android\android-sdk\temp \android-15_r02.zip (Access is denied) when i go to this temp file i see that it's empty. -- You received this message because you are

[android-developers] Re: SDK and ADB errors

2012-03-11 Thread Chuck Krutsinger
You need to launch adb using sudo: adb kill-server sudo /full/path/goes/here/adb devices -- 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

[android-developers] Camera (with Tag Location) display wrong location.

2012-03-11 Thread Hyunseok Lee
Hi I take a picture with tag location. But, it displays wrong location on the Google Maps. I think it seems problem is WPS(wifi positioning). My device uses WIFI (not OPEN) for connecting data. Do you know why displays wrong location in WPS? -- You received this message because you are

[android-developers] USB Host Intent Stopped Working

2012-03-11 Thread bsnguy
I have a system with ICS 4.0.3 running and it was working with my custom USB hardware for a couple of weeks. For the past week, however, I am no longer getting the messages when the USB device is plugged in. I have not changed my intent (for ATTACHED) and the same hardware and software works on

[android-developers] Failed resolving for interface listed in reference

2012-03-11 Thread Max Kirillov
Hello. I am trying to add an external jar which requires javax.xml.transform.SourceLocator. It is beings inserted OK into activity and then it fails when I try to run the application: ... I/dalvikvm( 859): Failed resolving Lgnu/text/SourceLocator; interface 1155

[android-developers] E/dalvikvm: Could not find class 'xxx', referenced from method yyy

2012-03-11 Thread alex2k8
I have migrated to adt-17-preview (http://tools.android.com/download/ adt-17-preview), because I had issues (http://code.google.com/p/ android/issues/detail?id=21031) with previous versions... Now I have such setup: ProjC - ProjB - ProjA Where ProjA: Java Project ProjB: Android Library

[android-developers] Can't add buttons inside a RelativeLayout programmatically

2012-03-11 Thread Giacomo
Hi falks, this is my first post, I'm a newbie in android developement and it's giving me terrible headaches. I have to develop an app for a client that need something like a map of a floor building, this map should contain interactive graphic references such buttons rappresenting beds (it's an

[android-developers] Simple chess engine

2012-03-11 Thread onur
Hello i am new to android. i want to make a game like chess. i need most simple chess engine/sample. i searched about it but i need simple engine because i will not use it for chess games Which one do you suggest? -- You received this message because you are subscribed to the Google Groups

[android-developers] Is there a way to launch custom application in fullscreen mode on android?

2012-03-11 Thread Gytis
Hi all, Basically i'm developing some sort of restricted launcher. I would like to be able to open for example native android Date Time Settings from my android application in fullscreen mode(so that notification bar would not be visible). If it was my own activity - no problem - either xml for

[android-developers] device testing on iOS app port

2012-03-11 Thread Miles Egan
I've completed an iOS app for a client and they've asked me to do an Android port for them. I haven't written any real Android apps before but I've been hacking around on some of my own apps and studying the docs long enough to feel confident that I understand the APIs and conventions well

[android-developers] Android library with resources

2012-03-11 Thread Роман Рыжов
I've created an android library. When i reference this library in android project it creates R file in android project and there is no R file in library jar. Is it possible to create android library with R file and resources like GoogleAdMobAdsSDK? -- You received this message because you are

[android-developers] Is there a way for an android app to know which web sites you are accesing?

2012-03-11 Thread Sergio Alvarez
Hello Everybody I'm currently starting a new Android application that should monitor the usage of certain applications and websites. While I can imagine a way to monitor how long an application has been running with the Android SKD, I'm not sure about the websites part. Let's say I open a

[android-developers] Rotation of image

2012-03-11 Thread Priyanka
Rotation is not smooth ,can someone help me. Drag left to right for clockwise rotation -- 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,

[android-developers] Android compatibility clarification

2012-03-11 Thread Vikram Bhuskute
Hi All, I have an Andriod 2.2 phone . I have to write an app for my phone, which is about a book with index and navigation. I don't want to upgrade the phone as of now . My question is do I have to use 2.2 platform ? Or I can use any latest ones ? I guess if APIs are upgraded then I can not use

[android-developers] Android book for learners

2012-03-11 Thread pandey
Hi , I am new to android and I have been working as android developer from 4 months . I was looking for some good book on android application development and I am confused about which one to buy . Help please .. -- You received this message because you are subscribed to the Google Groups

[android-developers] How to use webcam on AVD Emulator

2012-03-11 Thread s_marco
Hello everyone, i'm a new android-developers and i've just encountered a problem. How can i use my pc webcam on the AVD Emulator ? I'm using the latest version of Android SDK on Eclipse Indigo. (P.S. when i start the emulator, it asks me to choose the video hardware source; i select my hp webcam

[android-developers] Rotation of image

2012-03-11 Thread Priyanka
Hello, Below is code for rotation of image on move.Image will rotate but with some delay.Can anyone help me to have smooth rotation.You drag on screen (emulator)left to right it will move clockwise,right to left anticlockwise -- You received this message because you are subscribed to the Google

[android-developers] api access for defining purchase items - Google Play | Android Developer Console | In-app Products

2012-03-11 Thread Yoni Shalom
Hi Is providing an api for defining purchasable items per app something that google is working on ? An api is a must for services that allow you to create an App automatically (defining regular content as well as purchasable content) Thanks -- You received this message because you are

[android-developers] Handling Redirects in Android WebView

2012-03-11 Thread Rao
Hi, I am developing a android application, Within the application I am trying to Load a URL using WEBVIEW. Afer i submit the data in the opened webpage, it gets redirected to some other URL. My requirement is to get the complete Redirected URL within my android application. I didnt see any

[android-developers] Re: Troubles with Utils.matToBitmap

2012-03-11 Thread Muzikant
What was the problem (I'm getting the same error... whenever I call matToBitmap the application freezes and stops responding) On Feb 20, 12:01 pm, adiel ashrov adiel.ash...@gmail.com wrote: nevermind,got it./ Thanks On Feb 19, 6:18 pm, adiel ashrov adiel.ash...@gmail.com wrote: Hey

[android-developers] Re: Android Game Programming help

2012-03-11 Thread Shuhail alam
Totally agree with Kris. -- 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

[android-developers] android developers

2012-03-11 Thread priyanka kothari
Hello, Below is code for rotation of image on move.Image will rotate but with some delay.Can anyone help me to have smooth rotation.You drag on screen (emulator)left to right it will move clockwise,right to left anticlockwise -- You received this message because you are subscribed to the Google

[android-developers] Fragment Communication

2012-03-11 Thread satyaandroid
Hi Android Developers I tried to make communication between two fragments. if i click a button one fragment the another fragment will be replaced by the another new fragment.. can you help me in this case thank you -- You received this message because you are subscribed to the

[android-developers] Tutorial Needed

2012-03-11 Thread rayhan
Now i am learning android developing.I want to know that where i can get tutorial from basic to advance level to learn android. Thanks -- 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] finding the java sdk

2012-03-11 Thread firebreather
i'm trying to download the android and java sdks so i can develop apps. besides the error i get in trying to download the android sdk mentioned previously. i dont seem to have a java sdk.exe file. in my oracle folder i have two other folders: javafx 2.0 runtime which contains a bin and lib file.

[android-developers] Re: java.net.UnknownHostException: api.linkedin.com while trying to use sociallib in my app ?

2012-03-11 Thread Jonathan S
Do you have uses-permission android:name=android.permission.INTERNET / in AndroidMainfest.xml ? On Sunday, March 11, 2012 9:08:31 PM UTC-4, AndroidGirl8 wrote: Hello, I'm trying to use sociallib http://www.androidlibs.com/ in my new app i downloaded all jars needed and tried to

Re: [android-developers] Re: java.net.UnknownHostException: api.linkedin.com while trying to use sociallib in my app ?

2012-03-11 Thread Walaa Mahmoud
Yeah i have internet permission in manifest , I think it's something with proxy but i don't know how to deal with it :( On Mon, Mar 12, 2012 at 3:25 AM, Jonathan S xfsuno...@gmail.com wrote: Do you have uses-permission android:name=android.permission.INTERNET / in AndroidMainfest.xml

[android-developers] Re: ArrayAdapter not updating its ListView

2012-03-11 Thread scottishwildcat
For the record, since it's always good to post solutions (albeit three months later)... The only way I ever got this to work in the end was to use my own custom row layout and inflate that in getView(), rather than using android.R.layout.simple_list_item_multiple_choice. Everything worked just

[android-developers] Re: finding the java sdk

2012-03-11 Thread Chuck Krutsinger
Download the Java JDK at http://www.oracle.com/technetwork/java/javase/downloads/index.html. Follow the instructions posted there to install it. On Mar 11, 10:24 am, firebreather michaelirvingbr...@gmail.com wrote: i'm trying to download the android and java sdks so i can develop apps.

[android-developers] Re: Tutorial Needed

2012-03-11 Thread Chuck Krutsinger
Start at http://developer.android.com/guide/basics/what-is-android.html. There are many, many documents that explain concepts, give sample programs, go through tutorials, etc. On Mar 10, 10:14 pm, rayhan rayha...@gmail.com wrote: Now i am learning android developing.I want to know that where i

[android-developers] Re: Android compatibility clarification

2012-03-11 Thread Chuck Krutsinger
If you want your program to run on your phone, you will have to stick to the 2.2 version of Android. If you want to develop to later versions, you can, but you will have to use an emulator to run and test the application and you won't be able to deploy to your phone until you upgrade to those