[android-developers] Re: ant

2011-11-11 Thread Zsolt Vasvari
Where have you searched so far? On Nov 11, 3:44 pm, bob b...@coolgroups.com wrote: Are there any good books that explain how to use ant to automate Android builds? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Re: Broadcast for SCREEN OFF

2011-11-11 Thread Dianne Hackborn
You should never expect to see a message like that, because you can't receive this broadcast through a receiver declared in the manifest. You can only receive it through registerReceiver(). And that means your process must remain running from the time you call registerReceiver() until the

[android-developers] Thresholding a Bitmap

2011-11-11 Thread melakamc
How to Threshold a bitmap 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 unsubscribe from this group, send email to

Re: [android-developers] Re: Classes from project's jar conflicts with Android internal jar (esp. apache commons-codec)

2011-11-11 Thread Dianne Hackborn
The android base class path includes some apache libraries like this. You'll need to put them in your own namespace if building into your own app, to avoid conflicts. On Thu, Nov 10, 2011 at 10:56 PM, Yongce tuyon...@gmail.com wrote: I could copy the source files of the library into my project

Re: [android-developers] Customize Android Source Code to run multiple Application on same Screen.

2011-11-11 Thread Dianne Hackborn
On Wed, Nov 9, 2011 at 10:12 AM, Pawan Singh Rathore pawan.s.rath...@gmail.com wrote: Its my first task at source level. You are doomed. Seriously. This is not a first task kind of thing. It is not even a second task kind of thing. -- Dianne Hackborn Android framework engineer

[android-developers] Re: Urgent help required

2011-11-11 Thread Sunil Mishra
Because i want the contents of my phone to be shared, i am able to do that. Only thing i need is to design the html page that i am sending with css. I am unable to use any images in the html page. On Nov 11, 12:12 pm, Miguel Morales therevolti...@gmail.com wrote: Why not have the HTTP server on

Re: [android-developers] Re: Urgent help required

2011-11-11 Thread Miguel Morales
That's not detailed at all, very bad explanation. Again, you'll have to post code, logs, etc. On Fri, Nov 11, 2011 at 12:28 AM, Sunil Mishra suniljmis...@gmail.comwrote: Because i want the contents of my phone to be shared, i am able to do that. Only thing i need is to design the html page

[android-developers] .net webservices am able to get the response but for sap webservices am getting org.xml pull parser exceprion

2011-11-11 Thread arun kumar
* Hi for .net webservices (currency converter and temperature converter) am able to get response using the below code .But for the webservice which are generated from SAP am not getting the response .am getting this error. 11-11 09:55:13.113: WARN/System.err(272):

[android-developers] Re: Classes from project's jar conflicts with Android internal jar (esp. apache commons-codec)

2011-11-11 Thread Yongce
Got it. So copyrepackage is the only correct way. Thanks for all your responses. On Nov 11, 4:14 pm, Dianne Hackborn hack...@android.com wrote: The android base class path includes some apache libraries like this.  You'll need to put them in your own namespace if building into your own app, to

Re: [android-developers] How to publish app in Kindle Fire Market place

2011-11-11 Thread Jovish P
I understood my mistake .. Sorry . On Fri, Nov 11, 2011 at 12:53 AM, TreKing treking...@gmail.com wrote: On Thu, Nov 10, 2011 at 8:47 AM, Jovish P android.f...@gmail.com wrote: Any one know How to publish app in kindle fire market place and BN.com's Market Place? Have

[android-developers] Re: problem when passing control to another activity when user click on menu item in android

2011-11-11 Thread Ali Chousein
No, if you do everything right, the code you pasted shouldn't throw any exceptions. Did you add your class temperature to your AndroidManifest.xml file? You should do that, otherwise you'll get an exception. - Ali Chousein Weather-Buddy

[android-developers] Swipe gesturing to switch between tabs

2011-11-11 Thread Bishan
How to add swipe gesturing to switch between tabs 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 unsubscribe from this group, send email to

[android-developers] TextView and white-space

2011-11-11 Thread dashman
Is there an xml setting for TextView - to auto-trim white-space. I intercept the onPreferenceChange() callback - but in that call you can't call trim() on the string and save it - just return true or false. So right now, if there's a white-space, i just toast an error message and return false.

[android-developers] Re: Urgent help required

2011-11-11 Thread Sunil Mishra
home.html !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml; xml:lang=en head titleODMS/title meta http-equiv=Content-Type content=text/html; charset=utf-8 / style type = text/css

Re: [android-developers] Re: problem when passing control to another activity when user click on menu item in android

2011-11-11 Thread muizz ahmad
you are right.thanks dear. On Fri, Nov 11, 2011 at 1:24 AM, Ali Chousein ali.chous...@gmail.comwrote: No, if you do everything right, the code you pasted shouldn't throw any exceptions. Did you add your class temperature to your AndroidManifest.xml file? You should do that, otherwise you'll

Re: [android-developers] Re: Urgent help required

2011-11-11 Thread Miguel Morales
That's better, most likely you'll want to put your html/images in the res folder and then user the following path: file://android_asset/file_path.png If you are downloading these files dynamically, then simply change the file:// path. On Fri, Nov 11, 2011 at 2:30 AM, Sunil Mishra

Re: [android-developers] TextView and white-space

2011-11-11 Thread Kostya Vasilyev
Subclass EditTextPreference, override persistString and do your trimming there. 11.11.2011 14:17, dashman пишет: Is there an xml setting for TextView - to auto-trim white-space. I intercept the onPreferenceChange() callback - but in that call you can't call trim() on the string and save it -

[android-developers] Re: Urgent help required

2011-11-11 Thread Sunil Mishra
Can you give me example on how to do the same for the following line: background-image:url('images/css/topBanner.jpg'); //a line of home.html We cannot directly replace that with 'file://android_asset/raw/images/ css/topBanner.jpg' On Nov 11, 3:38 pm, Miguel Morales therevolti...@gmail.com

[android-developers] Re: Urgent help required

2011-11-11 Thread Sunil Mishra
The images are in res-raw-images-css On Nov 11, 3:38 pm, Miguel Morales therevolti...@gmail.com wrote: That's better, most likely you'll want to put your html/images in the res folder and then user the following path: file://android_asset/file_path.png If you are downloading these files

Re: [android-developers] Re: Urgent help required

2011-11-11 Thread Miguel Morales
They sure are. On Fri, Nov 11, 2011 at 3:14 AM, Sunil Mishra suniljmis...@gmail.comwrote: The images are in res-raw-images-css On Nov 11, 3:38 pm, Miguel Morales therevolti...@gmail.com wrote: That's better, most likely you'll want to put your html/images in the res folder and then user

[android-developers] Re: Urgent help required

2011-11-11 Thread Sunil Mishra
I tried changing background-image:url('images/css/topBanner.jpg') to background-image:url(file://android_asset/raw/images/css/ topBanner.jpg' ) but it still not working. On Nov 11, 4:20 pm, Miguel Morales therevolti...@gmail.com wrote: They sure are. On Fri, Nov 11, 2011 at 3:14 AM, Sunil

Re: [android-developers] Re: Urgent help required

2011-11-11 Thread Kostya Vasilyev
raw != assets 11.11.2011 15:27, Sunil Mishra пишет: I tried changing background-image:url('images/css/topBanner.jpg') to background-image:url(file://android_asset/raw/images/css/ topBanner.jpg' ) but it still not working. -- Kostya Vasilyev -- You received this message because you are

[android-developers] Re: Urgent help required

2011-11-11 Thread Sunil Mishra
@Kostya Thanks for pointing that out! But i am still unable to load the image. I placed the image in assets folder and trying to access that using background-image:url(file:///android_asset/topBanner.jpg); but unable to do so... On Nov 11, 4:41 pm, Kostya Vasilyev kmans...@gmail.com wrote: raw

Re: [android-developers] BroadcastReceiver not system-wide but visible only to application?

2011-11-11 Thread Mark Murphy
Use setPackage() on the Intent to control who can possibly receive it. On Thu, Nov 10, 2011 at 10:26 PM, Tomasz Gawel tomaszga...@op.pl wrote: Hi, is this possible to braodcast my intent to be visible only inside the application not to be visible system wide? i know, there is permission

Re: [android-developers] Re: Urgent help required

2011-11-11 Thread Daniel Drozdzewski
Sunil, You should not have developed your http server, but utilise some OSS project that does that. Your links to images or any other resource are relative to the context of that web page (or web application) running within your web server. wwwroot - websiteA -images

[android-developers] Problem with listVIew

2011-11-11 Thread Elison Lusvardi
Hi guys, how are you? I have a problem in my application's ListView. Each item in the ListView can be created by different widgets, some have pictures, the layout is different in each case, some have images, others have buttons, etc.. All of them have actions like onClick and onLongClick - being

[android-developers] Re: Urgent help required

2011-11-11 Thread Sunil Mishra
As a workaround i tried storing the image in app_images folder in sdcard and trying to provide the url of that path. But still the issues exists. Is there any other work around possible?? And do you have any clue On Nov 11, 5:18 pm, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: Sunil,

[android-developers] Re: Urgent help required

2011-11-11 Thread skink
On Nov 11, 2:43 pm, Sunil Mishra suniljmis...@gmail.com wrote: As a workaround i tried storing the image in app_images folder in sdcard and trying to provide the url of that path. But still the issues exists. Is there any other work around possible?? And do you have any clue On Nov 11,

[android-developers] Re: Urgent help required

2011-11-11 Thread IcedNet
treat the assets folder as / (root) for your server, put it all in there... On Nov 11, 8:43 am, Sunil Mishra suniljmis...@gmail.com wrote: As a workaround i tried storing the image in app_images folder in sdcard and trying to provide the url of that path. But still the issues exists. Is

[android-developers] Re: Threshold a android bitmap image URGENT

2011-11-11 Thread Streets Of Boston
For a crude Threshold effect, you can use a ColorMatrixColorFilter with the right values put in it. I implemented a Threshold filter this way, I don't have the implementation at hand right now. But you can google it. :) -- You received this message because you are subscribed to the Google

[android-developers] help loading images from url

2011-11-11 Thread Christian Palomares (ShinjiDev)
Hi I've seen many tutorials about how to load an image from my url, but i've seen in apps like Uber Social where it loads the images in an asynchronous way, can someone guide me how to do it in that way? =( Thxs -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Urgent help required

2011-11-11 Thread Sunil Mishra
@skink and @Dainel According to me URL translation is like follows 1. Read the html file before sending 2. Grab the relative url 3. Convert it to absolute url 4. Write the html file with the converted absolute url Please correct me if i am going wrong. Or provide me a link which explains about

[android-developers] Re: Urgent help required

2011-11-11 Thread Sunil Mishra
@IcedNet You mean to say, i must put all the html, css and images in the assets folder. Right? On Nov 11, 6:52 pm, IcedNet d...@icednet.info wrote: treat the assets folder as /  (root) for your server, put it all in there... On Nov 11, 8:43 am, Sunil Mishra suniljmis...@gmail.com wrote:

Re: [android-developers] Re: Urgent help required

2011-11-11 Thread Daniel Drozdzewski
On 11 November 2011 14:23, Sunil Mishra suniljmis...@gmail.com wrote: @skink and @Dainel According to me URL translation is like follows 1. Read the html file before sending 2. Grab the relative url 3. Convert it to absolute url 4. Write the html file with the converted absolute url

[android-developers] Re: Screen orientantion and dialogs problem.

2011-11-11 Thread ikki_fenix
Thanks a lot. It's very useful, but I have another problem. When I change the screen orientation only changes the first tab layout and the second one takes it the same that I had before the change. For Example, I have the app in portrait and i change to landscape. When I see the tabs, the first

[android-developers] Re: Urgent help required

2011-11-11 Thread Sunil Mishra
@Daniel Thanks! I'l try on this and get back to you if i have any doubt. Thanks once again! On Nov 11, 7:43 pm, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On 11 November 2011 14:23, Sunil Mishra suniljmis...@gmail.com wrote: @skink and @Dainel According to me URL translation

Re: [android-developers] Re: Screen orientantion and dialogs problem.

2011-11-11 Thread TreKing
On Fri, Nov 11, 2011 at 8:48 AM, ikki_fenix piltzin1...@gmail.com wrote: For Example, I have the app in portrait and i change to landscape. When I see the tabs, the first tab design has changed it for landscape layout and the second one remains the portrait version of layout. Do you know why

[android-developers] Re: Urgent help required

2011-11-11 Thread skink
On Nov 11, 3:23 pm, Sunil Mishra suniljmis...@gmail.com wrote: @skink and @Dainel According to me URL translation is like follows 1. Read the html file before sending 2. Grab the relative url 3. Convert it to absolute url 4. Write the html file with the converted absolute url Please

[android-developers] Re: Screen orientantion and dialogs problem.

2011-11-11 Thread ikki_fenix
Hi!, I'm ashamed but i did a silly mistake, because i've forgotten to change some values in the second tab. Sorry for waste your time and 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] Re: Use the Gyroscope to improve the orientation

2011-11-11 Thread hhenne
Hi again, In my app, I am only interested in pitch and roll - not in yaw. The accelerometer can measure static pitch and roll (because of the gravity) - but not static yaw. Acceleration caused by movements are just unwanted noise in my app and is filtered away by a usual digital Lowpass filter.

[android-developers] Horizontal scroll inside ViewPager

2011-11-11 Thread ahmed barqawi
Hello Android geeks, i created a project that have ViewPager to scroll between pages and one of the pages have big image that you can scroll right,left when i scroll left or right the ViewPager scroll between pages not inside the image. my issue is: how to prevent view pager to scroll between

[android-developers] Re: Parsing JSON from Grails application

2011-11-11 Thread hhenne
On Grails you can use the gson library - it is very simple and easy to use. Android has built in the org.json library - tutorial here: http://www.vogella.de/articles/AndroidJSON/article.html Hardy Henneberg http://www.maxikeys.com On Nov 11, 3:05 am, Nikolay Elenkov nikolay.elen...@gmail.com

[android-developers] Pairing bluetooth devices using NFC

2011-11-11 Thread somdas
Is it possible to pair to bluetooth device using NFC (out of band) in android 2.3? If yes, please provide me the steps of doing so. -- 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: Problem with listVIew

2011-11-11 Thread hoyski
On Nov 11, 7:39 am, Elison Lusvardi elis...@gmail.com wrote: Hi guys, how are you? I have a problem in my application's ListView. Each item in the ListView can be created by different widgets, some have pictures, the layout is different in each case, some have images, others have buttons,

Re: [android-developers] Standalone interactive logcat viewer/inspector (free)

2011-11-11 Thread Stephen Uhler
For the app I was working on, I needed better/different highlighting and filtering than what DDMS provided, so I build something that served my purpose at the time, and thought I'd share it in case others find it useful. I often use DDMS as well, depending on the type of output I need. On Thu,

[android-developers] Where is the ICS Date Usage Graph SeekBar thumb image?

2011-11-11 Thread Boozel
Hi I just downloaded the android 4.0 SDK to look for the scroller image resource that is used in the new Data Usage feature in ICS to scroll along the axis of the graph? I cant find it though, does any one know the path of this resource? I have a graph in my application and would like to add

[android-developers] Re: Obsoleting 1.5

2011-11-11 Thread Nathan
On Nov 10, 4:31 pm, Zsolt Vasvari zvasv...@gmail.com wrote: How can they even comment?  If they cannot see the app in the Market, they cannot comment on it. Very good point. Another point in favor of skipping multiple apks and just dropping them. Although I don't know for sure. Even though

[android-developers] NFC App self-launched

2011-11-11 Thread k0nig
Hello, I'm a begginer in android, I have a NFC App works correctly except for one thing, when I close a tag to my phone this suggest other app but not mine. I had search about this but don't find a solution, my manifest is: ?xml version=1.0 encoding=utf-8? manifest

[android-developers] Native Code Coverage using gcov

2011-11-11 Thread AngelMex
I've been trying to get Native Code coverage following the intructions at http://groups.google.com/group/android-ndk/browse_thread/thread/4a3924bb1235e58a/6ef27ff0b4506d30?show_docid=6ef27ff0b4506d30 So far I have been unable to get any .gcda files. I've been able to successfully build and link

[android-developers] Re: Programmatically installing APK question

2011-11-11 Thread zombiexl
Ash, I'm doing the same sort for thing for a client (i rooted the device and created a flashable rom). I am having the device restart the device when it closes. The difference is we do allow some users to use the exit button and get to the device (mainly for debugging). Otherwise the exit button

[android-developers] TextView with an element inserted just at the and of the text

2011-11-11 Thread Damian Skrodzki
I need a multiline text that allows me to insert a small element just after the last word of my text, so I could draw on that element. All text should be selectable, and it would be great if I could insert some other elements inside this text, but it's not essential for now. I tried to: 1.

[android-developers] How to access class file

2011-11-11 Thread Ketan
Hello, I want to acess class file from bin folder in android. I was doing it using File f = new File(/bin/filename.class); Its working fine in java but in android giving path doesnt work,,, so please suggest me other way to access class file of any java file. Thanks in advance! -- You

[android-developers] Moving shifting

2011-11-11 Thread unionmoversuae
Welcome Enjoy world-class moving services at local rates! Union Mover Dubai is the moving company created to make your moving experience a stress free one. Our focus is on top notch customer service, and fast, professional moving services. We aim to offer our customers the quality of service they

[android-developers] Selecting a location from google map and send it to an Application

2011-11-11 Thread Hacktor
Is there any sample code or tutorial for Selecting a location from google map (like restaurant, school etc) and forward to the application which includes more information about that place? The object of this application is making some process about the place that already selected from the google

[android-developers] Flickering on Android browser because of the keypad

2011-11-11 Thread Mjask
Hi I am creating a Web page for Android browsers, I have an input box on top but when I type in something there because the sliding keypad appears that textbox scrolls up and I cant see that . Is there any Javascript event or some other feature with which I can make my page not to scroll up when

[android-developers] Re: Option to unlock the boot loader for Sony Ericsson Android Gingerbread phones now available.

2011-11-11 Thread Michel
Hello, I am an Android Windows developer using Eclipse and I would like to develop applications for my XPeria Active. Since to connect to it I need to install the appropriate OEM USB driver... Does anyone know if there is a compatible OEM USB driver from another XPeria phone, as Sony hasn't yet

Re: [android-developers] Sony S1 adb driver

2011-11-11 Thread Edwin Low
Hi Kostya, I am new to all this and trying to get my Sony tablet to accept adhoc wifi hotspot. But first I need to get the tablet to link to my notebook. When you mentioned located in %USERPROFILE%\.android and under [Google.NTamd64], are these found in my tablet or notebook? After

[android-developers] How to read data off a website into an Android app

2011-11-11 Thread Jungle Jim
I need to write an android app that will read data off a webpage and then display it in an activity in my app. Unfortunately, I am fairly new to both android and java. Does anyone know of a sample program that can get me started? Thanks. -- You received this message because you are subscribed

[android-developers] Problem in retrieve content:encoded by SAX form RSS

2011-11-11 Thread calvin chan
Hi everyone, I am a beginner of android programming, these several weeks I am trying to write a RSS reader. As I said, I use SAX to retrieve the elements from xml of a website. All other elements I can retrieve except the content inside the content:encoded. Below is my Handler.java can anyone

[android-developers] Re: Set Phone HTTP Proxy on Wifi Network

2011-11-11 Thread Moroni Granja
Proxy support is known to be lacking. For that reason, there are apps that help with that. I'm working on one called Autoproxy that should help yout there. http://forum.xda-developers.com/showthread.php?t=1083284 On Sep 18, 1:17 pm, Marco Pagliari pis...@gmail.com wrote: I would like to know if

[android-developers] best smile

2011-11-11 Thread azhar mustafa
You will never want to use an ordinary toothbrush again. Perfect results EVERYTIME! With 30 Second Smile, you get a precise cleaning each and every time. All you do is bite and guide! http://emediatraffic.go2cloud.org/SHFH -- You received this message because you are subscribed to the Google

[android-developers] Failed to fetch URL http://dl-ssl.google.com/android/repository/repository-5.xml, reason: Connection reset

2011-11-11 Thread kaoutar ben ahmed
hello everyone !! i have this errors shown when i try to add SDK Components through the android SDK manager : Fetching http://dl-ssl.google.com/android/repository/addons_list-1.xml Failed to fetch URL http://dl-ssl.google.com/android/repository/addons_list-1.xml, reason: Connection reset

[android-developers] Detecting user network preference

2011-11-11 Thread Rino
Hi Group, this is my first post and I made a lot of searching but didn't find any post completely answering to my question. I'm developing on a Samsung Galaxy Next device, using a 3G USIM from a UMTS mobile operator. I need to detect the following user settings: - If set Use only 2G networks

[android-developers] Re: Failed to fetch URL http://dl-ssl.google.com/android/repository/repository-5.xml, reason: Connection reset

2011-11-11 Thread kaoutar ben ahmed
hello again :) i have resolved the problem now, all i did is that i deselected that option that forces https:// to be http:// so it works ;) cordially 2011/11/11 kaoutar ben ahmed benahmed.kaou...@gmail.com hello everyone !! i have this errors shown when i try to add SDK Components through

[android-developers] Re: Does android 4.0 ice cream sandwich support arabic natively (properly) ?

2011-11-11 Thread Mohammad Ghames
The Arabic works just perfect :) http://www.youtube.com/watch?v=SfVlxJti6vA On Nov 6, 4:56 pm, AhmadOOka ahmado...@gmail.com wrote: The emulator displaysarabicperfect. Thanks. On Nov 6, 1:37 am, AhmadOOka ahmado...@gmail.com wrote: Thanks. Ill try that On Nov 1, 2:36 am, Zsolt

[android-developers] Android operating system

2011-11-11 Thread pavan kumar
1) How android operating system different from other operating system? 2) What are the advantages that we have with this operating system? 3) How the hardware parts supports. What is the basis for it. Suggest me a site to make me build hardware parts. -- You received this message because you are

[android-developers] problem with the indefinite service

2011-11-11 Thread phannguyen
Dear all, My app has an activity A and i want to create MyService which can run in background indefinitely. So from activity A, i call start myservice as following: Intent intent = new Intent(getBaseContext(), MyService.class); startService(intent); I also want to pass data object from Activity A

[android-developers] EventHub.cpp - the logic is incorrect

2011-11-11 Thread Videomap
If you look at this Gingerbread code: // See if this is a keyboard. Ignore everything in the button range except for // gamepads which are also considered keyboards. if (containsNonZeroByte(key_bitmask, 0, sizeof_bit_array(BTN_MISC)) ||

[android-developers] android webview not showing redirecting

2011-11-11 Thread vidyasagar sreerama
Hi all I am using android webview.posturl() method to post to a servlet. From the servlet i am doing a http POST to a new url using apache httpclient 4.0 API which is returning me a HTTP/1.1 302 removed temporarily response and it is making a http GET request to another URL in the response

[android-developers] getResourceAsStream and resource matching.

2011-11-11 Thread port443
Hi, I'm trying to use Class.getResourceAsStream for an APK which I loaded myself via DexClassLoader. I can load an image if I specify it in full (e.g. /res/drawable-mdpi/ myimage.png); this works. I wonder if there's a way to employ resource matching function of Android (see

[android-developers] Multiple L2TP/IPSec Android clients behind same NAT-BOX

2011-11-11 Thread IPSecRider
Hi All, I am trying to connect multiple Android L2TP/IPSec clients behind the single NAT-BOX to Openswan VPN. Here I can see that Android client initiates L2TP session from ephemeral port value (other than 1701), but this port value is not getting reflected in quick mode selectors. (At openswan

[android-developers] Problem in getting Android source code from Google repo

2011-11-11 Thread srinivasan shanmugam
Hi, As specified in the i.MX Android R9.4 User Guide in section 2. Build Android for i.MX 2.1 Get Android Source Code (Android/Kernel/U-Boot) While getting the Android source code from Google repo, wen i was executing the following step: ubuntu@ubuntu-laptop:~/myandroid$ ./repo init -u

[android-developers] In getting the kernel source code with the tag of 2.6.35.3:

2011-11-11 Thread srinivasan shanmugam
Hi, I am facing the below problem in getting the kernel source code from kernel.org with the tag of 2.6.35.3 ubuntu@ubuntu-laptop:~/IMX_Android$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-2.6.35.y.git kernel_imx Initialized empty Git repository in

[android-developers] Re: SMPP over android

2011-11-11 Thread Shire Highlands
Yes. You Can On Nov 4, 8:08 am, androidgeek itestandroid@gmail.com wrote: Can I implement SMPP  (Simple message peer-to-peer) over android. If yes, How ? Looking for an early reply Regards, AndroidGeek -- You received this message because you are subscribed to the Google Groups

[android-developers] Urgent Help required

2011-11-11 Thread chowdary nani
Please how to integrate face book in android.I am trying to do it using fbconnection/api.jar but i am facing problem in loading the jar -- 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] Workarounds for MB200 ADB?

2011-11-11 Thread Dadoh
I have been trying to upload an app I just finished for trial on my Motorola Cliq (MB200) phone and my PC is telling me that no ADB exists for this device. Is this true and is there a workaround so that I can upload my app without publishing it to the market? Dadoh. -- You received this message

[android-developers] Render camera preview as scaled quad in NDK / OpenGLES2 app

2011-11-11 Thread Droid Dev'r
Hi, I have an OpenGLES2 app that does some rendering via NDK (similar to the way the NDK hello-gl2 sample app does it). I want to get the camera preview as either NV21 or RGB565 and send the bytes via JNI to C ++, update a texture using those bytes, and finally render a quad with the updated

Re: [android-developers] Standalone interactive logcat viewer/inspector (free)

2011-11-11 Thread radin
TreKing wrote: On Wed, Nov 9, 2011 at 2:31 PM, Stephen Uhler suh...@google.com wrote: I got frustrated one day inspecting logcat output when I couldn't get eclipse to start, so I wrote a stand-alone logcat inspector (in Tcl/Tk), which I now use in preference to the one in eclipse. Any

[android-developers] regarding view

2011-11-11 Thread supraja raghavendran
hi, am facing problem with view in my project. the view is taking different coordinate (x,y) value when i checked in logcat . it is not matching with my xml (x,y)value. please tell me what s the problem be..i am having doubt whether it is taking layout value also. regards supraja -- You

Re: [android-developers] Swipe gesturing to switch between tabs

2011-11-11 Thread venkata srinivas namburi
Hi Bishan, I guess there is sample application using fragments,which walks you through the swipe gesture in tabs( FragmentTabsPager.java). On Fri, Nov 11, 2011 at 3:09 PM, Bishan tvbis...@gmail.com wrote: How to add swipe gesturing to switch between tabs in android ? -- You received this

[android-developers] DatePicker in a fragment

2011-11-11 Thread Kyle
I am attempting to use a datepicker dialog based on the example at http://developer.android.com/resources/tutorials/views/hello-datepicker.html. This is obviously for an activity, but I'm trying to implement the same functionality in a fragment. Using the code from the example won't work. By

[android-developers] Make voice calls to use a self audio file instead of microphone output

2011-11-11 Thread Suresh
I am trying to implement some kind of voice cryptography over a gsm connection (without modifing any gsm related codecs, we render pure audio which gets transmitted via gsm). Is it possible to initiate a voice call and transmit our generated audio signal (means bypassing the microphone as the

[android-developers] Google Tv + Android - SIP/VOIP (android.software.sip)

2011-11-11 Thread tillegomezz
In the documentation of Google Tv says: The following Android software features are not supported in the Google TV platform: SIP/VOIP (android.software.sip). However in the last days Google Tv updated its version to HoneyComb 3.1 My question is: with this new version can I use

[android-developers] How to make the IME in fullscreen?

2011-11-11 Thread llxwd008
Hi, I run my android game in landscape mode, there is only one view which extends SurfaceView. When touch a certain rect area, I want to call the IME. InputMethodManager m_inputMethodManager; m_inputMethodManager = (InputMethodManager)mContext.getSystemService(Context.INPUT_METHOD_SERVICE);

[android-developers] Google Tv

2011-11-11 Thread tillegomezz
is it possible use SIP/VOIP (android.software.sip) with google tv 2.0 thnks -- 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

Re: [android-developers] DatePicker in a fragment

2011-11-11 Thread Kostya Vasilyev
How about using a DatePicker view inside the dialog fragment? http://developer.android.com/reference/android/widget/DatePicker.html -- Kostya 11.11.2011 22:55, Kyle пишет: After reading various sources online, I know showDialog is deprecated and the recommendation is to use the

[android-developers] Re: TFTP (Trivial File Transfer Protocol) support

2011-11-11 Thread Diego Torres Milano
Are you trying to network boot Android in a similar way as PXE/EFI does ? If this is the case you won't be using Android SDK. On Nov 11, 12:12 am, petr.maza...@mautilus.com petr.maza...@mautilus.com wrote: Well, good question actually!! I will check if this is available. The reason why I am

Re: [android-developers] How to access class file

2011-11-11 Thread Mark Murphy
On Fri, Nov 11, 2011 at 6:47 AM, Ketan ket@gmail.com wrote: I want to acess class file from bin folder in android. I was doing it using File f = new File(/bin/filename.class); Its working fine in java but in android giving path doesnt work,,, so please suggest me other way to access

Re: [android-developers] Re: Option to unlock the boot loader for Sony Ericsson Android Gingerbread phones now available.

2011-11-11 Thread Peter Nielson
Here are the drivers for the Xperia Play/Arc http://dl.dropbox.com/u/31832369/Xperia_PLAY_neo_arc_acroIS11s_acroSO-02C_USB_drivers.zip Good luck, Peter On Fri, Nov 11, 2011 at 1:27 AM, Michel machsgu...@gmail.com wrote: Hello, I am an Android Windows developer using Eclipse and I would like

Re: [android-developers] In getting the kernel source code with the tag of 2.6.35.3:

2011-11-11 Thread Mark Murphy
Step #1: Visit http://source.android.com Step #2: Click on the Community tab Step #3: Find a Google Group relevant for firmware questions like this one Step #4: Ask your question there On Fri, Nov 11, 2011 at 4:57 AM, srinivasan shanmugam srinivasan@gmail.com wrote: Hi, I am facing the

Re: [android-developers] Google Tv

2011-11-11 Thread Mark Murphy
No, sorry: http://stackoverflow.com/questions/8084623/google-tv-sip-voip-android-software-sip On Thu, Nov 10, 2011 at 1:01 PM, tillegomezz tille...@gmail.com wrote: is it possible use SIP/VOIP (android.software.sip) with google tv 2.0 thnks -- You received this message because you are

Re: [android-developers] Make voice calls to use a self audio file instead of microphone output

2011-11-11 Thread Mark Murphy
On Thu, Nov 10, 2011 at 9:37 AM, Suresh vnsuresh@gmail.com wrote: I am trying to implement some kind of voice cryptography over a gsm connection (without modifing any gsm related codecs, we render pure audio which gets transmitted via gsm). Is it possible to initiate a voice call and

Re: [android-developers] getResourceAsStream and resource matching.

2011-11-11 Thread Dianne Hackborn
This uses the same resource matching as all other resources. The only difference is that it can't of course scale your stream to adjust for differences in density. On Fri, Nov 11, 2011 at 7:35 AM, port443 port4...@gmail.com wrote: Hi, I'm trying to use Class.getResourceAsStream for an APK

[android-developers] Re: Urgent help required

2011-11-11 Thread Android2ee
@Daniel, you're a great guy (smart, kind, precise and exact)... Thanks. On Nov 11, 3:43 pm, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On 11 November 2011 14:23, Sunil Mishra suniljmis...@gmail.com wrote: @skink and @Dainel According to me URL translation is like follows 1.

[android-developers] Re: Obsoleting 1.5

2011-11-11 Thread jtoolsdev
One might wonder how many of those 1.5 devices listed in statistic are really still active? I have a smattering of those but my apps don't do anything currently that would cut them out anyway. I do have an different APK for 10 tablets where I can use a full layout with fragments rather than

Re: [android-developers] Re: Obsoleting 1.5

2011-11-11 Thread Kostya Vasilyev
Why not make different layouts within the fragment-based .apk for 7 (or 6.9 or 7.1) devices based on the new, 3.2 and 4.0 resource qualifiers? 12.11.2011 1:30, jtoolsdev пишет: One might wonder how many of those 1.5 devices listed in statistic are really still active? I have a smattering of

[android-developers] Re: Urgent Help required

2011-11-11 Thread Spiral123
use the Facebook android SDK instead plz. Thanks in advance. On Nov 11, 11:27 am, chowdary nani naveenneeli...@gmail.com wrote: Please how to integrate face book in android.I am trying to do it using fbconnection/api.jar but i am facing problem in loading the jar -- You received this message

[android-developers] Re: Urgent Help required

2011-11-11 Thread Ali Chousein
It's pretty straightforward: https://github.com/facebook/facebook-android-sdk - Ali Chousein Weather-Buddy http://weatherbuddy.blogspot.com/ | http://twitter.com/weather_buddy Geo-Filtered Assistant http://geo-filtered-assistant.blogspot.com/

[android-developers] Re: Intensity of vibration in Xperia arc

2011-11-11 Thread Danny.Zubiate
Weird, works if I type it in the browser but not if I click the link. Try this one: http://www2.immersion.com/developers/index.php?option=com_contentview=categorylayout=blogid=110Itemid=503 Also, Dianne is correct that the particular hardware used to create vibration varies between devices and

[android-developers] Re: Use the Gyroscope to improve the orientation

2011-11-11 Thread gjs
Hi, hhenne - great insight explanation thanks. Regards On Nov 12, 3:35 am, hhenne hhe...@gmail.com wrote: Hi again, In my app, I am only interested in pitch and roll - not in yaw. The accelerometer can measure static pitch and roll (because of the gravity) - but not static yaw.

  1   2   >