[android-developers] Re: The screen size of galaxy nexus (ICS )

2012-02-15 Thread Seshu
Hi... u ll get the device width and height by using Display.. check this one.. Display display = getWindowManager().getDefaultDisplay(); int targetWidth = display.getWidth(); int targetHeight = display.getHeight(); Thanks and Regards, S.Seshu On Feb 15, 12:55 pm, chen ji

[android-developers] The screen size of galaxy nexus (ICS )

2012-02-15 Thread chen ji
Hi All, If I use DisplayMetrics to get galaxy nexus (ICS )'s screen's width Height, I found a very strange thing. It is 1184x720 if I set miniSDK = 8 and it is 1196*720 if I set miniSDK =7. And actually I think it should be 1960*720. Anyone can give some advices? Thanks, Ji -- You received

[android-developers] What exactly dvm_lock_sample means?

2012-02-15 Thread manoj
Hi, I have seen many event logs related to this dvm_lock_sample. Could some one please explain me in detail, what is the meaning of this? Thanks, Manoj. -- 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: MPEG-TS, Android and (probably?)FFMPEG

2012-02-15 Thread Akos Cz
Take a look at the Stagefright multimedia framework which was introduced in Android 2.2. It has MPEG-TS support with some limitations. The Android MediaPlayer API sits on top of stagefright. What you gain is hardware accelerated video playback. What you loose is flexibility. Ffmpeg has been

[android-developers] Re: Talk Back feature.

2012-02-15 Thread Anirudh Loya
Pls reply On Mon, Feb 13, 2012 at 8:58 PM, Anirudh Loya loya.anir...@gmail.com wrote: Hi Guys, Need your help regarding Talk Back feature. I am not new to Android Development. I am in the beginning stage of Talk Back app. Basically I have no idea about making Talk Back app. I am trying to

Re: [android-developers] Augmented Reality

2012-02-15 Thread Anirudh Loya
Pls reply On Mon, Feb 13, 2012 at 8:42 PM, Anirudh Loya loya.anir...@gmail.com wrote: Thanks Raghav. I saw your book in A-Z market also, but the pricing was a concern to me. I would be greatful if you could assist me with any blogs of yours where I can start from scratch on AR or any material

[android-developers] Re: The screen size of galaxy nexus (ICS )

2012-02-15 Thread chen ji
Of course, I use the below APIs. My question is why the value is not 1960*720. Thanks. On 2月15日, 下午4时03分, Seshu s.seshu...@gmail.com wrote: Hi... u ll get the device width and height by using Display.. check ths one.. Display display = getWindowManager().getDefaultDisplay(); int

[android-developers] Re: receive sms application. need help.

2012-02-15 Thread Marcel Arts
maybe you should have set one more permission: uses-permission android:name=android.permission.READ_SMS / On Feb 15, 4:59 am, jitesh adnani jitesh@gmail.com wrote: application starting and also knowing that a new sms has come. but just then it shows that the application has stopped

[android-developers] sync adapter join unknown application

2012-02-15 Thread Live Happy
i use the Android SampleSyncAdapter in my application and it work done but when i made join for the contacts the name of application not appear its show unknown so how i can change this unknown to my application name as in face book and twitter thanx for reply

[android-developers] Toast not working on honeycomb and ics

2012-02-15 Thread giles ian
Hi, The below piece of code is working fine on 2.22.3 but not on 3.0 onwards. Toast.makeText(SomeActivity.this, getResources().getString(R.string.not_implemented), Toast.LENGTH_SHORT).show(); Thanks, Pawan Nimje -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: How to sell application from india?

2012-02-15 Thread Ali Chousein
You don't do your homework well. I'm not Indian nor live in India, but from different online platforms, I know that the Indian company Infosys recently launched a market for mobile apps specifically for the Indian market. Search the Internet, scrutinize the website of Infosys and you'll find what

[android-developers] Re: Toast not working on honeycomb and ics

2012-02-15 Thread giles ian
FYI working on Galaxy S 2.2 but not on galaxy tab 10.1 3.2 and Nexus S 4.0.3 On Wed, Feb 15, 2012 at 2:13 PM, giles ian gilesian@gmail.com wrote: Hi, The below piece of code is working fine on 2.22.3 but not on 3.0 onwards. Toast.makeText(SomeActivity.this,

[android-developers] Re: Augmented Reality

2012-02-15 Thread Dmitry Tupikin
What kind of AR application do you want to write? Basically AR apps are divided into two groups: 1. Apps with markers where user sees something when looks on markers through device's camera. 2. Apps where you put some information upon camera view - POIs, routes.. Thanks, Dmitry On 15 фев, 12:11,

[android-developers] Re: Final year project app

2012-02-15 Thread Ali Chousein
Develop an app which you need on daily basis. If you need an app, probably other people also need it. If it already exists in the market, think what other features you can add to it or think how to customize it better for your own needs. As others also said, noone is going to give you an idea, and

[android-developers] Re: Re : onclick image redirecting

2012-02-15 Thread vivek elangovan
i m using imageview On Feb 15, 12:09 pm, Jagruti Sangani jagruti.sang...@inextrix.com wrote: i am asking about images how u use like imageview,imagebutton or image galary?because based on u use the images you can apply the intent.grid layout is a one type display layout not control.plz

Re: [android-developers] Re: Re : onclick image redirecting

2012-02-15 Thread hooman os
You can use setTag() and getTag() to retrieve your url from an imageview On Wed, Feb 15, 2012 at 8:56 AM, vivek elangovan elangovan.vi...@gmail.comwrote: i m using imageview On Feb 15, 12:09 pm, Jagruti Sangani jagruti.sang...@inextrix.com wrote: i am asking about images how u use like

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Olof Hedman
Thanks for replying! I seem to have some problem replying in this thread. My messages never show up? Lets hope this one works... I think this example is the best, it shows the exact same pattern in the calls to getView, its a completely static list with no refreshing at all going on:

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Olof Hedman
Great, it works :) In another lost message, I said that there is no invalidating going on at these points. The most curious of them all is that 3x refreshing of all views on power-down. Absolutely no implementation at all in onPause in the activity. ViewHolder pattern will not help me, since

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Olof Hedman
I've got 7 different adapters in my application, and they all look like they work perfectly, but they all show this weird pattern in the calls to getView. Look closer on the logs, I think they say a lot actually. Notice when views are created, and how they are bound, and try explain the logic

[android-developers] Getting access to the cluster level data of an micro SD card.

2012-02-15 Thread Put_tiMe
In Android, is it possible to get access to the cluster level data of a micro SD card? Like in Win32, you would do a CreateFile(\\.\\d:, ); or CreateFile(physicaldrive0\ file://\\physicaldrive1\, ); That way I should be able to access the boot sector. Does Android support SD

[android-developers] APKs support: Warning, Error

2012-02-15 Thread nvlakshmi vakiti
Hi, Warning: Active APKs support fewer devices than previously active APKs. Some users will not receive updates. Error: APK version 2 supports all the same devices as other APKs with higher versions. It would not be served. Please deactivate an APK. What does this mean?? Thanks Regards

[android-developers] Webview moves up when keyboard hides

2012-02-15 Thread androidgoyo
Hi all, The issue happens in an application whith a linear layout that divides the screen in two parts, the upper part is a simple View and the lower part is a WebView that loads google.com. The WebView takes the 60% of the space and the View the other 40%. In that scenario I touch the google

[android-developers] sync adapter name application is unknown

2012-02-15 Thread Live Happy
i use the Android SampleSyncAdapter in my application and it work done but the name of application in the Groups contact is appear Unknown so how i can change this unknown to my application name as in face book and twitter thanx for reply -- You received this message because you are subscribed

[android-developers] Re: How to Open app from other App

2012-02-15 Thread moktarul anam
final ComponentName cn = new ComponentName(packagename, class); intent.setComponent(cn); here class name nothing but one activity and in that application's manifest file this activity class has to be main(intent filter main) Enjoy :) On Feb 15, 11:08 am, Kristopher Micinski

Re: [android-developers] Re: Augmented Reality

2012-02-15 Thread Anirudh Loya
I m planning to create something of this sort. http://player.vimeo.com/video/31822416?autoplay=1 Pls check video. Thanks On Wed, Feb 15, 2012 at 12:51 AM, Dmitry Tupikin dmitry.tupi...@gmail.com wrote: What kind of AR application do you want to write? Basically AR apps are divided into two

[android-developers] Change/replace an Image in an ImageView from the start of new Activity by Intent

2012-02-15 Thread jabjab
I have an Activity with several Buttons. All Buttons starts an AlertDialog with the Ok and No Button. Pressing No returns to the main Activity, the Ok Button have some info (in the AlertDialog) and if the user want more info, he/she press the Ok Button and this Button starts an new Activity by

[android-developers] Suggestion to improve reference documentation on developer.android.com

2012-02-15 Thread Alexander Biemann
*I'd like to suggest the following* at the bottom of each reference page, permit users to submit documentation improvements. *For example* Did you find this document helpful? [yes/no] if no - show textbox to let the user provide documentation improvements. This will cause a vast improvement

[android-developers] How to get contacts that user either deleted or updated from device contact list in android

2012-02-15 Thread vijay kher
Hi, I wants the contact that is either deleted or updated from device contact list by user. I have try with Content Observer and notice that onChange() method is called with one boolean parameter when contact is either added or deleted from contacts list.But not able to get contact that is

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread alh
Hi, Thank you for answering. I wanted to keep the post brief until I found someone interested. I've got code for another adapter implementation on stackoverflow, which show the exact same pattern in the calls to getView. Though this is a CursorTreeAdapter, so it calls newView and bindView for me

[android-developers] Sending message with Bluetooth HDP Demo

2012-02-15 Thread wambin
I'm trying connecting my Android phone to my health device with BluetoothHDP - Bluetooth HDP Demo(http://developer.android.com/intl/ja/ resources/samples/BluetoothHDP/index.html). I can get an association-request-message from the device. (Message example: E2 00 00 32 80 00 00 00 ...) Then, I want

[android-developers] Re: App Testing Service - can't find the URL

2012-02-15 Thread David Thaler
There is http://duarlander.ning.com/. On Feb 14, 7:09 am, Mark Phillips m...@phillipsmarketing.biz wrote: I found a testing service while surfing late one night, hence, no bookmark...:( . It was volunteer run, or very inexpensive, and the tester loaded your app on a phone and created a short

[android-developers] Re: How to get outgoing call status

2012-02-15 Thread vijay kher
Try this TelephonyManager telephonyManager =(TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE); telephonyManager.listen(new MyPhonestateListener(), PhoneStateListener.LISTEN_CALL_STATE); private class MyPhonestateListener extends PhoneStateListener {

[android-developers] Video decoding on Galaxy Nexus running Android 4.02

2012-02-15 Thread Bateman
Hi, I have written a simple app that uses the videoview class to display video. It plays MP4 files without any problems. It uses the hardware accelerator (IVA-HD) on omap4 in galaxy nexus to decode the video. However, I want to use software decoding instead of the hardware accelerator. Is having

[android-developers] Why canvas.translate() do not work well in ICS???

2012-02-15 Thread Kandyguan
Hi : My app is used canvas.translate() to move a panel up and down, it work well in other version, but not in ICS? It can move up and down ,but when it move down, i touch the other area ,but the other area did not get any focus. I need you help, and waiting now. Thank you! -- You

[android-developers] please help to find out deleted or updated contact in android device contact list

2012-02-15 Thread vijay kher
Hi , I wants to get contact that is either deleted or updated by user in device contact list. For that i have try with content observer and notice that its onChange() method is called with one boolean parameter when any contact is added or deleted.But does not give any information regarding

Re: [android-developers] Re: Toast not working on honeycomb and ics

2012-02-15 Thread android devloper
for me the same is working on 4.0.3 On Wed, Feb 15, 2012 at 2:17 PM, giles ian gilesian@gmail.com wrote: FYI working on Galaxy S 2.2 but not on galaxy tab 10.1 3.2 and Nexus S 4.0.3 On Wed, Feb 15, 2012 at 2:13 PM, giles ian gilesian@gmail.com wrote: Hi, The below piece of code

Re: [android-developers] Re: How to Open app from other App

2012-02-15 Thread abhijit chakra
Yes ur right bro. On Wed, Feb 15, 2012 at 11:38 AM, Kristopher Micinski krismicin...@gmail.com wrote: No, his question *is* the answer, you're not reading it correctly. You're trying to open an activity. It's just not in your app, but you still use startActivity... kris On Wed, Feb 15,

[android-developers] image Parsing

2012-02-15 Thread hazem omies
how i can parsing image from xml file into android listview item namehazem/name image test.png image /item 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

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread alh
Views are recycled, though I do not cache findViewById-calls at the moment (as with the ViewHolder pattern) I don't think that should affect how many calls I get to getView... thanks for the tip though, it should lessen the impact a bit. But android still seems a bit broken in this detail...

[android-developers] Need support to develop mail box in android platform.

2012-02-15 Thread janarthanan rengasamy
Hi Guys, Need your support to develop mail box app in android platform. I kindly request the android developers to through some inputs on this front. Off course i gone through some of the video and documents on android tutorials. Thanks in Advance. Janarthanan -- You

[android-developers] LocationManager requestLocationUpdates minTime parameter not working

2012-02-15 Thread santhosh b
Hi, I am using below code to send location updates for every 2 min interval or 100 meters displacement. This is working fine in Droid2 Motorola device but when it comes to Google Nexus S not working as expected Here is the code snippet: LocationManager locationManager = (LocationManager)

[android-developers] Superscripts + and - not displaying correctly

2012-02-15 Thread Matthew Moses
Greetings all - I have been experiencing issues getting superscript and subscripts to display properly in my app. The values come to my app as UTF-8 markups of the characters. I have since started using Html.fromHtml(str) and most of the markups are handled correctly. However, the superscript for

[android-developers] How to generate multiple apk's for single project

2012-02-15 Thread kumar varma
Hi , Can any one suggest me in android how to generate multiple apk's for single project. Thanks kkvarma -- 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

[android-developers] Re: alarm vs. service

2012-02-15 Thread Pawel
Hi, I have similar question. I want to make an alarm clock app. This app will have few activities, such as list of alarms, settings of alarms, options, etc. Should I make a service for it which will start android AlarmManager or I can do it in one of the activities? Pawel -- You received this

[android-developers] hai... Kindly help me to connect android with php server

2012-02-15 Thread Satheesh Kumar T
hai, I used HTTP to connect android with php server... PHP code executed well. but android app does not run properly and didnt retrieve the data from server. Kindly help me to connect android with php... thanking you... -- You received this message because you are subscribed to the Google

[android-developers] how to prevent user to force stop service in android ?

2012-02-15 Thread sumit prajapati
hi i have a requiremet that i want run service continuously in backgroud and it cannot be top by user or it cannot be force stop by going in manage application. is there any way to get notification when user is trying force stop service? or any way to hide our application in android. i have done

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread gropapa
did you use addHeaderView() in your code? On 14 fév, 10:22, jamesc jame...@gmail.com wrote: Also, are you calling notifyDatasetChanged() frequently? On Feb 14, 9:10 am, jamesc jame...@gmail.com wrote: Hello Are you using the ViewHolder pattern to recycle Views? On Feb 13, 9:48 

[android-developers] APKTool:Some Error When Build APKTool Output Files

2012-02-15 Thread Yoo Cai
Hello everyone,I'm tyring to use APKTool to decode a project then rebuild it(nothing changed), but there were some error ,the first is: Exception in thread man unacceptable character #FFFD special charachers are not allowed in reader in position ... Can anyone tell me why ? Is that some kind of

[android-developers] GSM communications

2012-02-15 Thread toni
Hi All, I'm migrating an old pocket pc app to android and I need to use the GSM protocol (not only the SMS service). On windows mobile, we used AT commands over the Serial Port to communicate with our remote hardware. How can I implement this communication with Android SDK or NDK? Thanks in

[android-developers] Re: main,out.xml

2012-02-15 Thread Amaan
When Launching the application, you should not be focusing the xml files, rather you should be either focusing on the Application root or the java files. On Feb 14, 1:35 pm, poncho poncho...@gmail.com wrote: On 02/13/2012 11:18 PM, skink wrote: JackN wrote: I see this when I have the XML

Re: [android-developers] How to generate multiple apk's for single project

2012-02-15 Thread Anirudh Loya
You want licensed or non licensed Apk ? On Tue, Feb 14, 2012 at 8:17 PM, kumar varma kkvarmaandr...@gmail.com wrote: Hi , Can any one suggest me in android how to generate multiple apk's for single project. Thanks kkvarma -- You received this message because you are subscribed to the

[android-developers] Oncall Establish status not get

2012-02-15 Thread Jagruti Sangani
my code is given below: public void initiateCall() { Toast.makeText(WalkieTalkieActivity.this,..in the initiate call--+flag,300).show(); updateStatus(sipAddress); try { SipAudioCall.Listener listener = new SipAudioCall.Listener() { // Much of

[android-developers] Re: how to prevent user to force stop service in android ?

2012-02-15 Thread BobF
Redesign your app/service. Hiding things and preventing user control of apps on their own device is rude. -- 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

[android-developers] how to program 3d screen?you can rotate the icon in 3d perception.

2012-02-15 Thread ttgdz
just as the title said,I doont know how to start,I need you help. -- 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] Multiple apps contained within one project

2012-02-15 Thread Neilz
Hi all, I have a situation where I am to produce applications for multiple clients, all based on the same functionality. Essentially, each app will be the same apart from content - text elements and images. It would make sense for me to keep this as one project in Eclipse. I can set a property

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Olof Hedman
I did not. I have no need for headers in my lists. Why do you ask? Cheers, Olof On Feb 14, 12:38 pm, gropapa tisc...@gmail.com wrote: did you use addHeaderView() in your code? On 14 fév, 10:22, jamesc jame...@gmail.com wrote: Also, are you calling notifyDatasetChanged() frequently?

[android-developers] Re: Re : onclick image redirecting

2012-02-15 Thread vivek elangovan
i attached my source files and mailed it to you.pls check it. On Feb 15, 12:09 pm, Jagruti Sangani jagruti.sang...@inextrix.com wrote: i am asking about images how u use like imageview,imagebutton or image galary?because based on u use the images you can apply the intent.grid layout is a one

Re: [android-developers] how to program 3d screen?you can rotate the icon in 3d perception.

2012-02-15 Thread sourabh sahu
try OpenGL. On Wed, Feb 15, 2012 at 4:49 PM, ttgdz ttgdztu...@gmail.com wrote: just as the title said,I doont know how to start,I need you help. -- 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] adapter.notifyDataSetChanged not working

2012-02-15 Thread vani reddy
Hi friends, In the oncreate of Custom listview activity i am setting the adapter as adapter = new LazyAdapterChannelList(ChannelGuideActivity.this, null); this.setListAdapter(adapter);, this is my LazyadapterChannlelist class ChannelList myCurrentShowsList; public

Re: [android-developers] Re: How to get outgoing call status

2012-02-15 Thread Jagruti Sangani
Hello, But this is not work for sip calling.It is use if we had use the internal dialer for calling . On Wed, Feb 15, 2012 at 1:10 PM, vijay kher khervija...@gmail.com wrote: Try this TelephonyManager telephonyManager =(TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);

[android-developers] Re: adapter.notifyDataSetChanged not working

2012-02-15 Thread skink
vani reddy wrote: Hi friends, In the oncreate of Custom listview activity i am setting the adapter as how does your getView look like? pskink -- 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: Re : onclick image redirecting

2012-02-15 Thread Jagruti Sangani
I will checkout. On Wed, Feb 15, 2012 at 5:07 PM, vivek elangovan elangovan.vi...@gmail.comwrote: i attached my source files and mailed it to you.pls check it. On Feb 15, 12:09 pm, Jagruti Sangani jagruti.sang...@inextrix.com wrote: i am asking about images how u use like

[android-developers] Re: Dimmed GLSurfaceView in AlertDialog

2012-02-15 Thread James Webster
Cracked it! The clue was I remembered reading recently about SurfaceViews and them punching holes in things and GLSurfaceView is obviously a SurfaceView. http://developer.android.com/reference/android/view/SurfaceView.html The surface is Z ordered so that it is behind the window holding its

[android-developers] Re: how to prevent user to force stop service in android ?

2012-02-15 Thread lbendlin
you can elevate your service to device administrator level. This will lead to a warning when the users install your app, and (unless they really, really need it) to an immediate abort of the install by the user. -- You received this message because you are subscribed to the Google Groups

RE: [android-developers] Re: Encoder???

2012-02-15 Thread Muhammad UMER
Hi pskink, How are you, I am disturbing you again sorry for that. I want this application on at most 10 mobiles, so how can i apply the user authentication on this application to restrict the other user. that will not use this application also not connect to server. Thanks umer

Re: [android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Kostya Vasilyev
AdapterView does not make any guarantees about when and how many times the adapter's getView is called. -- Kostya 15.02.2012 15:35, Olof Hedman пишет: I did not. I have no need for headers in my lists. Why do you ask? Cheers, Olof On Feb 14, 12:38 pm, gropapatisc...@gmail.com wrote: did

[android-developers] better emulator for android applications

2012-02-15 Thread sahar harati
Hi all, I need a better emulator than SDK for android applications to test some component such as cpu usage etc. thanks. -- Sahar Harati BS Student Department of Computer Engineering Sharif University of Technology -- You received this message because you are subscribed to the Google

[android-developers] Upload Video using Soap Webservice

2012-02-15 Thread suresh
Hi Friends Can any one help me how to upload video using Saop Web services. Currently am converting to base64 string format but am getting exception as out of memory. Regrads Suresh -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Regarding copy right

2012-02-15 Thread Dhaval Varia
I m planning to publisb my app on amazon store. So i need to take copy right for my app. What is its procedure ? Plz help me to know... Thanx in advance.. -- 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: adapter.notifyDataSetChanged not working

2012-02-15 Thread vani reddy
public View getView(final int position, View convertView, ViewGroup parent) { try { final Show channelShowItem = (Show) myCurrentShowsList.getData() .get(position); convertView = inflater.inflate(R.layout.channel_item, null);

Re: [android-developers] better emulator for android applications

2012-02-15 Thread Mark Murphy
Buy an Android device. Testing cpu usage on anything other than production hardware will be of limited accuracy. On Wed, Feb 15, 2012 at 8:03 AM, sahar harati saharati2...@gmail.com wrote: Hi all, I need a better emulator  than SDK for android applications to test some component such as cpu

Re: [android-developers] Re: How to get outgoing call status

2012-02-15 Thread Mark Murphy
On Wed, Feb 15, 2012 at 7:15 AM, Jagruti Sangani jagruti.sang...@inextrix.com wrote: But this is not work for sip calling.It is use if we had use the internal dialer for calling . There is no way to determine if a VOIP client is being used, since any application could be a VOIP client (e.g.,

[android-developers] keystore files

2012-02-15 Thread New Developer
I now have two keystore files debug.keystore and publish.keystore with a password Is there anyway to link the publish.keystore to a) the Debug button / debug configuration and/or b) the Run button / run configuration Currently I have to export the project to create the signed

Re: [android-developers] Multiple apps contained within one project

2012-02-15 Thread Mark Murphy
On Wed, Feb 15, 2012 at 6:20 AM, Neilz neilhorn...@gmail.com wrote: I have a situation where I am to produce applications for multiple clients, all based on the same functionality. Essentially, each app will be the same apart from content - text elements and images. It would make sense for me

[android-developers] Re: Android 2.2.1 Galaxy S I9000 I9000XWJS3

2012-02-15 Thread Евгений Л
I ask for a help! What parameter is responsible for the change of size, photo of reference to the contact which is represented in TouchWiz30Launcher? On a workmount. Where can I change it? Specify please file of apk and way to the parameter. Android 2.2.1 Galaxy S I9000 I9000XWJS3 Here reference

[android-developers] add account error

2012-02-15 Thread Jags
i was folowing the c2dm tutorial and there to test in emulator i need to have a account in settings. i went to menu - settings - acount Sync - add account - filled my details and then next after some times it says checking incoming server settings with some progress and after some time setup

Re: [android-developers] Toast not working on honeycomb and ics

2012-02-15 Thread Mark Murphy
This has worked on every Android device I have ever tried it on, including several 3.0+ devices. On Wed, Feb 15, 2012 at 3:43 AM, giles ian gilesian@gmail.com wrote: Hi, The below piece of code is working fine on 2.22.3 but not on 3.0 onwards. Toast.makeText(SomeActivity.this,

Re: [android-developers] please help to find out deleted or updated contact in android device contact list

2012-02-15 Thread Mark Murphy
A ContentObserver is your only option. On Wed, Feb 15, 2012 at 2:46 AM, vijay kher khervija...@gmail.com wrote: Hi , I wants to get contact that is either deleted or updated by user in device contact list. For that i have try with content observer and notice that its onChange() method is

Re: [android-developers] Suggestion to improve reference documentation on developer.android.com

2012-02-15 Thread Mark Murphy
For feature requests, please use http://b.android.com. On Tue, Feb 14, 2012 at 5:44 PM, Alexander Biemann alexbiem...@gmail.com wrote: I'd like to suggest the following at the bottom of each reference page, permit users to submit documentation improvements. For example Did you find this

Re: [android-developers] Re: Android 2.2.1 Galaxy S I9000 I9000XWJS3

2012-02-15 Thread Kostya Vasilyev
Вика ? 15.02.2012 17:20, Евгений Л пишет: I ask for a help! What parameter is responsible for the change of size, photo of reference to the contact which is represented in TouchWiz30Launcher? On a workmount. Where can I change it? Specify please file of apk and way to the parameter. Android

Re: [android-developers] Re: App Testing Service - can't find the URL

2012-02-15 Thread Mark Phillips
David, Thanksthat is not the one I am looking for. Mark On Tue, Feb 14, 2012 at 12:39 PM, David Thaler davidtha...@gmail.comwrote: There is http://duarlander.ning.com/. On Feb 14, 7:09 am, Mark Phillips m...@phillipsmarketing.biz wrote: I found a testing service while surfing late one

Re: [android-developers] Re: The screen size of galaxy nexus (ICS )

2012-02-15 Thread Mark Murphy
2012/2/15 chen ji chenjihz...@gmail.com: My question is why the value is not 1960*720. Thanks. Because the screen size of a Galaxy Nexus is not 1960*720. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog |

[android-developers] List view is not perform selection

2012-02-15 Thread Sathya g
List view is not clikable when i am using cutombase adapter i.e using cutom view for list view. i mention in listview as android:focusable=true its not perform even selection operation... please help me to achieve this selection -- You received this message because you are subscribed to the

Re: [android-developers] Re: Android 2.2.1 Galaxy S I9000 I9000XWJS3

2012-02-15 Thread Nikolay Elenkov
On Wed, Feb 15, 2012 at 10:20 PM, Евгений Л 3gscor...@gmail.com wrote: Here reference to the problem: http://narod.ru/disk/40240083001/SC20120210-032158.png.html This is OT, and certainly doesn't help you, but Yandex is quite obnoxious. It tried two install two browser plugins and make itself

[android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Olof Hedman
I don't expect it to. But I do though expect it to call it a sensible amount of times, and not call it when it is absolutely unnecessary. Why would it for example have to bind all my list items to the first view two times over, before creating the other list item views? Cheers, Olof On Feb 15,

[android-developers] Serialization View

2012-02-15 Thread satahippy
Is it possible? I have ViewGroup, which change his content (same children views). But ViewGroup refresh his content too slow (about 6 seconds). Are there other ways to solve the problem? -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Extended Application life time.

2012-02-15 Thread Anieeh
hi all I have extended application class and in that i have kept an model object for global access which is single ton class and i have a service which runs continuously in background when no activity is running. And this background service uses that model object kept in Application class. Is

Re: [android-developers] Extended Application life time.

2012-02-15 Thread Mark Murphy
On Wed, Feb 15, 2012 at 8:50 AM, Anieeh animesh.andr...@gmail.com wrote: i have a service which runs continuously in background when no activity is running. This is not generally a good idea, unless the user specifically requested it (e.g., music player). Users think developers who create

Re: [android-developers] Re: What is wrong with Android Adapters?

2012-02-15 Thread Kostya Vasilyev
On 02/15/2012 05:37 PM, Olof Hedman wrote: I don't expect it to. But I do though expect it to call it a sensible amount of times, and not call it when it is absolutely unnecessary. That may not be the ListView's definition of sensible. Why would it for example have to bind all my list items

Re: [android-developers] How to access another apk in an android application

2012-02-15 Thread TreKing
Replying back to the whole group. On Wed, Feb 15, 2012 at 12:06 AM, sai bot sai.avatar...@gmail.com wrote: That's a hostile way of explaining things Sir / Madam. I'm not sure what was so hostile about my response. Um ... sorry? But I will make sure I use the Y-O-U spelling ok. Good. You

[android-developers] Calling java function from Native thru JNI fails due to FindClass failing during runtime.

2012-02-15 Thread Ravi Pandey
Hi All, I have installed a simple Java App on my android device and trying to call some method in Java layer from an executable of a native module, which is also pushed inside the device. (Tried using the JNI interface on native side.) I simply tried calling an example method: exampleMethod()

Re: [android-developers] group introductory text box

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 5:23 AM, BobF bobf8...@gmail.com wrote: It has to do with using this group via a web browser ... See the giant gear at the top right? It has Help and Feedback options. Try that, as this has nothing to do with this list. Or see if there is a Google Groups group ... :)

[android-developers] Re: Extended Application life time.

2012-02-15 Thread Anieeh
Thanks mark for your quick reply Terminate the process you mean user force stop the application or by memory crunch when android kills the service and application both. Actually my service is running continuously for syncing location to server at particular interval, Is there any better

Re: [android-developers] plzzz help me out in the timetable app in android...

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 1:34 AM, S Sam mailme2s...@gmail.com wrote: I am uable to find which method is used for what purpose to get the desired output, What is the desired output? How are we supposed to know what your ultimate goal is? so can you send me any material that helps me in

Re: [android-developers] Re: Extended Application life time.

2012-02-15 Thread Mark Murphy
On Wed, Feb 15, 2012 at 9:11 AM, Anieeh animesh.andr...@gmail.com wrote:    for your quick reply Terminate the process you mean user force stop the application or by memory crunch when android kills the service and application both. All of the above.   Actually my service is running

[android-developers] whole file dose not load always

2012-02-15 Thread limelect
I have this part in a service (or Thread same problem ) to load a file greater then 40 char; almost 1/2 a mega char. Some times it load much less not consistent. How to debug it or make adjustment. Same program download jpg (with modifications) of 30k without a problem. StringBuilder

[android-developers] Re: Removing Lock Screen

2012-02-15 Thread mgah
Thanks it worked.  Since I am using the Xperia x8 to test with, I had to use xRecovery tool to update the Android OS with Kuyadroid.  For some reason Cyanogen doesn't work with Xperia x8.  Nonetheless, no more lock screen! :) On Feb 13, 12:10 pm, TreKing treking...@gmail.com wrote: On Mon, Feb

[android-developers] Re: Extended Application life time.

2012-02-15 Thread Anieeh
Thanks Mark I will do changes as you said, you have raised a good point an given suggestion for service force stop. Thanks Anieeh On Feb 15, 7:32 pm, Mark Murphy mmur...@commonsware.com wrote: On Wed, Feb 15, 2012 at 9:11 AM, Anieeh animesh.andr...@gmail.com wrote:    for your quick

[android-developers] Re: hai... Kindly help me to connect android with php server

2012-02-15 Thread Ali Chousein
Do you know what RESTful interfaces are? If not you have to do lot's of reading and learning before attempting to design such a system. - Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://weatherbuddy.blogspot.com |

[android-developers] Re: Need support to develop mail box in android platform.

2012-02-15 Thread Ali Chousein
Need your support... Paid support or free support? :-) - Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://geo-filtered-assistant.blogspot.com

  1   2   3   >