[android-developers] Re: SQLite and store dates

2012-04-03 Thread Michael Kuethe
Dear SgAlmeida, everthing in SQlite is stored as a string. Even the Field wihch are marked as integer or numeric. When it's possible you should Cast your Date Value to a Long Value (Unix Date) and store that long value in an integer Field of the sqlite database. regards Michael Am Mittwoch,

[android-developers] Re: Android DateTimePicker to save in database

2012-04-03 Thread Michael Kuethe
Dear Kirupa, cast the date and time to a unix date (Java.util.date), extract the long representation (.getTime()) and store this value in an integer field of the database regards Michael Am Montag, 2. April 2012 10:16:22 UTC+2 schrieb Kirupa: How to save time and date into database when

[android-developers] game desginning

2012-04-03 Thread Ahmed Bakir
hello with physics box2d and andengine how do you make games -- 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: Will we ever be allowed to make custom widget pickers?

2012-04-03 Thread Kevin TeslaCoil Software
Currently there is no way to avoid using the built in widget selection UI (the list of widgets you get in gingerbread when you add a widget). This kind of sucks because it means you can't have anything like the ICS launcher's widget page. Also the system widget picker in ICS doesn't

[android-developers] Re: Who can explain it for me ? What is the problem ? ANR in android.process.acore

2012-04-03 Thread Ali Chousein
Probably you are blocking the main thread, doing computations which take time. Consider creating a thread which is going to do the computations which are currently done in the main thread. This is an important link to read and understand:

[android-developers] Re: ANDROID NET - Create a new parallel and open source network via mobile device for data and voice communication

2012-04-03 Thread romdroid
Seems like an interesting and high sophisticated project - if I get you right, you want to have a connection to 2 different networks at the same time? Isn't there a problem that you can't have 2 connections at the same time running on a single device? Or do you want to have something like an

[android-developers] Re: How to use AlarmManager on Dialog?

2012-04-03 Thread Ali Chousein
Reading your code I understand that you need to grasp better how AlarmManager works. I would advice you to study the AlarmManager samples which come with the SDK installation. Search in them for AlarmManager and you'll find examples showing how to set alarms properly.

[android-developers] Difference between user-induced screen on and programmatically induced screen on.

2012-04-03 Thread Put_tiMe
Screen-on can be done in two ways: 1. User pressing the power (or home button) 2. Through code: by using power manager - wake lock - with screen-on flag. Either ways, I get a 'Intent.ACTION_SCREEN_ON' intent. Is there anyway I can distinguish between the two intents? ** ** -- You

[android-developers] Re: please help me

2012-04-03 Thread Ali Chousein
Android documentation makes very good suggestions on this: http://developer.android.com/resources/faq/framework.html#3 - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com |

[android-developers] Re: After sent SMS successful, hope my activity will receive the sent message

2012-04-03 Thread Ali Chousein
And why you don't consider using SMSManager? If you don't, your code won't be notified that the SMS was sent and delivered. I advice you to reconsider your decision for not using SMSManager. Someone wrote an excellent tutorial on this: http://mobiforge.com/developing/story/sms-messaging-android

[android-developers] Re: SMS URI trigger Application

2012-04-03 Thread Ali Chousein
http://stackoverflow.com/questions/2372248/launch-sms-application-with-an-intent - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy

[android-developers] Re: HI, I am a game designer form HK and have done a game by UNITY

2012-04-03 Thread Ali Chousein
Have you gone through the steps explained in the following link? I think you are trying to publish your debug APK. http://developer.android.com/guide/publishing/publishing.html - Ali Chousein http://socialnav.blogspot.com |

[android-developers] Re: passing data to android vnc viewer...

2012-04-03 Thread Ali Chousein
Consider using the putExtra method on Intent: http://developer.android.com/reference/android/content/Intent.html#putExtra%28java.lang.String,%20android.os.Bundle%29 - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1

[android-developers] Re: developing a trivia game

2012-04-03 Thread Ali Chousein
how is it possibleplease explain You forgot to ask his hourly rate! -- 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: LinkedIn integration issue

2012-04-03 Thread Ali Chousein
And then if you still have problems, contact them:http://developer.linkedin.com/rest Or contact me. My hourly rate is 120 Euros. -- 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: OpenGL lockups in 2.2

2012-04-03 Thread cybice
It looks like i found workaround. In all my apps error waitForCondition(LockCondition) timed out disappeared. The workaround is next. I preload two copy of each texture into GPU - texture1 and texture1copy, and in onDrawFrame one call i use first texture copy, next call i use second texture

[android-developers] Re: game desginning

2012-04-03 Thread Zsolt Vasvari
By reading the documentation and learning how to program. On Tuesday, April 3, 2012 2:53:38 PM UTC+8, Ahmed Bakir wrote: hello with physics box2d and andengine how do you make games -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: developing a trivia game

2012-04-03 Thread TreKing
On Fri, Mar 30, 2012 at 11:39 AM, Vinaya Godbole vinayag1...@gmail.comwrote: how is it possibleplease explain You write code to execute the logic you just described. This is called programming, or software development.

Re: [android-developers] Re: developing a trivia game

2012-04-03 Thread Shoaib Malgave
tnxs On 4/3/12, Ali Chousein ali.chous...@gmail.com wrote: how is it possibleplease explain You forgot to ask his hourly rate! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Hierarchy Viewer Tool

2012-04-03 Thread TreKing
On Mon, Apr 2, 2012 at 3:54 AM, Ankur-Ra rathore.an...@gmail.com wrote: I have developed an Android app and want to know how to use the Hierarchy Viewer tool for Optimizing the User Interface,what are the meaning of the various indications that this tool displays?

Re: [android-developers] Problem with multiple redraw of overlayitem

2012-04-03 Thread TreKing
On Wed, Mar 28, 2012 at 7:16 PM, Linoxps p12li...@gmail.com wrote: Does anyone have any idea on how to redrawn a drawable marker over and over again without affecting the transparency or shadows that might have? What does your draw method look like?

Re: [android-developers] Project contains Errors - for new created file

2012-04-03 Thread TreKing
On Thu, Mar 29, 2012 at 9:48 AM, Marcus Maximus marcus.pres...@gmail.comwrote: I am trying to create my first android project and when I want to compile the newly created file, eclipse gives me an error message. Do a Google search of the exact error you get.

Re: [android-developers] InputConnection becomes inactive after launching Activity from IME

2012-04-03 Thread Shoaib Malgave
tnxs On 4/3/12, tsukishiro tsukishir...@gmail.com wrote: Hello guys, I launched a translucent Activity that contains custom views from my IME (so that I can have a full-screen IME whose layout I can control relatively). My problem is when I tried to call commitText of the InputConnection

Re: [android-developers] android market limitations question

2012-04-03 Thread TreKing
On Thu, Mar 29, 2012 at 3:36 PM, gsk gys...@gmail.com wrote: Hi, I have two questions about publishing apps in android market. http://support.google.com/googleplay/android-developer/bin/answer.py?hl=enanswer=136601

Re: [android-developers] Difference between user-induced screen on and programmatically induced screen on.

2012-04-03 Thread TreKing
On Tue, Apr 3, 2012 at 2:29 AM, Put_tiMe putt...@gmail.com wrote: Is there anyway I can distinguish between the two intents? If you explain why you need to distinguish, maybe you'll get a hand in employing a solution to the actual problem you're having.

[android-developers] CSV android api with formatter for google contacts?

2012-04-03 Thread Abalufaske
Hi there i was just wondering if there is an API of csv wich makes your file compatible with csv importer of android contacts -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Textview gravity resets

2012-04-03 Thread Kostya Vasilyev
Ok, understood. fill_parent refers to the parent's width. Perhaps the text view's parent changes its width? An easy way to find out is to temporarily assign bright, solid, distinct background colors to views in your hierarchy. -- K 3 апреля 2012 г. 4:24 пользователь adev enric...@gmail.com

Re: [android-developers] Difference between user-induced screen on and programmatically induced screen on.

2012-04-03 Thread Put_tiMe
I have registered for SCREEN_ON intent. In the alarm-manager, I grab a wake_lock with *FULL_WAKE_LOCK* flag and that switches on the screen. This sends a SCREEN_ON intent. In the meanwhile, the user could also have switched on the screen. I want to handle this intent in different ways,

[android-developers] Re: Detect SMS sending limitation

2012-04-03 Thread Jawwad Farooq
Any further comments? Thanks On Mar 29, 6:32 pm, Mark Murphy mmur...@commonsware.com wrote: On Thu, Mar 29, 2012 at 3:33 AM, Jawwad Farooq jawwad.far...@gmail.com wrote: Is there still a limitation on sendingSMSin Android 2.2+ versions? In Android 2.2, an App can't send more than 100

[android-developers] physics box 2d andengine game

2012-04-03 Thread Ahmed Bakir
beginner in developing anything so can someone please give me some help here -- 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] physics box 2d andengine game

2012-04-03 Thread Daniel Drozdzewski
right away: I suggest learn something first, then spend decent amount of time grafting, before asking for any help, and when asking, please ask precise and specific questions, as it is an impossible task to give you *some help here* in developing *anything*. There must be a reason, why there

[android-developers] Help for drawfing Ruler.

2012-04-03 Thread yogendra G
Hi All, Hope all are doing good. I need a help as mentioned in subject i.e. I have got requirement to display a Ruler with some values say like 1,2,3... and based on setting of ruler value i need to get. So please give me with some ideas how to do it possible with few samples for the same.

[android-developers] eclipse can't connect the debugger

2012-04-03 Thread karan hans
hi, iam a newbie so please help me out. I'am running the eclipse in debuggable mode. i have entered the debuggable mode in AndroidManifest.xml as true. However eclipse hangs while running in debuggable mode. i get the following message in the console window. [2012-04-03 15:10:43 -

Re: [android-developers] Re: Detect SMS sending limitation

2012-04-03 Thread Mark Murphy
On Tue, Apr 3, 2012 at 5:28 AM, Jawwad Farooq jawwad.far...@gmail.com wrote: Any further comments? No. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android

Re: [android-developers] physics box 2d andengine game

2012-04-03 Thread David Olsson
You can also stop asking the same question over and over again. Read the answers you already have and learn how to code. Or pay someone to do it for you. On Tue, Apr 3, 2012 at 11:58 AM, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: right away: I suggest learn something first, then

[android-developers] Re: Textview gravity resets

2012-04-03 Thread adev
the parent is a tablerow, then a tablelayout, then linear layout (relative) so I have width set to fill_parent set to all. I actually do have it colored already inorder to have a border the size does not seem to change. I think the strange part is that this does not happen til after the adview

Re: [android-developers] Looking for a coder

2012-04-03 Thread Chris Ruskai
Is this project still going on? On Thu, Dec 1, 2011 at 3:50 AM, Sushant Ratnaparkhi sushant.ratnapar...@gmail.com wrote: hey Alexander, I am an engineer in comp sci. I have good programming experience in JAVA and C++, and some exp in android SDK (have developed one app, didn't publish).

[android-developers] Chronometer save state

2012-04-03 Thread Giuseppe
During the chronometer counting, if the user rotate the screen, the counter return to 00.00 and stop !!! how do solve it? -- 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: Chronometer save state

2012-04-03 Thread lbendlin
Per default the Android OS restarts your activity when the screen orientation changes. You can either tell the OS not to do that, or you can hook into the event and preserve/re-seed your timer. On Tuesday, April 3, 2012 10:09:11 AM UTC-4, Giuseppe wrote: During the chronometer counting, if

[android-developers] Re: Chronometer save state

2012-04-03 Thread Giuseppe
Yes I know how to tell the system to not do that with android:configChanges=orientation|keyboardHidden, but this is not useful for our app as this don't change the layout to the different view. Could you help with save state ? Il giorno martedì 3 aprile 2012 16:31:41 UTC+2, lbendlin ha scritto:

[android-developers] Re: Chronometer save state

2012-04-03 Thread Giuseppe
Yes I know how to tell the system to not do that with android:configChanges=orientation|keyboardHidden, but this is not useful for our app as this don't change the layout to the different view. Could you help with save state ? -- You received this message because you are subscribed to the

Re: [android-developers] Re: Chronometer save state

2012-04-03 Thread Nikolay Elenkov
On Tue, Apr 3, 2012 at 11:39 PM, Giuseppe porcelli.giuse...@gmail.com wrote: Yes I know how to tell the system to not do that with android:configChanges=orientation|keyboardHidden, but this is not useful for our app as this don't change the layout to the different view. Could you help with

Re: [android-developers] Re: Chronometer save state

2012-04-03 Thread Justin Anderson
Could you help with save state ? http://developer.android.com/reference/android/app/Activity.html#onSaveInstanceState%28android.os.Bundle%29 Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 3, 2012 at 8:42 AM, Nikolay Elenkov

[android-developers] Openipmp DRM solution for android

2012-04-03 Thread sangram
Hi all, We are planning to write openipmp DRM plugin for android. Our target will be ICS version on OMAP4 board(Blaze). Has anybody done similar kind of work in the past? Just wanted to know how should one go about it? Is there any other alternative for openipmp? thanks, Sangram -- You received

Re: [android-developers] Unzipping files

2012-04-03 Thread RDX 2104
Actually i want to develop an application which read the content in the password protected zip files Actually my aim is to provide security to video files. When anyone access that files without that app then that files cannot to accessible to that person. On Tue, Apr 3, 2012 at 4:02 AM, Justin

[android-developers] Re: Display Rotated/vertical Text in a webview

2012-04-03 Thread Manish Dubey
I also want to know how to display rotated text like that of ticker in Facebook, 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

Re: [android-developers] Re: Display Rotated/vertical Text in a webview

2012-04-03 Thread Kostya Vasilyev
Have you tried CSS (for WebView)? Or Canvas.rotate? 3 апреля 2012 г. 19:59 пользователь Manish Dubey manishja...@gmail.comнаписал: I also want to know how to display rotated text like that of ticker in Facebook, in android? -- You received this message because you are subscribed to the

Re: [android-developers] Unzipping files

2012-04-03 Thread Justin Anderson
Actually i want to develop an application which read the content in the password protected zip files Actually my aim is to provide security to video files. When anyone access that files without that app then that files cannot to accessible to that person. And my question remains the

[android-developers] Re: ANDROID NET - Create a new parallel and open source network via mobile device for data and voice communication

2012-04-03 Thread Chris Stratton
On Monday, April 2, 2012 4:30:48 AM UTC-4, jacopo.tolja wrote: Here the Idea, I was out in the sea about 5 miles from the coast and I could connect to the internet without problem. Android OS in the phone is designed to connect ONLY to the backbone grid. WHAT IF THE BACKBONE GRID IS

[android-developers] Re: Gallery app... bitmaps exceed memory in listView

2012-04-03 Thread Streets Of Boston
Don't load your images in full (100%) size. Load them no larger (or maybe slightly larger) than the size of the screen (in pixels). Take a look at this link: http://developer.android.com/reference/android/graphics/BitmapFactory.Options.html and look at the 'inSampleSize' parameter: Set this to

Re: [android-developers] Re: Hello everyone, what i have done so far regarding passing a ListView from one activity to another

2012-04-03 Thread tarun sablok
Firstly to make tts work in your current activity use init() function which initializes the tts engine for you in the current activity . secondly you can include the speak function in the onListItenClick() , in which you can get the exat position where it was cllicked and get the

[android-developers] Latency of onPreviewFrame callback when using setPreviewCallbackWithBuffer()

2012-04-03 Thread Qianqian Fang
hi developers I am working on an android program to control an external hardware and process camera images in the real time. The hardware interface is an IOIO (http://www.sparkfun.com/products/10585). It controls an LED array to turn on and off. The software captures images from the camera using

[android-developers] (e-)books on Android XML Layouts: suggestions?

2012-04-03 Thread Jim Graham
Working on my current project, one thing I am really missing is a good, solid, and *complete* reference covering Android XML layouts, widgets (from the XML side), etc., from beginner to advanced, with explanations, (maybe with examples, maybe not), and so on. A full book/e-book would be nice. I

[android-developers] CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Graham Bright
Hi, I have a hashmap with key, value pairs example :- (msisdn,value) 43664xxx,2 43665xxx,3 now I want to display this information in a ListView but I don't know how to feed the data to an ArrayAdapter. HERE IS MY ADAPTER, note I want to replace myList with data from the Hashmap a

[android-developers] Video

2012-04-03 Thread Goutom
Hi I want to record video using default camera app in the phone. I tried using code from android training.It dose not work. It dose not return video output in the activity result. I want a simple project which takes video and works perfectly. Take care. Regards RiskyCoder -- You received

Re: [android-developers] CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Justin Anderson
Keep in mind that HashMap does not have an order... ArrayAdapter does everything based on a position value, which indicates an ordered collection of some sort. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 3, 2012 at 1:16 PM, Graham Bright

Re: [android-developers] CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Graham Bright
Thanks Justin, Order is not important, as my end goal is to present to the user a simple list of values + keys. When the user longclicks on an item it will be deleted from the hash. What would you suggest? graham On Tue, Apr 3, 2012 at 9:24 PM, Justin Anderson magouyaw...@gmail.comwrote:

Re: [android-developers] CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Justin Anderson
When you need to update the adapter, iterate over your hash map and insert all the data into a list. Maybe do something like this: 1) Create a DataPairs class: public class DataPairs { public String _key; public String _value; public DataPairs(String key, String val) {

Re: [android-developers] CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Graham Bright
Thanks Justin, I'll give that a go. graham On Tue, Apr 3, 2012 at 9:56 PM, Justin Anderson magouyaw...@gmail.comwrote: When you need to update the adapter, iterate over your hash map and insert all the data into a list. Maybe do something like this: 1) Create a DataPairs class: public

Re: [android-developers] CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Graham Bright
One more question when I declare a test HashMap it seems only to work as static private static final MapInteger, String myHashMap = new HashMapInteger, String(); static { myHashMap.put(1, one); myHashMap.put(2, two); } and I am unable to access the HashMap outside of the brackets. So new

Re: [android-developers] CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Justin Anderson
One more question when I declare a test HashMap it seems only to work as static private static final MapInteger, String myHashMap = new HashMapInteger, String(); static { myHashMap.put(1, one); myHashMap.put(2, two); } and I am unable to access the HashMap outside of the brackets. So new

Re: [android-developers] CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Justin Anderson
Can you provide some actual snippets of code... like more than just how you are declaring your HashMap? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 3, 2012 at 2:42 PM, Justin Anderson magouyaw...@gmail.comwrote: One more question when I

Re: [android-developers] CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Graham Bright
private static final MapInteger, String myHashMap = new HashMapInteger, String(); static { myHashMap.put(1, one); myHashMap.put(2, two); } Sorry I found the problem thanks graham On Tue, Apr 3, 2012 at 10:42 PM, Justin Anderson magouyaw...@gmail.comwrote: Can you provide

Re: [android-developers] CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Justin Anderson
Why are you making it static? Just do this: public class MyClass { private MapInteger, String myHashMap; public MyClass() { myHashMap = new HashMapInteger, String(); myHashMap.put(1, one); myHashMap.put(2, two); } } Thanks, Justin Anderson

Re: [android-developers] ADT 17.0.0 wont install on Eclipse Indigo

2012-04-03 Thread Lew
mpd wrote: Well I have not done any Windows installs but this is the correct link. You can try using http instead of https, however this sounds more like something is missing from the site. Did you use the correct choice for windows? On another related issue similar to this is my last

[android-developers] Re: CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Graham Bright
Thanks, That worked fine fine, I'm new to this stuff :) maybe I could use the following to feed the data to an ArrayAdapter from the Hashmap which is declared outside of MyClass not sure if that would work new ArrayListString(myHashMap.keySet()), assuming myHashMap is a HashMapString,

Re: [android-developers] Re: CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Justin Anderson
maybe I could use the following to feed the data to an ArrayAdapter from the Hashmap which is declared outside of MyClass not sure if that would work new ArrayListString(myHashMap. keySet()), assuming myHashMap is a HashMapString, Something. Then your ArrayList would only have half the

Re: [android-developers] ADT 17.0.0 wont install on Eclipse Indigo

2012-04-03 Thread mike digioia
Yes this is the link I was referring. So I assume someone has used this one and no issues discovered, On Tue, Apr 3, 2012 at 1:54 PM, Lew lewbl...@gmail.com wrote: mpd wrote: Well I have not done any Windows installs but this is the correct link. You can try using http instead of https,

Re: [android-developers] Re: CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Graham Bright
Hi, So I have something like this now * public class listmodified extends ListActivity implements OnGestureListener { //public ArrayListString myList = new ArrayListString(Arrays.asList(items)); public MapInteger, String myHashMap; { String Result=;

Re: [android-developers] Re: CAN SOMEONE PLEASE HELP with hashmaps thank you

2012-04-03 Thread Justin Anderson
*myHashMap.keySet().toArray();* *myHashMap.values().toArray();* These lines of code aren't doing anything... *Result = : + myHashMap.keySet().toArray() + myHashMap.values().toArray();* Other than for debugging, I can't see any possible use for this What are you wanting to do with

[android-developers] Re: How to use AlarmManager on Dialog?

2012-04-03 Thread Michael Chan
Hi, 'new Intent(com.siitne.candelaria.notificationSystem.AvisoReceiver.class)' is not valid Intent unless com.siitne.candelaria.notificationSystem.AvisoReceiver.class is valid action. Can you try sending the intent from onClick() and make sure that works first? Thanks, Mike -- You received

Re: [android-developers] what are all the details return by the card reader to the phone

2012-04-03 Thread Todd Grigsby
That depends on the hardware. Some MSRs return track data, some, like IDTechs audio plug devices, can hand back an encrypted block. if you're doing EFT processing yourself, you want to handle the data directly, but if you're communicating with an EFT processor you need to talk to the processor

[android-developers] Receive Data SMS on Android ICS

2012-04-03 Thread Shatazone
My application has a static broadcast receiver that listens to specific data sms on port 50011 to wake up the application and run. I tested the app on a wide range of android devices (android 2.1 - android 2.3.4) and it is working perfectly. However, I am trying it now on Samsung Galaxy Nexus

[android-developers] Is it possible to ... ?

2012-04-03 Thread Martin
Hi everybody, I would like to ask you something. Is it possible to launch for example 2 execs on a Android device (as far I know, for the moment, that's possible ^^ ), but each one will have to display something on the screen, 1 layer/exec, and both of them are visible ?? So ... is it possible

[android-developers] Re: ActionBar and Tabs question:

2012-04-03 Thread Spencer
Have you found a solution to this problem? I'm looking to do the same thing, and emil10001's reply doesn't really address what you're asking for. -- 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] speech recognition problem

2012-04-03 Thread louic
Hello, I am new here, when I test any application voice recognition on the emulator android SDK in eclipse I get the following message: 'speech recognition is not this device is avaibabel Will not this app work as Intended'. Thank you, -- You received this message because you are subscribed to

[android-developers] help in using android USB host mode

2012-04-03 Thread ashish sharma
Hello, I am working with Lenovo tablet (Android 3.1) and I want to fetch data from Telosb sensor. The sensor has following interface and endpoint Interface 0 Endpoint 0: Inbound, type- bulk, max packet size- 64 Endpoint 1: Outbound, type- bulk, max packet size- 64 I want to read the data from

[android-developers] How to set Live Wallpaper automatically everyday in Android.

2012-04-03 Thread Hemu
Hi All, I want to ask one question how can we set Live Wallpaper Automatically everyday in Android, as we can set normal wallpaper successfully in this way by using the following code. final WallpaperManager wallpaperManager = WallpaperManager.getInstance(this); final Drawable

[android-developers] 安装Google API 插件出问题

2012-04-03 Thread qingtaop...@yahoo.com.cn
用Android SDK and AVD Manager安装Google API 插件出问题,说不能装载包,连接超时,另外,在Android SDK and AVD Manager不能显示未安装的包,因此,在Android SDK and AVD Manager没有显示Google API 插件,是什么原因?求帮助。 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] how can i call web service

2012-04-03 Thread arun
HAI PLZ HELP ANY ONE, how can i call Web service in android send a simple code with xml also, -- 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] simple picture loading from sdcard

2012-04-03 Thread royi shtainberg
hi all, im a new developer here so... i am trying to change an imagview to a picture from the phones sd card. as simple as that. i managed to get to the phones gallery and select a picture. but i dont seem to manage to retrive the picture and change the current imagview to the new one. thats

[android-developers] How to read pdf/ppt/doc file in android offline?

2012-04-03 Thread bhagyashri vaikos
Hi all, I am doing a project in which i want my application should read pdf/ms- office file in offline mode. I know that by using googledocs webview we can read these file online but i want to do this offline. One more thing that i know is one can use the related application if its install on

[android-developers] setting Wallpaper in Android using button

2012-04-03 Thread baturanija1
Peopple...i have a problem that is killing my head.Every forum show a result but my applications is not working.How can make one simple f button ,when i click on it change wallpapeor on my screen on desktop od my android device.I trued many codes and did not suiccesed..Please, send me

[android-developers] Reasoning Engine in Android

2012-04-03 Thread Ivan
Wonder any information about reasoning engines inside Android System, just as Jena and Jess for Java? -- 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] How to remove/disable TSBs from android 4.0

2012-04-03 Thread govindarao annigeri
Hi, I would like to remove/disable TSBs from my ICS phone. i have set activity theme as full screen , only the status bar is getting removed , please help. -- -Thanks, Govindarao 91-9900512210 -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Regarding checkjni flag on ICS

2012-04-03 Thread Alhad Mairal
Hi All, i am observing a issue related to JNI warning when i try to run the gunbros game on ICS . I observed that it is working on Samsung Nexus (may be because checkjni is disabled on commercial phones). I wanted to disable the checkjni by performing following steps :- pull

[android-developers] Using custom Map image in MapView

2012-04-03 Thread kaptan komando
Hi, I have a question about Mapview. I have an image which is a map of small area (Link: http://goo.gl/bvn80 ). Can i use this image in mapview? if it is possible can i use overlays on it? I can add different images for different zoom levels. If there is no way to do this with Google Maps, is

[android-developers] Get instance of background service on boot complete

2012-04-03 Thread Oleksandr Ekzarov
I have a background service, which was bound and started from main activity: Intent intent = new Intent(MyService.class.getName()); startService(intent); bindService(intent, serviceConnection, 0); When activity started, service has benn created(Service onCreate is called). When user click back,

[android-developers] Re: How to debug - Unsupported devices due to your manifest settings

2012-04-03 Thread David Montiel
Same problem here, same device too permissions... uses-permission android:name=android.permission.CAMERA / uses-permission android:name=android.permission.INTERNET / uses-permission android:name=android.permission.READ_CONTACTS / uses-permission

Re: [android-developers] physics box 2d andengine game

2012-04-03 Thread jadranko bodiroga
what do you whant to know? Bodiroga CG -- 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] Avoiding FAILED BINDER TRANSACTION error when updating lots of widget bitmaps

2012-04-03 Thread Michael Lamers
Hi, I have the same problem using setImageURI. The problem seems to be worse than just a scaling issue. It seems that some vendors have fixed this bug for some of their devices. I have a HTC Sensation that doesn't scale the image set through setImageURI. All other devices I know do. For me

[android-developers] Question

2012-04-03 Thread sahar
Dear all, I am Sahar. and I try the totorial the Augmented Reality http://www.devx.com/wireless/article/42482/1954 but it is dosn't work with me. and I change a lot of thing after that it was work. question: in my program I have camera view full screen and I have sensor value in my

[android-developers] branding existing app

2012-04-03 Thread Mark
Hi, I have an existing app and we're in the process of branding it. We'd like to keep the source as one project. I think this means I'll need separate resources and a separate R class. How would i go about switching the resources and the R class? Are there other ideas on how to properly brand

[android-developers] Wait screen on buffering video

2012-04-03 Thread Luis Domingues
Hello, I have a question. In my app, I can see a video from Internet and I want a wait Progress dialog when the video is buffering. Here is my code: private void loadView(String cam) { progressDialog = ProgressDialog.show(WebCamVideo.this, , getString(R.string.loading), true, true, new

[android-developers] Re: Consuming a SAP MII webservice.

2012-04-03 Thread Görsel Kıraş
Hi Rajesh. You can check my post to connect a webservice provided from SAP. http://www.gkyazilim.com/wp/2012/02/10/android-ksoap2-web-service/ On 9 Şubat, 20:12, RGudipati rajesh.gudip...@gmail.com wrote: Hi All, I am new to the Android Development. I am building an app which connects to

[android-developers] Replacing a Fragment/Tab in a Viewpager

2012-04-03 Thread Blobby
I am currently trying to make framework for my future apps. I really like the ActionBar and the ViewPager, but miss a feature. I need to replace a Fragment/Tab in runtime. Using the offical examplehttp://developer.android.com/reference/android/support/v4/view/ViewPager.html, I would love

[android-developers] android eclipse 存取excel資料問題??

2012-04-03 Thread hsiaoplanet
我有google到jxl和poi等操作excel的方法,但用eclipse使用時卻碰到很多瓶頸,找了很多書卻找不到例子,是否有那些疏忽環節,還 是須轉換成sqlite,請各位前輩指點迷津~~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@googlegroups.com To unsubscribe

[android-developers] Re: Anchor tags in android “WebKit” browser

2012-04-03 Thread Geo Baj
I've noticed the same thing... I've used anchor tags for analytics tracking (works on non-smartphones), seems android strips off the anchors... Ideas? -- 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: What is the purpose of android zygote process?

2012-04-03 Thread Antony Deepak
Think about Zygote in its biological significance The first cell formed when an organism is produced.. So, when an application is launched , the core process for the application is forked from Zygote. Zygote has all the core libraries and hence all applications share these libraries from

[android-developers] how to connect with sql server 2005

2012-04-03 Thread Mahmoud Mortada
i need to know how can i connect with sql server and retrieve from it -- Dr.M -- 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

  1   2   >