Re: [android-developers] Re: Map Not working

2011-12-29 Thread Kiran Kumar Kendole
Znaz, Mark and Mukesh . Thanks for your time. I tried all the ways which you guys suggested. Still its not working. Here is all my code.. Please suggest me other ideas or appreciate if you send me some Maps tutorials.. I wil follow those... *ACTIVITY :* public class AndroGMapActivity extends

Re: [android-developers] Control number of items in split action bar?

2011-12-29 Thread Nikolay Elenkov
On Thu, Dec 29, 2011 at 4:11 PM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: Is there any way (API) to control how many items are displayed in the split action bar? Gmail and the ICS Email app display 4, while my apps only 3. Naturally, it's respecting the 'ifRoom' flag. If you set it

[android-developers] Re: Retriving the Contact number and name to the Edit text

2011-12-29 Thread Ali Chousein
You should use the ContactsContract API to read information about your contacts: http://developer.android.com/reference/android/provider/ContactsContract.html   Google for ContactsContract example you'll find plenty of them. - Ali Chousein

[android-developers] Re: Android Developing tech problems

2011-12-29 Thread Ali Chousein
Follow the instructions here: http://developer.android.com/sdk/installing.html  The procedure just works. - Ali Chousein Weather-Buddy http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy Geo-Filtered Assistant

[android-developers] How to read ONLY phone contacts, ignoring any SIM contacts, Google contacts, etc?

2011-12-29 Thread Eric
Hi all, I've written an Android App using the ContactsContract API to read contacts. I would like to read ONLY phone contacts, ignoring any SIM contacts, Google contacts, WhatsApp contacts, etc etc. My App enumerates all ContactsContract entries and finds the following values:

[android-developers] Re: How to accept automatically call

2011-12-29 Thread Ali Chousein
I googled for android answer call programmatically and found this discussion. Maybe it'll useful for your case also. http://stackoverflow.com/questions/2765980/android-how-to-programmatically-answer-a-call I've never implemented this feature but I guess you also need to register for

[android-developers] Re: Android GB build Err on Ubuntu 10.10

2011-12-29 Thread Basanagouda
YOU need to give RWX access to the folder you are using. Go to the parent directory of root android source directory (WORKING_DIR). then do chmod 777 WORKING_DIR -R This will fix the permission denied error. Regards Basana -- You received this message because you are subscribed to the

[android-developers] Re: Can't see Hello World on hello_avd screen ?????????

2011-12-29 Thread Albert Pi
OpaSmurf, I finally figured out and solved my issue. I can see Hello, Android on my emulator, also see another program LinearLayout, too 1. I reinstall jdk 6.0 ,eclipse 3.6.1 and ADT 4.0.3 plugin. I think the issue iI had before is jdk 6.0 issue. I only had jre (6.0). 2. Created Hello, Android

Re: [android-developers] problems when creating files in android

2011-12-29 Thread Mark Murphy
On Thu, Dec 29, 2011 at 6:34 AM, guich guiha...@gmail.com wrote: In native code when we create a file, it creates it with 666 permissions (rw * 3). In Java, it creates with 600. Java's is the right answer. Do not make files that are readable, let alone writeable, by UIDs other than the file

[android-developers] SVGs

2011-12-29 Thread bob
Sure, Android has support for bitmaps, but does it have support for SVGs (Scalable Vector Graphics)? That would be great if you could load some clip art easily into your app or game. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: ICS - checkbox style

2011-12-29 Thread dashman
i've got the following in my manifest file uses-sdk android:minSdkVersion=4 android:targetSdkVersion=11 / but i have to build with the api-11 sdk??? and if i did that - it'll still be compatible with api-4??? -- You received this message because you are subscribed to the

[android-developers] Re: problems when creating files in android

2011-12-29 Thread guich
mkdir(path, S_IRWXU | S_IRWXG | S_IRWXO) -- 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] Re: Android custom ImageView fade animation

2011-12-29 Thread Seb
Hi, I tried it but it doesn't seem to work :( Here's my code in the view that triggers the thread code in the activity: case MotionEvent.ACTION_DOWN: currentTouchIndex = checkForSquareTouch(X, Y); if (currentTouchIndex = 0)

[android-developers] Moving shifting

2011-12-29 Thread unionmoversuae
Welcome Enjoy world-class moving services at local rates! www.unionmoversuae.com 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

[android-developers] Re: Streaming link not working?

2011-12-29 Thread Jona
Android doesn't support mms streaming. I use XiiaLive to stream that type of content. On Dec 22, 8:05 pm, Thomas tti...@gmail.com wrote: SORRY MMS STREAM!!! Maybe thats why theres no reply :-) -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Why is my program not correctly writing to my database?

2011-12-29 Thread Jeresam515
Thanks so much On Dec 29, 11:43 am, James Black planiturth...@gmail.com wrote: Change your database version to recreate the table. On Dec 29, 2011 1:14 PM, Jeresam515 jeremyschiff...@gmail.com wrote: Thanks, I fixed that still have the same error though, here's my new code. package

[android-developers] Re: Nullsoft WinAmp UI question

2011-12-29 Thread Jona
They are using a view component called SlidingDrawer: http://developer.android.com/reference/android/widget/SlidingDrawer.html They than place the layout design of their player inside it. I would say fairly simple design approach. On Dec 18, 5:25 pm, TreKing treking...@gmail.com wrote: On Sun,

Re: [android-developers] Re: Found solutions

2011-12-29 Thread Jim Graham
On Thu, Dec 29, 2011 at 07:28:10AM -0800, Lew wrote: On Wednesday, December 28, 2011 8:13:31 PM UTC-8, Spooky wrote: On Wed, Dec 28, 2011 at 03:27:24PM -0800, Indicator Veritatis wrote: Well, Jim tnx fr the amusement, bt it is more fruitful to refer the OP to

[android-developers] Re: Mobile app discovery

2011-12-29 Thread Jose_GD
Hi, Kenneth Are you still researching about the discoverability / trial feature of Android apps? I personally would love to know any progress you have made in this area. Best regards, José -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] problems when creating files in android

2011-12-29 Thread guich
Hi, In native code when we create a file, it creates it with 666 permissions (rw * 3). In Java, it creates with 600. Is there a way in Java to specify the permissions when creating the file? Or maybe change it afterwards? I have the same problem for folders. thanks guich -- You received

Re: [android-developers] How to get pressed Unicode characters

2011-12-29 Thread Harri Smått
Hi, Have you played around with KeyEvent.getUnicodeChar() already? I don't know if it gives you a ready-to-go solution but based on documentation it should do some of the work for you at least. -- H On Dec 29, 2011, at 2:34 PM, Felipe Monteiro de Carvalho wrote: Hello, I have an activity

[android-developers] Re: Android custom ImageView fade animation

2011-12-29 Thread Seb
Just to clarify, if I change view.clock.startAnimation(AnimationUtils.loadAnimation( MainActivity.this, R.anim.rotate)); to: view.startAnimation(AnimationUtils.loadAnimation( MainActivity.this,

[android-developers] Re: How to get picture path from camera capture, the known method is not working for all devices???

2011-12-29 Thread Lidia
Thank you Mukesh Kumar for your idea, but would you be so kind to tell me what conditions should i use? -- 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

Re: [android-developers] Packing data onto socket stream ?

2011-12-29 Thread Miguel Morales
Just use a tcp socket and a bytebuffer. On Thu, Dec 29, 2011 at 6:47 AM, SL@maxis ecp_...@my-rialto.com wrote: I am sorry, I think this is not strictly an android question. From an android device, I want to a message to a PC via a socket. I am going to pack my data as follows:

Re: [android-developers] Re: Found solutions

2011-12-29 Thread Lew
On Wednesday, December 28, 2011 8:13:31 PM UTC-8, Spooky wrote: On Wed, Dec 28, 2011 at 03:27:24PM -0800, Indicator Veritatis wrote: Well, Jim tnx fr the amusement, bt it is more fruitful to refer the OP to http://catb.org/~esr/faqs/smart-questions.html I thought I WAS responding to the

[android-developers] facebook,login page is not loading?

2011-12-29 Thread Hitendrasinh Gohil
Hi, please visit below link.There is a weird problem with facebook api. http://stackoverflow.com/questions/8660838/weird-not-able-to-use-facebook-with-android -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] How to get picture path from camera capture, the known method is not working for all devices???

2011-12-29 Thread Mukesh Srivastav
I had a bad experience with the camera application, though i have successfully do it. The problem here most of the device htc returns the uri where as in samsung and nextil it was returning the intent data. it all about adding conditions and all. Warm Regards, *Mukesh Kumar*, Android

[android-developers] Composing Key Up events into a Unicode Character

2011-12-29 Thread Felipe Monteiro de Carvalho
Hello, This is a repost because I don't see my original, so maybe it failed to send... I have an Activity with 1 single View inside it and I am writing my own customdrawn toolkit which has its own controls, so I am not using any Android controls except this View. So my challenge now is to

[android-developers] importing of jar file problem

2011-12-29 Thread yogesh...@acusis.com
hello, I am using android 1.6... As i imported the aniqroid.jar (external jar). If i access the class with in it in my project (in main xml)... i am getting error: error! ClassCastException: com.android.layoutlib.bridge.MockView cannot be cast to android.view.ViewGroup Exception details are logged

Re: [android-developers] How to embed a MapActivity into another Activity with content on the top and the bottom?

2011-12-29 Thread TreKing
On Thu, Dec 29, 2011 at 9:50 AM, saex elpablos...@gmail.com wrote: I have the Activity ONE with a header and some content on the top of the activity, and some content on the bottom of the activity. I want to embed a MapActivity TWO on the Middle part of the Activity ONE. It is possible?

Re: [android-developers] Re: ICS - checkbox style

2011-12-29 Thread Mark Murphy
On Thu, Dec 29, 2011 at 7:39 AM, dashman erjdri...@gmail.com wrote: i've got the following in my manifest file uses-sdk android:minSdkVersion=4                  android:targetSdkVersion=11 / but i have to build with the api-11 sdk??? If you wish to refer to things that only exist with API

Re: [android-developers] Re: ICS - checkbox style

2011-12-29 Thread Mark Murphy
On Thu, Dec 29, 2011 at 9:15 AM, dashman erjdri...@gmail.com wrote: just before release, i'll comment out the holo theme style and build against api-4 - to make sure it's all good. That's certainly one strategy. -- Mark Murphy (a Commons Guy) http://commonsware.com |

Re: [android-developers] help on zoom

2011-12-29 Thread TreKing
On Wed, Dec 28, 2011 at 1:09 AM, chowdary nani naveenneeli...@gmail.comwrote: I need help on image zoom on touch http://www.catb.org/~esr/faqs/smart-questions.html - TreKing

[android-developers] How to embed a MapActivity into another Activity with content on the top and the bottom?

2011-12-29 Thread saex
I have the Activity ONE with a header and some content on the top of the activity, and some content on the bottom of the activity. I want to embed a MapActivity TWO on the Middle part of the Activity ONE. It is possible? How to do it? I'm checking ActivityGrup documentation and some questions

Re: [android-developers] Re: Why is my program not correctly writing to my database?

2011-12-29 Thread James Black
Change your database version to recreate the table. On Dec 29, 2011 1:14 PM, Jeresam515 jeremyschiff...@gmail.com wrote: Thanks, I fixed that still have the same error though, here's my new code. package com.drawing; import android.content.ContentValues; import android.content.Context;

Re: [android-developers] Re: I want to go on my activity class from broadcastreceiver

2011-12-29 Thread Jitesh dedhiya
*The error explains as*:- Whenever our activity is in background and comes to foreground, called by a service or any broadcasts, at that time we don't have any context for that activity thus we have to specify FLAG_ACTIVITY_NEW_TASK. On Thu, Dec 29, 2011 at 11:15 AM, surabhi jain

Re: [android-developers] Re: problems when creating files in android

2011-12-29 Thread Mark Murphy
On Thu, Dec 29, 2011 at 7:45 AM, guich guiha...@gmail.com wrote: Do you know if its possible to call a native mkdir from java without having to write a native code? There may not be a native 'mkdir'. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

Re: [android-developers] Native SIP Supported on all ICS Devices?

2011-12-29 Thread Mukesh Srivastav
Hi Shaun, I would like to share my experience with SIP Based application on Android. I never used the build in api's out of it. I had successfully integrated pjsip of CSipsimple open source and it is working great for me. http://www.pjsip.org/apps.htm Warm Regards, *Mukesh Kumar*, Android

[android-developers] How to get pressed Unicode characters

2011-12-29 Thread Felipe Monteiro de Carvalho
Hello, I have an activity with a single View inside it, and I use this view for everything I need. For getting basic key up / down events everything works very easily and fine with this: @Override public boolean onKeyDown (int keyCode, KeyEvent event) { //Log.v(lclproject,

Re: [android-developers] Native SIP Supported on all ICS Devices?

2011-12-29 Thread Graham Bright
Hi, I have been playing around with the sipdemo and I have created simple application. The application creates SIPManager object and attempts to connect using SipProfile to sip2sip.info. This doesn't work either from the phone (Samsung Galaxy 2 running 2.3 Android) or the emulator. I get back

[android-developers] Re: How to get picture path from camera capture, the known method is not working for all devices???

2011-12-29 Thread Lidia
Or, at least how to known which type of answer to expect? -- 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] [Bluetooth] Creating an insecure RFCOMM socket still requires pairing

2011-12-29 Thread smichak
I am using the listenUsingInsecureRfcommWithServiceRecord and createInsecureRfcommSocketToServiceRecord calls in order to connect one Android device to another. On the first setting I had a Nexus One and a Nexus S both running Android 2.3.6 - on this setting, connecting did not pop Pairing

[android-developers] HELP: Problem in Playing Avi files on Honeycomb Acer tab iconia 501

2011-12-29 Thread s.rawat
HI, I have acer iconia 501 tab and I am trying to browse the avi files from the sdcard and playing it using the media player using the video view but no success.It says sorry cant play the video file .Is it possible to install any avi player and on click if it can use the installed avi player or

[android-developers] Re: Why is my program not correctly writing to my database?

2011-12-29 Thread Jeresam515
Thanks, I fixed that still have the same error though, here's my new code. package com.drawing; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.SQLException; import android.database.sqlite.SQLiteDatabase; import

Re: [android-developers] facebook,login page is not loading?

2011-12-29 Thread TreKing
On Thu, Dec 29, 2011 at 7:29 AM, Hitendrasinh Gohil hitendrasin...@gmail.com wrote: There is a weird problem with facebook api. That has nothing to do with this list. - TreKing

[android-developers] Re: Map Not working

2011-12-29 Thread Znaz
Here is the link to the Android Tutorial: http://wing-linux.sourceforge.net/guide/tutorials/views/hello-mapview.html Here is another link to a similar tutorial, but one that also gives you code:http://mobiforge.com/developing/story/using-google-maps- android These can help you get the map to

Re: [android-developers] How to embed a MapActivity into another Activity with content on the top and the bottom?

2011-12-29 Thread James Black
I couldn't see how to do it, using mapactivity, as anything underneath isn't seen, just what is above it. On Dec 29, 2011 10:50 AM, saex elpablos...@gmail.com wrote: I have the Activity ONE with a header and some content on the top of the activity, and some content on the bottom of the

[android-developers] Re: ICS - checkbox style

2011-12-29 Thread dashman
ok mark i think i've got it now. just before release, i'll comment out the holo theme style and build against api-4 - to make sure it's all good. then i'll release using api-11 sdk. good? -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: ICS Listview Selector

2011-12-29 Thread authorwjf
One solution I've come across is not to use: item android:drawable=@android:color/transparent / for the default state but rather a solid color such as white. This effectively fixes the demo code, however it still causes issues in my production environment because the background of the listview

[android-developers] Re: problems when creating files in android

2011-12-29 Thread guich
Hi, Do you know if its possible to call a native mkdir from java without having to write a native code? thanks guich -- 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] view images in gallaery from SQLite database

2011-12-29 Thread Mohammed Mattar
i meed to view a set of images in gallery in my application, it's not suitable to load images using drawable folder because i have more than 50 images, so i need to save images as blob in my database and load it pragmatically in my gallery. i don't know how i can do that. -- You received this

[android-developers] Re: In-App: get Product list

2011-12-29 Thread MG-DE
Hello everybody, are there no best practices which google advise? Best regards -- 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

Re: [android-developers] Re: ICS - checkbox style

2011-12-29 Thread Mark Murphy
Make sure your build target is API Level 11 or higher. On Wed, Dec 28, 2011 at 8:40 PM, dashman erjdri...@gmail.com wrote: getting following compile error message error: Error retrieving parent for item: No resource found that matches the given name 'android:Theme.Holo.Light'. -- You

[android-developers] runtime errors from getApplication ...

2011-12-29 Thread theAndroid
hi there i am designing an application using NFC with a Nexus phone. i am starting from a working sample code, which i purged to have a working template to begin with the project compile w/o (compile time) errors. i am getting the following runtime errors when executing the method

Re: [android-developers] Looking to hire a developer for an Android app

2011-12-29 Thread J Handal
Fine,shoot me @ jhand...@gmail.com with details. -- 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: Auto Answer

2011-12-29 Thread Desu Vinod Kumar
we can access acceptCall from .adil. its possible. On Thu, Aug 20, 2009 at 2:18 AM, Mr Pinguin pinguint...@googlemail.comwrote: But acceptCall is in internal lib. so we can access it. or nor ? We can only generate KEYCODE_CALL, but how ? On 18 Aug., 18:13, Mingli Wang rint...@gmail.com

[android-developers] Packing data onto socket stream ?

2011-12-29 Thread SL@maxis
I am sorry, I think this is not strictly an android question. From an android device, I want to a message to a PC via a socket. I am going to pack my data as follows: xxxThis is a greeting. where: xxx - message type (3 bytes, text) - integer, 4 bytes, length of text 'This is a

[android-developers] How to get picture path from camera capture, the known method is not working for all devices???

2011-12-29 Thread Lidia
Hello developers, Does anyone knows a smart/short solution for the following situation? I used the following code to get the path for just created photo with camera capture. startActivityForResult( new Intent( android.provider.MediaStore.ACTION_IMAGE_CAPTURE),

Re: [android-developers] SVGs

2011-12-29 Thread Mark Murphy
On Thu, Dec 29, 2011 at 12:34 PM, bob b...@coolfone.comze.com wrote: Sure, Android has support for bitmaps, but does it have support for SVGs (Scalable Vector Graphics)? Not natively. You are welcome to try third-party libraries: http://code.google.com/p/svg-android/ -- Mark Murphy (a

Re: [android-developers] Problem Loading CM7 on my SD Nook Tablet

2011-12-29 Thread TreKing
On Tue, Dec 27, 2011 at 9:01 AM, hillgoo...@charter.net hillgoo...@charter.net wrote: Do you guys know what is amiss in my process? You're asking in the wrong forum. This is Android Developers Group, not Load CM7 On My Nook Group.

[android-developers] Re: Packing data onto socket stream ?

2011-12-29 Thread JP
Works in Java just like it does in C, with some added convenience functions that cut down on the amount of code you have to lay down. Just don't apply a Java Reader to your binary stream; it may hang up the Reader. On Dec 29, 6:47 am, SL@maxis ecp_...@my-rialto.com wrote: I am sorry, I think

Re: [android-developers] Re: Packing data onto socket stream ?

2011-12-29 Thread Marcelo Henrique
Use NDK. for implements you aplication in C/C++ 2011/12/29 JP joachim.pfeif...@gmail.com Works in Java just like it does in C, with some added convenience functions that cut down on the amount of code you have to lay down. Just don't apply a Java Reader to your binary stream; it may hang up

[android-developers] Re: OpenGLES Double Buffer malfunctions

2011-12-29 Thread Indicator Veritatis
Do you have to use 8 bits for each of RGB? Surfaces and textures on many Android devices only support 565, as has often been reported in this group. What has not been so clearly reported is what goes wrong if you specify the wrong (unsupported) values. Are you checking for EGL error codes after

Re: [android-developers] Re: uploading to the google cloud service

2011-12-29 Thread John Goche
Hi Studio! What a great service this appengine seems to be. Just a shame that MySQL is not going to be available for free it seems, so that users will have to stick with Java Persistence APIs and Java Data Objects (JPA and JDO) in order to save their data. The other thing I was wondering was, if

[android-developers] IMMED INTERVIEW - Database Architect (IMMED NEED)

2011-12-29 Thread Steven Smith
Dear Business Partner, Hope you are doing well today, Please review the requirement and let me know if you have any one available for the below position, Please send me your consultant updated resume with the contact detail ASAP Job Title: Database Architect Location: Augusta, ME Duration: 6

Re: [android-developers] Re: OpenGLES Double Buffer malfunctions

2011-12-29 Thread Abraham Stolk
thx, yes I am checking all gl calls with glGetError, but more importantly: I check for matching configs, and do get a match back for my test device (Acer Iconia). I'll try 565 but I will be surprised if that fixes double buffering. Bram On 2011-12-29, at 12:43 PM, Indicator Veritatis wrote:

[android-developers] Re: Native SIP Supported on all ICS Devices?

2011-12-29 Thread Shaun
Thanks for the reply, that's the direction I am looking at going now, CSipSimple has an API as well so that might make things easy, but I would much rather use the native SIP stack Google built in, I think this is all a carrier issue. On Dec 29, 6:06 am, Mukesh Srivastav mukicha...@gmail.com

[android-developers] How do I access my Views when using ViewPager/PagerAdapter?

2011-12-29 Thread Ricardo Amaral
I've started using a ViewPager on my app but I am not find the migration from the current layout easy. I'm looking for a better way than to rewrite most of my Activity's code... Currently I have most of initialization code on the Activity's onCreate(), for instance, stuff like findViewbyId()

[android-developers] Re: How to get pressed Unicode characters

2011-12-29 Thread Felipe Monteiro de Carvalho
Hello, thanks, this moves me a bit closer. But I still have one problem. When I do a long press in the virtual keyboard to select for example 4 from the items inside the key r, I get first a r key and then a 4 key. How can I detect that this first r should be ignored in my character processing?

[android-developers] Re: How do I access my Views when using ViewPager/PagerAdapter?

2011-12-29 Thread Ricardo Amaral
I've come up with a solution that solves the problem as easily as I wanted. Everything is working as expected... I just want to understand if this is a good solution or there's something wrong doing it this way... Every ViewPager tutorial/document (for instance, an official one:

Re: [android-developers] Re: Packing data onto socket stream ?

2011-12-29 Thread Kristopher Micinski
On Thu, Dec 29, 2011 at 3:30 PM, Marcelo Henrique marceloh...@gmail.com wrote: Use NDK. for implements you aplication in C/C++ There's no reason to use the NDK for this, The standard Java socket API can be used for this easily: http://docs.oracle.com/javase/tutorial/networking/sockets/ kris

[android-developers] Re: How to get pressed Unicode characters

2011-12-29 Thread lbendlin
you probably want to monitor the keyUp event rather than keyDown -- 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] Setting children of GridLayout dynamically

2011-12-29 Thread Reese Chappuis
I'm using the GridLayout to be able to define a complete grid of the same image. However, the exact dimensions of the grid will be changeable in the settings, so I was wondering- is there a simple way to just add the same image to the entire grid in the Java? -- Reese Chappuis -- You received

[android-developers] Translation exchange: we need Chinese, Japanese and Russian - we offer Spanish, Italian, English

2011-12-29 Thread Limon Solutions
Hi everyone, we are developing our app and we need to implement new languages. Chinese, Japanese and Russian are high priority. We are offering to translate one to one (app resources) from English to Spanish or Italian. Anyone?! Please if you need translation exchange please respond this

[android-developers] [In-app Billing] Need clarification on Android Market application version requirements in supporting In-app Billing

2011-12-29 Thread Tim Guo
I am confused by one statement in Google’s official document: *“If your device is running Android 3.0, in-app billing requires version 5.0.12 (or higher) of the MyApps application. If your device is running any other version of Android, in-app billing requires version 2.3.4 (or higher) of the

[android-developers] How to receive UDP packet on real device.

2011-12-29 Thread KiyoKiyo
Hi. I'm trying to make simple android App that receives UDP packet from PC via USB(not WiFi). First, I tried it on emulator. I used port redirection setup as below. 1/ telnet localhost 5554 (i.e. go to the emulator control console) 2/ type redir add udp:: (create a UDP redirection)

[android-developers] Adult themed games

2011-12-29 Thread Southern California
Where to put an adult themed game, (no nudity) to include adult ads. I have found Mikandi, but wondered if there were some DIY sites available yet? Thanks, Serene -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] single_apk_On_Multiple_devices

2011-12-29 Thread Teena sharma
Hello Please give suggestion that how can i install single .apk file on different configuration devices. I am using Android 3.2 and API level 13. when i run this apk on emulator(Android 3.2) images become starched. In drawable i have four folders hdpi,large,ldpi,mdpi,xhdpi. stil its not

[android-developers] how to capture http request and response in webview

2011-12-29 Thread RK
Hi, I need add a custom header to each http request ,which is going though webview. for this how can read http response in webview and add header to http request Thanks, RK -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Tamil App to learn Tamil Quickly now Available for Android

2011-12-29 Thread jude
Tamil is a beautiful and ancient language spoken in various parts of the World, predominantly in South India, Sri Lanka, Singapore and Malaysia. It has so many alphabets (247 to be precise) and hard to learn.Tamil alphabets application provides information about basic letters and example words

[android-developers] About full disk encryption

2011-12-29 Thread Qin Ding
Hi, I'm trying out Android full disk encryption feature now but not sure how to verify that the device is encrypted. What I've done is : [Test 1] 1) Push test.txt to /mnt/sdcard 2) Do full disk encryption 3) Pull the test.txt to my local [Test 2] 1) Embed test.txt into an apk as raw data 2) The

[android-developers] Can't see my device, need help

2011-12-29 Thread James Tan
Currently, I'm developing an Android's application for my Sony Tablet S but I'm having problem with the device which can't be discovered by Eclipse SDK with my device application's USB debugging mode ON. I've tried to change windows inf file for my device driver as suggested by few forum from

[android-developers] Re: Could not find hello-world.apk

2011-12-29 Thread Francisco M. Marzoa Alonso
My first message has not been published yet, but I answer it anyway to say that I solved the problem just by restarting Eclipse... O_o On 28/12/11 20:21, Francisco M. Marzoa Alonso wrote: Hello, I'm starting writting android games with a book called Beginning Android Games, of Mario Zechner.

[android-developers] Re: Disable beam on-screen confirmation

2011-12-29 Thread oavon
thanks for your post I have the exact same pb On Dec 24, 3:55 pm, Banjoo78 banjo...@gmail.com wrote: Hi, I'm developing an app that will use AndroidBeamto send messages between Android's phones. Until Gingerbread I was capable to send and receive messages without confirmation but, with Ice

[android-developers] Re: Disable beam on-screen confirmation

2011-12-29 Thread oavon
Thanks for your post i have the same pb On Dec 24, 3:55 pm, Banjoo78 banjo...@gmail.com wrote: Hi, I'm developing an app that will use Android Beam to send messages between Android's phones. Until Gingerbread I was capable to send and receive messages without confirmation but, with Ice Cream

[android-developers] JMS

2011-12-29 Thread Mario Giammarco
Hello, I am building an android app that need to communicate to a queue broker. I can choose any broker that can run under tomcat, I have a preference for activemq. So I need that my android app can use JMS or openwire, or AMQP (if I find a java broker for it). At the end I will use activemq

[android-developers] Flash player in background

2011-12-29 Thread asxz8722
Hi, dear I want to build a live video chating system. In my design, there are two activities: 1. chat People can chat in this activity. There should be a list of TextView, dynamic changing when someone is talking. 2. Live video player In this activity, a WebView embed a flash player to

[android-developers] [Urgent] [In-app Billing] Need clarification on Anroid Market application version requirements in supporting In-app Billing

2011-12-29 Thread Tim Guo
I am confused with the statement in In-app Billing Overview: *If your device is running Android 3.0, in-app billing requires version 5.0.12 (or higher) of the MyApps application. If your device is running any other version of Android, in-app billing requires version 2.3.4 (or higher) of the

[android-developers] single_apk_On_multiple_devices

2011-12-29 Thread Teena sharma
Hello Please give suggestion that how can i install single .apk file on different configuration devices. I am using Android 3.2 and API level 13. when i run this apk on emulator(Android 3.2) images become starched. In drawable i have four folders hdpi,large,ldpi,mdpi,xhdpi. stil its not

[android-developers] ICS Hardware Acceleration steals my OpenGL textures?

2011-12-29 Thread carlrice
I have an Android app which uses a bit of OpenGL running on a Galaxy Nexus with ICS. After turning on hardware acceleration and using my OpenGL activity some of those textures are stolen by the system and now in my listviews and other UI elements. Its as if my GL pointers obtained via

[android-developers] Could not find hello-world.apk

2011-12-29 Thread Francisco M. Marzoa Alonso
Hello, I'm starting writting android games with a book called Beginning Android Games, of Mario Zechner. I've written the first Hello World application after installing everything on my Ubuntu 11.10 laptop, and I doublechecked that I have followed the instructions on the book, but when I try to

[android-developers] How to stream .wmav2 format in Android 2.2+ ?

2011-12-29 Thread Dimitrios Makris
Hey all, I would like to ask if it possible to stream .wmav2 format in Android 2.2+. It is related to radio streaming which most links I have found is for .asf formats. (An example of a Greek radio station mms://94.75.220.129/best1222?MSWMExt=.asf). I have found some Android apps (TuneIn or Greek

[android-developers] MultiTouch Zoom in ImageSwitcher

2011-12-29 Thread senthil.manickavel
How to do zoom operation in ImageSwuitcher? -- 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] HelloWorld Application

2011-12-29 Thread alan4100
HelloWorld Application My first posting is at OTN Discussions Forum (under Oracle). Somebody recommended to this forum; faster responses. 99.9% Solved. I am not sure which one I am in because I am just a complete beginner. I was getting the android SDK to work from Android3 SDK Programming by

[android-developers] Animation Trail while using Rotate Animation

2011-12-29 Thread sunil bhatia
Hi, I am trying to rotate a framelayout at orientation change. Layout is getting rotated but it shows trail on device , Like some spots remain on the screen while roatating. Can anyone help in this regard, How to remove those animation trails? Any help on this would be highly appreciated. Thanks

[android-developers] Guide Me please Guys I am from pakistan Asp.net c# Developer And Database developer in Microsoft Sqlserver

2011-12-29 Thread Asif Nazeer Shaikh
Please Give Me Basic Tutorials I am New Beginner To Work On Android Application So can Any one guide me I will be thankful and remain remember in my prays -- 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] Need simple code for C2DM

2011-12-29 Thread Kishore
Hi i am a student doing projects based on C2DM technology.. I dont know where to start at first.. Pls send me sample codes and mention how to run that application.. I have registered for C2DM!.. i tried to run programs given at http://code.google.com/eclipse/docs/appeng_android_run_debug.html

[android-developers] Advanced Touch Control: passing touch event from one view to another

2011-12-29 Thread Sky
I have one custom made view that I can drag across the screen horizontally. Within this view is a ScrollView. I already have it so I can decide whether the user is dragging across the screen horizontally or vertically, enabling/disabling the onTouchEvent() for the appropriate views. However the

[android-developers] How to invoke sim unlock pin screen

2011-12-29 Thread Giacomo Federici
As the title, how can I invoke programmatically the default screen to unlock the sim card? (The one that appears at the boot of the phone if the sim PIN is required). Thank you very much!! -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Can Android apps access both the Wi-Fi and cellular data networks at the same time?

2011-12-29 Thread DigiGuy
I'm working on an application that will run on a phone where the phone will be a station on a private Wi-Fi network. The phone will be a station, not an access point, and the private Wi-Fi network does not route to the Internet. My application needs to communicate with servers on the Internet as

  1   2   >