Re: [android-developers] java.lang.nullpointerexception in ServerSocket.accept()

2012-07-10 Thread Akshay Kumar
I am getting Null Pointer Exception at s=ss.accept(); and not IOexception . On Mon, Jul 9, 2012 at 11:04 PM, Justin Anderson magouyaw...@gmail.comwrote: Well, apparently your ServerSocket is null... Likely you are getting the IOException... If you hit that exception then ss would be null.

[android-developers] .apk upgradtion

2012-07-10 Thread Rahul Kaushik
i have my first android mobile app(version 2.3.3) and i email it to the user, he installed on his mobile and now he wants some changes in it. i have done the desired changes am ready with updated .apk file nothing changed in manifest file, Some Field name changes only in one activity Doubts

Re: [android-developers] .apk upgradtion

2012-07-10 Thread TreKing
On Tue, Jul 10, 2012 at 1:17 AM, Rahul Kaushik rahulkaushi...@gmail.comwrote: 1.Before installing updated apk on his mobile,do user have to unistall earlier apk to get new changes??? No. 2.is this right way to upgrade apk ?? Does it work? Then sure. It's not the normal way (i.e., via a

[android-developers] Re: Gif image not display properly in android

2012-07-10 Thread Mek Rama
The .gif file format is discouraged. Consider using .png (preferred) or .jpg (acceptable) instead. http://developer.android.com/guide/topics/resources/drawable-resource.html#Bitmap On Monday, July 9, 2012 11:46:06 PM UTC+5:30, arunkumar wrote: Hello all, I have loading gif image. i am

[android-developers] Re: .apk upgradtion

2012-07-10 Thread Mek Rama
(*)The correct approach: change the version in manifest manifest xmlns:android=http://schemas.android.com/apk/res/android; package=com.mek.amr.amrradio android:versionCode=1 android:versionName=1.1 (*)It's not mandatory to uninstall in the device but On Tuesday, July 10, 2012

[android-developers] add and edit contact

2012-07-10 Thread Live Happy
its possible to catch the intent of add or edit contact by phone and get the added data, can someone help me with that please -- 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: upload app to google store ..

2012-07-10 Thread ala hammad
i mean like apple how much time google need to confirm my app and upload to store .. or when upload will show in store .. On Saturday, 7 July 2012 10:42:09 UTC+3, ala hammad wrote: hello all , i want to ask how much time need to confirm my app from google store ?? thanks .. -- You

[android-developers] Re: java.lang.nullpointerexception in ServerSocket.accept()

2012-07-10 Thread Jonathan S
s is null because you are not assign it. ServiceSocket is NULL because you are assigned it in the background threads. You need to rewrite whole thing again. -- 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] add and edit contact

2012-07-10 Thread Asheesh Arya
just go through this link might be it helpful for you. http://www.pocketmagic.net/?p=1857 -- 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] Date Picker

2012-07-10 Thread nageswara rao rajana
Hi, How to implement Cancel button in DatePickerDialog ? thanking you, nagu. -- 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

[android-developers] Re: Lock orientation once the app started?

2012-07-10 Thread Ifor
I have a biking - running app. It will work either orientation but once you start proererly using it, it locks in the curent orientation. Running especialy it is switching all the time without this and hard to just glance at as typicaly that wil cause another switch... On Monday, 9 July

Re: [android-developers] Date Picker

2012-07-10 Thread arun kumar
Hai Nagu, Refer this code snippet dialog.setButton(DialogInterface.BUTTON_NEGATIVE, getString(R.string.cancel), new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { if (which == DialogInterface.BUTTON_NEGATIVE) {

[android-developers] How to change WiFi direct device name on ICS WiFi direct API ?

2012-07-10 Thread Jaeyoung Soh
Hello, everyone. I'm doing implement the some application which can communicate with other device through WiFi direct. First of all, I refer to below API guide. http://developer.android.com/guide/topics/connectivity/wifip2p.html But, I can not find how to change WiFi direct device name which my

[android-developers] SMS ACTION_VIEW intent w/ multiple phone numbers not working on Jelly Bean (4.1)?

2012-07-10 Thread akd17
It should be straightforward to open the SMS app with a pre-populated set of phone numbers as shown below: Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(sms:1234567890;1234543210)); i.putExtra(sms_body, hello!); This has been working on versions 4.0 and below on a variety of devices,

[android-developers] Play Music app and widget settings.

2012-07-10 Thread apisland
I am just asking about the app Play Music, what I wanted to know about the app, will there be an update to the app to include widget settings for the play music app? I would like to be able to set the widget to have no background, just text, or to simply make the background transparent. I

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

2012-07-10 Thread txturtle
Dear Sony - I've followed the instructions a number of times, on three different computers. Each time when i enter the unlock command, with my code, I see three dots on the next line ... and nothing else. fastboot seems to hang at this point. I do not receive an error. Any suggestions?

[android-developers] Android with Dreamweaver

2012-07-10 Thread Addy
Hi there, I build an application in dreamweaver cs6 with the help of phonegap, it gives me the apk file but when im trying to upload this .apk file on google play it gives me the following error. Google Play does not accept apks signed with the debug certificate. Create a new certificate that

[android-developers] SMS intent ACTION_VIEW w/ multiple numbers not working on jelly bean (4.1)?

2012-07-10 Thread akd17
It should be straightforward to open the SMS app with the ACTION_VIEW intent as shown below, pre-populated with multiple recipients: Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse (sms:1234567890;1234543210)); i.putExtra(sms_body, hello!); This works on versions 4.0 and below on a variety

[android-developers] rounded corner imageview ?

2012-07-10 Thread Alain Tavan
Hello, I search a simple way of setting the corner radius of an imageView. I start developing on Android and iOS. This is really easy to do in iOS (i don't said this to feed some troll) and i did not found something that works for me. Of course i found some imageview extends that enable this

[android-developers] Reload Activity after every 2 minutes

2012-07-10 Thread Akhil
Hi, I want to reload my activity after every 1 minute. I tried using handler for this... but problem is that when i press back key of device, it doesn't stop and goes into an infinite loop.. here is my code what i have done-- public class Chat extends Activity { Handler handler; public

[android-developers] How to modify WiFi Direct device name ?

2012-07-10 Thread Jaeyoung Soh
Hello, everyone. I'm doing implement WiFi direct app between two Android devices with reference below API guide. http://developer.android.com/guide/topics/connectivity/wifip2p.html I want to set the WiFi direct device name as my wish through the my app. And that when my app try to

[android-developers] HDMI out

2012-07-10 Thread RS
Hi I have a Android phone which has only supports Micro USB. I will connect a Micro USB to HDMI converter cable to this. Now I want to develop an app which will bring HDMI output. Using this I will enable users to watch few videos in mobile to TV screen. This is requirement given to me in

[android-developers] What are the minimum HW requirements for porting Gingerbread?

2012-07-10 Thread amitsharma
Hi, I have a custom board based on the freescale I.MX 53 having keypad, 3 LCD screen + 2MP camera. Anyhow, Can we port Android on such HW, without wifi, GPS, touchscreen? BR, Amit Sharma -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] SQLite Android Database Cursor window allocation of 2048 kb failed

2012-07-10 Thread Alexander Laderman
I have a routine that runs different queries against an SQLite database many times per second. After a while I would get the error android.database.CursorWindowAllocationException: - Cursor window allocation of 2048 kb failed. # Open Cursors = appear in LogCat. I had the app log memory

[android-developers] Play Encrypt video with out generating physical copy of decrepit video.

2012-07-10 Thread alpesh moradiya
My problem is When i decrepit Mp3 encrypt video file and give this file to videoplayer at that time i have to write that decrepit video in physical location because videoplayer don't allow accept byte array as a input because player only get input from physical location so, help me to play this

[android-developers] Royality to Microsoft

2012-07-10 Thread amitsharma
I am developing a Android device based on the freescale I.MX 53. Do we need to pay microsoft royality fee before launching to the market? -- 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] Background for EditText

2012-07-10 Thread amro alfares
hello all what i want to do is make an EditText with a background image ive tried to set a background in the xml with the background attribute , but the image gets bigger than the EditText ive also tried to use the EidtText methods like (setCompoundDrawables(left, top, right, bottom) ) but

[android-developers] Minimum HW Requirement

2012-07-10 Thread amitsharma
I am using a evalution board based on freescale I.MX having 3 LCD screen, 2MP Camera and Key buttons. Anyhow, Can we port andoid on such devices without wifi, GPS, touchscreen? or can we port andoid on the digital camera? -- You received this message because you are subscribed to the

[android-developers] android development issue through eclipse [ADT 20.0.0] - Graphical layout

2012-07-10 Thread vivekjain
my main.xml graphical layout is not displaying black background and icons and buttons that looks like in the emulator below is the screenshot of my graphical layout view ..in this button is not displayed rather it is just written as a text ..marked in red..

[android-developers] Is it allowed to sell real products with Inapp Billing?

2012-07-10 Thread Alex
I want to sell real product (phisycally printed photos) from my app and wondering can I use Inapp Billing for that. I was reading this article http://developer.android.com/guide/google/play/billing/index.html but it is not clear is it allowed or not. Please advise -- You received this message

[android-developers] Making A Swing Speed App

2012-07-10 Thread Alex Youden
Hey, This is more of a query to all you developers out there. For my school project i built a Golf Swing Speedometer and it tell you your swing speed, however to make it more unique I though about making it into an App for your phone. Because you have 2 sensors (Set + Reset) You would time

Re: [android-developers] Using same sqlite database from multiple Activities and Services

2012-07-10 Thread Romario
good article on the topic http://www.enterra-inc.com/techzone/handling_sql_issues/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] Re: Any Good UI books or online resource?

2012-07-10 Thread tall_dub
I wouldn't mind seeing a resource that gave actual examples of screen layouts and how to build them. Plenty of documentation as far as I can see but it's always nice to have examples for that Aha! moment. On Wednesday, 4 July 2012 01:54:24 UTC+1, Michael Leung wrote: Hi, I wish to improve

[android-developers] Karbonn Smart Tablet1

2012-07-10 Thread ANUPAMA GRANDHI
Hi, I have got the Karbonn Smart Table1 yesterday, which has Android 4.0 version. It has got preloaded apps like angry birds, angry birds season, office manager, 3g call manager...etc. Due to some issue i have opted for reset button. All these pre-loaded apps are disappeared after this. While I

[android-developers] Zoom and scroll functionality in surface view.

2012-07-10 Thread Ashwani Singh
Hi Friends, I am developing an scrabble word finder game. I have implemented the surface view for Board designing. like below public class BoardView extends SurfaceView implements SurfaceHolder.Callback{ } Now i want to add zoom functionality in surface view when user clicked on view

[android-developers] Re: transfer the incoming call to the voice mail programatically

2012-07-10 Thread amro alfares
Hello take a look at this : stackoverflowhttp://stackoverflow.com/questions/2963161/is-there-an-api-to-send-calls-to-voicemail-in-android hope that it helps On Monday, July 9, 2012 10:22:25 AM UTC-7, Aashish Jawla wrote: hi, please anyone can told me how to transfer incoming call directly

[android-developers] open an html5 page in chrome browser

2012-07-10 Thread atif qadri
hello, i am making an app which : 1) starts the application by running a html 5 page in the embedded chrome browser in the app. 2) That uses ftp or http to download the file from the server based on the xml config file which it received from the

[android-developers] Re: SQLite Issues - Database seems to be corrupt on occasions. Missing tables etc.

2012-07-10 Thread Romario
look here, probably will be helpful http://www.enterra-inc.com/techzone/handling_sql_issues/ -- 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] Re: WebView designMode doesn't work?

2012-07-10 Thread Aerik Sylvan
Another gentle bump. Testing seems to show that design view sort of works - you can enter text, but no cursor shows which makes it almost impossible to navigate. Also, selecting text and changing it does not work (though I read on stackoverflow that text selection is handled in a different

[android-developers] How to catch the media button intent

2012-07-10 Thread Rajesh
Hi, I wrote an android application for bluetooth headset call initiation, but my brodcastReceiver() is not getting the desired Intent action(ACTION_MEDIA_BUTTON). Do I need to open the rfcomm channel as well? or should I handle Bluetooth AT commands? Can anybody please help! Thank you! --

[android-developers] Change layout parameters of view after it has been drawn and has had his layout parameters setup

2012-07-10 Thread Appscend
Hy, I have an annoying problem. At first when my fragment starts up, i set the layout parameters to the view that i return from the onCreateView method (called tempLayout - it's a FrameLayout). This is how i do it (where x,y,width, height are given to me by the constructor method of the custom

[android-developers] GPS program is not responding

2012-07-10 Thread asif naeem
I have developed an application that shows the current location in mapview .But when i install the apk file in my device sometimes it does respond and I have to force close the program while the other navigator app given with the device works properly. Some times my app runs but shows incorrect

[android-developers] connectivity of android appliacation with sqllite

2012-07-10 Thread Ashu
can we connect a android application to sqlite database just like a connectivity of mysql to java code,,plz help me ,i am new to 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] Google Play subscription weirdness

2012-07-10 Thread Arlo Gilbert
Has anybody else seen this? We have a recurring monthly managed subscription for 9.99 per month as an in-app google play purchase. When a user first clicks on the purchase button in our app, google play's interface launches as expected but it shows a price of $0.00... when the user clicks

[android-developers] How to add date and time to captured Image

2012-07-10 Thread android dev
HI all, I am new to android pls help on this issue. I have tried many things but not working , Exifinterface. Thank you all -- 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] services in android

2012-07-10 Thread Ashu
can we create a service without any activity i hav an application of email sending automatically so i made a activity and run it as a service when my device is switched on after booting it start automatically and display the ui of activity,, i dnt want dis ui,,what shall i do help me i want

[android-developers] GLOB sql command works slow in an specific situation

2012-07-10 Thread MHA
*i have a table (rowID, name, familyName) with at least 100.000 rows (SQLite) And i use this code to query my table when the text of an EditText changes (onTextChanged): - mySelectSql = Select rowID from gamtable WHERE word GLOB ' + searchEditText.getText().toString() + *';; Cursor

[android-developers] AppCache not working in WebView with loadDataWithBaseURL()

2012-07-10 Thread Andy Erickson
Greetings! I've been stumped on a WebView AppCache problem for a while now. I'm attempting to use loadDataWithBaseURL() to load literal HTML sourcing JS, CSS, images, and iframes into a WebView. At the same time I am using the HTML5 AppCache to store this content locally. My problem is

[android-developers] help me

2012-07-10 Thread Ashu
i am having an application of email sending ,i made an activity and start it as a service whenever i boot my device it displaying the ui screen of the activity,,i want to run my activity in background ,,it should not display after booting but should run in background how can i make a service

[android-developers] How to open/close soft keyboard on a native Android application and extract full text without using key events?

2012-07-10 Thread aslater
Hello, Firstly, i realise that i may be breaching group etiquette here by re-posting a question in this group that i've also raised in another group, (android-ndk), However the question does straddle both areas, (ndk and sdk), and i suspect there will be many on here who probably know the

[android-developers] New preferences and PrefFragments

2012-07-10 Thread billb
I'm probably missing something straightforward, however, I cannot figure out how to organize my application settings/prefrences using the new pref_header.xml preferences now that the old method is deprecated. I am trying to get the main settings screen (the first screen displayed by onCreate)

RE: [android-developers] Re: GL10 access from outside of the rendering thread ...

2012-07-10 Thread boom na
Date: Sun, 1 Jul 2012 00:26:01 -0700 From: romain...@android.com To: android-developers@googlegroups.com CC: mmman...@wanderfulstorybooks.com Subject: [android-developers] Re: GL10 access from outside of the rendering thread ... Hi, How exactly are you uploading the texture on that other

[android-developers] Access-Control-Allow-Origin Error At Android 4.1

2012-07-10 Thread Bahadır Arslan
I have problems with Access-Control-Allow-Origin at Android 4.1 In my application i have some local HTML files and Javascripts which i was using to fetch data from web services. Until trying Android 4.1 there was no problem but after trying at Android 4.1 i got this error. I read lots of

[android-developers] ICE CREAM SANDWICH

2012-07-10 Thread Sohom Bhowmick
I have samsung 7.7 tab. I would like to upgrade itself to 4.0 ICS. Will it be possible to do 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@googlegroups.com To unsubscribe from

Re: [android-developers] Re: Renderscript Deprecated

2012-07-10 Thread Barry O'Rourke
So how likely is it that RS compute vs. OpenCL will go same way ? Many of the platform and IP vendors (ARM, ZiiLabs, Intel, nvidia, Qualcomm, imgtec etc) are pushing OpenCL for mobile. Is this not the same situation ? Barry On Saturday, June 30, 2012 11:08:15 PM UTC+1, Dave Burke wrote: To

[android-developers] Why Android will always delete the calendar?

2012-07-10 Thread Roland Schumacher
I create a new calender with this code. Android 2.3.5 if(Build.VERSION.SDK_INT 14) { ContentValues calendar = new ContentValues(); calendar.put(_sync_account, Com2Cal); calendar.put(_sync_account_type, LOCAL);

[android-developers] How do I know how much cpu time I am using?

2012-07-10 Thread bsd_mike
I have a new, multi-threaded application and was wondering how I tell how much CPU time I am using... especially if I am getting to the edge of using too much. I have been playing with DDMS and with traceview, but can't put my finger on how much of the cpu I am using. Is there an easy way to

[android-developers] Samsun Galaxy Tab 2 (GT-P3133) not listed in supported devices.

2012-07-10 Thread cfsdev
I have a user on a Samsun Galaxy Tab 2 (GT-P3133) running ICS and when they search for my app in the app store they do not see it. This device is not listed in the available supported device list on the app upload. There is nothing in our manifest that would stop the Tab from being supported.

[android-developers] Expand/Collapse doesn't work on checkable customized view

2012-07-10 Thread Bo Fu
Hello everyone, I am working on an Android lab : https://sites.google.com/site/androidappcourse/labs/lab-3 but got stuck at section 3.3 which asks to expand/collapse a customized view when user taps the text area. I followed the lab instruction that creates a ListView with ChoiceMode enabled

[android-developers] multipart download with dynamic segmentation

2012-07-10 Thread ow1
dear all. anyone know about multipart download with dynamic segmentation.?? or know about the journal or information about this? i'm very need yours help... regards Chandra. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] 3G HTTP requests in Sleep mode and smartphone unplugged

2012-07-10 Thread bjcoredev
Hi, My app have an UI but the user can start making HTTP polling on a server with a customizable interval. All is OK when the phone is not in sleep mode : (3G or wifi,background or foreground). But when i put the phone in sleep mode: Using wifi:OK Phone is charging (plugged) using 3G or wifi

[android-developers] Building ApiDemos with android JB 4.1 SDK?

2012-07-10 Thread Shawn Walker
Greetings, I'm trying to build and run the ApiDemos from the Android JellyBean 4.1 SDK. I've been able to successfully run the very basic new android project, but I've had no luck with the ApiDemos from the SDK Samples. These are the steps I followed: 1) from eclipse, file - new project -

[android-developers] Re: GCM(Google Cloud Messaging) Implementation Error

2012-07-10 Thread Bahadır Arslan
I have the same problem, could you find the solution? 29 Haziran 2012 Cuma 16:42:35 UTC+3 tarihinde Divyang yazdı: I tried to integrate new GCM Google Cloud Messaging. I put the below function, but it gives the error mentioned below. Any help would be appreciated. I put the gcm.jar for

[android-developers] Suggesting meaning to words selected by holding

2012-07-10 Thread Burak Ulutoprak
Hi, I have a dictionary application which works fine, but you need to open the application and write for the word to look for meaning. My question is: Is there a way to notify the application when user clicks and holds on a word (in a pdf document, or in message, or on any text in any

[android-developers] Re: ARM Cross Toolcain ver 2.5 that support openmp (=task parallelism) for Multicore based Android Developers

2012-07-10 Thread Bob Deng
Hi Lim, I have download and try it,but the GCC 4.6.3 with bionic include openmp library can not create multi thread. I put openmptest into my Exynos 4412 development board, only one thread is created. But I put the openmptest compiled with the GCC 4.6.3 with glibc include openmp library into

Re: [android-developers] Re: Problem optimizing views for having a fast scroll

2012-07-10 Thread 伟刘
hi steve, please help me, i already registered in the mailing list, but i could not send mail to this group for i have never received the mail i sent . Could you help me on this? thanks 2012/7/10 Steve steveyzh...@gmail.com Thanks for Garreau and other There is a topic that I'm interested

[android-developers] Exclude asset-folder at compiletime in Eclipse

2012-07-10 Thread Zohob
Hey, I have a project which has to be compiled twice (Java+Eclipse): one version should include assets and methods using assets, the second one won't use them. To disable the code dealing with assets I used a static final boolean (I think this way even the compiler excludes the code). Now I want

[android-developers] Problem With SDK 20

2012-07-10 Thread Abdelali BADDAR
Hey, I've install the Environnement of Android with SDK20 in my own laptop,and when i want to import my old project realized with the SDK 16.that show me a lot of errors and problems.i give you an example of error. setContentView(R.layout.main) when main is the xml files describing the Main

[android-developers]

2012-07-10 Thread Vijay Krishnan
Hi all, I want to know about push notifications in android.Anyone help on this. Thanks, vijay.k -- 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: Unable to execute Bluetooth HDP Demo

2012-07-10 Thread wambin
Hi jfernandez and all. I've had the same problem for half a year. My device is Galaxy Nexus SC-04D ver4.0.4. I've not solved this problem yet, in spite of half a year researches. I gradually be sure that this is a bug of unregisterAppConfig(). Here is a report about this problem. Google android

[android-developers] Re: 3G HTTP requests in Sleep mode and smartphone unplugged

2012-07-10 Thread RichardC
What Wakelock(s) are you holding? On Tuesday, July 10, 2012 9:53:46 AM UTC+1, bjcoredev wrote: Hi, My app have an UI but the user can start making HTTP polling on a server with a customizable interval. All is OK when the phone is not in sleep mode : (3G or wifi,background or

Re: [android-developers] Building ApiDemos with android JB 4.1 SDK?

2012-07-10 Thread Mark Murphy
Make sure your Java compiler compliance level in Eclipse is set to 1.6, not 1.5. You can find this in Project Properties, in the Java Compiler area. On Sun, Jul 8, 2012 at 5:47 PM, Shawn Walker binarycrusa...@gmail.com wrote: Greetings, I'm trying to build and run the ApiDemos from the Android

Re: [android-developers] ICE CREAM SANDWICH

2012-07-10 Thread Mark Murphy
This has nothing to do with this list, which is for building applications with the Android SDK. On Wed, Jul 4, 2012 at 2:14 PM, Sohom Bhowmick bhowmicksoh...@gmail.com wrote: I have samsung 7.7 tab. I would like to upgrade itself to 4.0 ICS. Will it be possible to do it. -- You received this

Re: [android-developers] Re: GCM(Google Cloud Messaging) Implementation Error

2012-07-10 Thread Mark Murphy
Try the android-gcm Google Group for GCM-related questions, as there will be more focused assistance for you there. On Tue, Jul 3, 2012 at 9:44 AM, Bahadır Arslan bahadirars...@gmail.com wrote: I have the same problem, could you find the solution? 29 Haziran 2012 Cuma 16:42:35 UTC+3 tarihinde

Re: [android-developers] New preferences and PrefFragments

2012-07-10 Thread Mark Murphy
On Sat, Jul 7, 2012 at 7:08 PM, billb b...@briskynet.com wrote: Question: If there's only one fragment is there a way to skip showing the header and then just show the contents of the fragment? Not that I am aware of, other than by bypassing the headers and using the original API. -- Mark

Re: [android-developers] Karbonn Smart Tablet1

2012-07-10 Thread raju
just rest the version or upgrad the version On Fri, Jul 6, 2012 at 11:03 AM, ANUPAMA GRANDHI anoo1...@gmail.com wrote: Hi, I have got the Karbonn Smart Table1 yesterday, which has Android 4.0 version. It has got preloaded apps like angry birds, angry birds season, office manager, 3g call

Re: [android-developers] Minimum HW Requirement

2012-07-10 Thread Mark Murphy
This has nothing to do with this list, which is for developing applications with the Android SDK. On Tue, Jul 3, 2012 at 2:33 PM, amitsharma amit.h...@gmail.com wrote: I am using a evalution board based on freescale I.MX having 3 LCD screen, 2MP Camera and Key buttons. Anyhow, Can we port

Re: [android-developers] Karbonn Smart Tablet1

2012-07-10 Thread Mark Murphy
This has nothing to do with this list, which is for developing applications with the Android SDK. Please contact the device manufacturer for technical support with their device. On Fri, Jul 6, 2012 at 1:33 AM, ANUPAMA GRANDHI anoo1...@gmail.com wrote: Hi, I have got the Karbonn Smart Table1

Re: [android-developers] Royality to Microsoft

2012-07-10 Thread Mark Murphy
This list is for developing applications with the Android SDK. Please hire an attorney for your contract and licensing questions. On Tue, Jul 3, 2012 at 2:36 PM, amitsharma amit.h...@gmail.com wrote: I am developing a Android device based on the freescale I.MX 53. Do we need to pay microsoft

Re: [android-developers] HDMI out

2012-07-10 Thread Mark Murphy
HDMI out, if it supported by the device, is transparent to the app developer. On Mon, Jul 2, 2012 at 10:12 AM, RS 2sdevt...@gmail.com wrote: Hi I have a Android phone which has only supports Micro USB. I will connect a Micro USB to HDMI converter cable to this. Now I want to develop an app

Re: [android-developers] Gingerbread minimum hw requirements

2012-07-10 Thread Mark Murphy
This has nothing to do with this list, which is for developing applications using the Android SDK. On Tue, Jul 3, 2012 at 11:14 PM, amit.h...@gmail.com amit.h...@gmail.com wrote: I have a custom board based on freescale i.mx 53 and having 2mp camera, 4 gb sd card, 3 lcd (without touch). can

[android-developers] Save Multiple Image In Android

2012-07-10 Thread Hari
I have a an image in my image view. There is a button to add several templates on to this image and all of them are bitmap images. If a user had added two bitmap images on top of the base image.. how i will save the whole layout as a single image.. please help me -- You received this message

[android-developers] Quit the app from within the Webview

2012-07-10 Thread Jachym Kokesh Lukes
I am wondering, if there is some way of existing the app by taping on something within the Webview. My app loads mobile website into webview and acts on the outside like real app, but after going through the pages for thirty minutes, you must press the back button almost for another thirty

[android-developers] Building location aware app

2012-07-10 Thread Ibukun Adeniyi
i want to build a location aware using google maps, but i want the application to be able to point to particular locations on the map that i put into the map, based on proximity. how can i store locations on the google maps api. -- You received this message because you are subscribed to the

[android-developers] How can I configure the Refund Period when using ServerManagedPolicy () in Android LVL

2012-07-10 Thread PaulZuri
Am I able to configure values for VT, GT, GR and UT associated with a particular App, at the Server Side ??? Many thanks. Paul -- 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] I want to make list of all mp3 files on the android

2012-07-10 Thread Ido Magor
I am building a music player and i want to take all of the mp3 files from the phone (sd card and flash together) and put all of thier names in a listAdapter to be shown on the screen of course so can some one write me the code to get all of the mp3 files absolute path and thier names ? Thanks

[android-developers] How to fix launching of my Android app against system's default PHONE app

2012-07-10 Thread Gaurav .www
I made an android app to show an attractive GUI to be displayed whenever there is any new outgoing call or incoming call. Whenever any broadcast signal (either NEW_OTUGOING_CALL or PHONE_STATE) is received, my app launches, same as the Android mobile's default PHONE app. Sometimes my app appears

[android-developers] Re: In-app billing – get price paid after successful purchase?

2012-07-10 Thread hzhao
I found a way to use Google Checkout XML API - Notification History APIhttps://developers.google.com/checkout/developer/Google_Checkout_XML_API_Notification_History_API to get the order's detail at backend. Try it with the orderId you got from the notice On Sunday, May 8, 2011 3:40:46 AM

[android-developers] how to replace with in android or java ?

2012-07-10 Thread hari2012
hi I am working on a project.I have stuck in a problem so please help me asap. how to replace with in android or java ? how to replace two double quotes with single double quotes in android or java ? Thanks in advance, regards, hari -- You received this message because you are subscribed

[android-developers] My App isn't searchable in Google Play - Please Help -

2012-07-10 Thread Humph
Hi everyone, help much required, please. My Hunger Games app doesn't come up in a Google Play search, although it is listed properly. can anyone tell me what we're doing wrong many thanks, here's the app: *

[android-developers] How do I sell apps from South Africa?

2012-07-10 Thread MeltdownZA
We have an upcoming title we'd like to sell via the Google Play store. From the research I've done, it seems that we can sell apps if we are in South Africa. Yet when I registered a Google Play developer account, and paid the $25, and I registered, South Africa is not in the list of countries I

[android-developers] READ_LOGS permission is not granted to 3rd party applications in Jelly Bean (api 16)

2012-07-10 Thread Ievgenii Nazaruk
Hi all, I've been working on an application for developers that uses DropBoxManager. The DropBoxManager requires READ_LOGS permission to be granted in order to query information from it. Today I've tested my application on newest (api 16) emulator before releasing it to Google Play. It

[android-developers] Bluetooth pairing

2012-07-10 Thread hari shankar
hi I have scan the Bluetooth device and add in list View. I want to pair the device by android code. pl help me Thank You -- 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: Intent filter to catch links from SMS doesn't work

2012-07-10 Thread Zdenek Hr
I have the same problem, have you solved it? Dne úterý, 25. ledna 2011 14:13:02 UTC+1 Vincent napsal(a): Hi all, I actually already asked this question on StackOverflow but I didn't get any answer that could help me solve the problem. Here is the thing. What I want to do is to define

[android-developers] Opinions on using large static arrays

2012-07-10 Thread Hydde
Hi, I'm quite new to Android and Java programming. I'm currently designing an app which is supposed to utilize a medium-size database (6-7MB). This database is static meaning there won't be any updates/deletes or inserts to it. It's basically a bulk of data. I've been googling around and

[android-developers] Create shortcut on app install

2012-07-10 Thread iv_s
Hi! I'm interesting in Home Screen shortcuts. Some apps, installed from GooglePlay, create Home Screen shortcuts automatically. I can create shortcut programmatically with intent, but only on app's first run. How to do it just after install? I've also noticed Auto-add shortcuts option into

[android-developers] PN544 user manual or eeprom instructions set

2012-07-10 Thread Grégoire Sage
Hello, With the pn512, it was possible to manual fine tuning the internal receiver through eeprom settings (cf user manual http://www.nxp.com/documents/data_sheet/PN512.pdf), and in particular, automatic parity generation could be switched off using the ManualRCVReg register’s ParityDisable

[android-developers] SMS duplicated as calls on galaxy s II(ICS)

2012-07-10 Thread mighter
Ok, guys, here's my code for getting SMS: Cursor cursor = getContentResolver().query(Uri.parse(uri), null, CallLog.Calls.DATE ++ lastSmsTime, null, CallLog.Calls.DATE + ASC); Where type is: content://sms/inbox content://sms/sent And for calls: String[] projection

[android-developers] write sms by voice

2012-07-10 Thread HARISH KUMAR
hi, i want to develop a app like write sms by voice but id on't know how to write a app plz help me any one. its urgent for me.. sorry for my poor english thanks regards harish -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Reg.android

2012-07-10 Thread king
i want to know about the android codecs details for android versions 2.1 and 2.3... please reply me as soon as possible.i am waiting for your valuable reply. Thank u. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

  1   2   3   4   >