[android-developers] problem in sending binary sms

2012-04-05 Thread azmat ali khan
Hi, I got stuck in a problem,let me explains it you- I am making an sms encryption aplication which sends data in binary form,and listens to a particular port. I am using "SmsManager.sendDataMessage(String destinationAddress, String scAddress, short destinationPort, byte[] data, PendingIntent sent

[android-developers] problem in sending binry sms

2012-04-05 Thread azmat ali khan
I got stuck in a problem,let me explains it you- I am making an sms encryption aplication which sends data in binary form,and listens to a particular port. I am using "*SmsManager.sendDataMessage(String destinationAddress, String scAddress, short destinationPort, byte[] data, PendingIntent sentI

[android-developers] How can I call search dialog on button click in android

2012-04-05 Thread Ali
Hi, I created a searchInterface for my Activity, So when I click on my hardware search button, my own searchbox pops up : http://developer.android.com/guide/topics/search/search-dialog.html Then I created a action bar : http://developer.android.com/resources/samples/ActionBarCompat/index.html I

[android-developers] Re: ArrayIndexOutOfBoundsException

2012-04-05 Thread Ali Chousein
Your approach with String[] is just plain wrong. Use ArrayList instead of String[]. http://developer.android.com/reference/java/util/ArrayList.html - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http

[android-developers] Re: Video Sharing to Facebook from Android App using "share" intent FAIL :( .

2012-04-05 Thread Ali Chousein
/AndroidRuntime( 7160): java.lang.NullPointerException E/AndroidRuntime( 7160): at com.facebook.katana.service.method.VideoUpload.getRealPathFromURI(VideoUpload.java: 144) - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http

[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@go

[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 t

[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 http

[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 | http://twitter.com

[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 http

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

2012-04-03 Thread Ali Chousein
ssaging-android --------- Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://www.codeproject.com/KB/android/PayGol-Android.aspx http://geo-filtered-assista

[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 | http://twitter.com

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

2012-04-03 Thread Ali Chousein
alarms properly. --------- Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://www.codeproject.com/KB/android/PayGol-Android.aspx http://geo-filtered-assistant.blogspot.com -- You receiv

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

2012-04-03 Thread Ali Chousein
/responsiveness.html - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://www.codeproject.com/KB/android/PayGol-Android.aspx http://geo-filtered

[android-developers] Re: It is possible to lock the screen orientation of the phone only when you want? (dinamically)

2012-03-31 Thread Ali Chousein
Maybe my blog on this subject might be useful for you. There is a section "Locking the screen layout" in it: http://android-screen-layout.blogspot.com ----- Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socia

[android-developers] Re: Android app as background service

2012-03-30 Thread Ali Chousein
I think this thread is interesting for your case: http://groups.google.com/group/android-developers/browse_thread/thread/483b5fbd8d0dc0f9 - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com

[android-developers] Re: Save the whole Intent and context at somewhere

2012-03-28 Thread Ali Chousein
Study the sample codes which come with the SDK installation. They contain examples on how to implement a service and how to implement a broadcast receiver correctly. In general these sample codes provide good examples for many things. - Ali Chousein

[android-developers] Re: Save the whole Intent and context at somewhere

2012-03-28 Thread Ali Chousein
Hhhmmm, what about starting a service in your broadcast receiver, which will implement the functionality you are interested in? I expect this approach will work. - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http

[android-developers] Re: How to close the dialogbox when clicking on the menu button

2012-03-28 Thread Ali Chousein
Dialogs in Android have the dismiss method (http:// developer.android.com/guide/topics/ui/dialogs.html#DismissingADialog) I guess you need to call this method inside the on click listener of your menu button. - Ali Chousein http

[android-developers] Re: Android database

2012-03-28 Thread Ali Chousein
It sounds like you need to implement a mini server for your Android application which will enable other phones access a local database. Google for "implement server Android", if I remember it right stackoverflow has some good threads on this. ---

[android-developers] Re: how to insert image in text view

2012-03-28 Thread Ali Chousein
Use LinearLayout to put a TextView and an ImageView next to each other. - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://www.codeproject.com/KB

[android-developers] Re: LinkedIn integration issue

2012-03-27 Thread Ali Chousein
They have quite good documentation on this. Follow what is explained here: http://developer.linkedin.com/rest - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com

[android-developers] Re: Save the whole Intent and context at somewhere

2012-03-27 Thread Ali Chousein
> your reply will not handle my  call when my application is running in > background.Is there any other way? Well, I'm not sure if I agree. I still have a feeling that you are not implementing your broadcast receiver correctly. --------- Ali Ch

[android-developers] Re: Problem for calling ListActivity

2012-03-27 Thread Ali Chousein
. - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://www.codeproject.com/KB/android/PayGol-Android.aspx http://geo-filtered-assistant.blogspot.com -- You received this message because

[android-developers] Re: My app was suspended for a donate button, Google hasn't responded?

2012-03-27 Thread Ali Chousein
icies. ----- Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://www.codeproject.com/KB/android/PayGol-Android.aspx http://geo-filtered-assistant.blogspot.com --

[android-developers] Re: How to send/pass string to a web service from emulator and that web service returns same string.

2012-03-27 Thread Ali Chousein
://developer.android.com/reference/org/ apache/http/client/methods/HttpGet.html)  Google for examples, you'll find plenty. ----- Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com |

[android-developers] Re: Re : passing data between activities

2012-03-27 Thread Ali Chousein
to answer it, etc etc etc ----- Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://www.codeproject.com/KB/android/PayGol-Android.aspx http://geo-filtered-assistant.blogspot.com -- You received thi

[android-developers] Re: How Many Android App Stores to Submit …?

2012-03-27 Thread Ali Chousein
f you want to distribute your app in multiple stores, yes, you have to submit one by one. ----- Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy

[android-developers] Re: Broadcast receiver execution.

2012-03-26 Thread Ali Chousein
For anything which works asynchronously (BroadcastReceivers work asynchronously) I wouldn't make any assumptions that you are going to receive messages in order. ----- Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1

[android-developers] Re: Sending GPS coordinates to a server

2012-03-26 Thread Ali Chousein
ct the responsible people to find out its interface. If you should develop the server also, I guess you need to research the best practices for server side architectures to decide which one fits best your scenario. ----- Ali Chousein http://socialnav.blogsp

[android-developers] Re: Calendar edit event force close error....

2012-03-26 Thread Ali Chousein
that other people can have a look at it. ----- Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://www.codeproject.com/KB/android/PayGol-Android.aspx http://geo-filtered-assistant.blogspot.co

[android-developers] Re: send twitter status with geolcation using api

2012-03-25 Thread Ali Chousein
Try asking Twitter API related questions here: https://dev.twitter.com/discussions  I guess you'll have better chance then someone will answer your question. ----- Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1

[android-developers] Recently released: SocialNav

2012-03-24 Thread Ali Chousein
://www.handster.com/socialnav.html?dm=1&multi=1 Follow the latest features and release news on Twitter: https://twitter.com/socialnav1 In case you try it, I would be looking forward to hear your feedback. Cheers, -Ali -- You received this message because you are subscribed to the Google Groups &quo

[android-developers] Re: Save the whole Intent and context at somewhere

2012-03-24 Thread Ali Chousein
your implementation doesn't work, it's probable you are doing something wrong when handling the related broadcast receiver. It might be worth to check out this tutorial: http://www.vogella.de/articles/AndroidServices/article.html --------- Al

[android-developers] Re: SMS with name

2012-03-23 Thread Ali Chousein
/ContactsContract.html  Google also for "ContactsContract example", there are plenty of them. But AFAIK in every Android based device you already can send SMS messages by entering the name. ----- Ali Chousein http://www.codeproject.com/KB/andr

[android-developers] Re: Sync Android app with Outlook

2012-03-22 Thread Ali Chousein
Try to find out which interfaces are available for accessing data in Outlook. Studying the Outlook interfaces should be your starting point. Your question is not Android SDK specific. - Ali Chousein http://www.codeproject.com/KB/android/PayGol

[android-developers] Re: SMS as techinque for chatting

2012-03-22 Thread Ali Chousein
pecific questions about an approach you have chosen. PS. And please man, don't drop vowels when you write something! --------- Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://weatherbuddy.blogspot.com | http://twitter.com/we

[android-developers] Re: On Reciving SMS Calling Web Service.

2012-03-19 Thread Ali Chousein
My experience is that it doesn't. That's why you have to try it on a phone. And yes, working with SMS on a phone is costly. ----- Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://weatherbuddy.blogspot.

[android-developers] Re: On Reciving SMS Calling Web Service.

2012-03-19 Thread Ali Chousein
I guess you need another tutorial on how to deal with broadcast receivers: http://www.vogella.de/articles/AndroidServices/article.html - Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://weatherbuddy.blogspot.com | http

[android-developers] Re: On Reciving SMS Calling Web Service.

2012-03-19 Thread Ali Chousein
I don't know, but if you declare the RECEIVE_SMS permission in your manifest, the BoradcastReceiver should be notified when you receive an SMS. I guess you are missing such detail. ----- Ali Chousein http://www.codeproject.com/KB/android/P

[android-developers] Re: facebook

2012-03-19 Thread Ali Chousein
- 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 https://marketplace.cisco.com/apphq/products/994 -- You received this message because you are

[android-developers] Re: On Reciving SMS Calling Web Service.

2012-03-19 Thread Ali Chousein
Take a look at this tutorial, especially at the section "Receiving SMS Messages". This should guide you to implement the functionality you want: http://mobiforge.com/developing/story/sms-messaging-android ----- Ali Chousein http://www.codep

[android-developers] Re: Run Google Places app from web page

2012-03-16 Thread Ali Chousein
resort to such an approach on your own risk (e.g. you are not using an officially documented interface). - Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http

[android-developers] Re: How to copy files from Android to PC?

2012-03-16 Thread Ali Chousein
Hhhmmm, send your files to the PC through bluetooth maybe? I guess you have to use one of the standard protocols. - Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://weatherbuddy.blogspot.com | http://twitter.com

[android-developers] Re: Need help on reading the html source of a page

2012-03-16 Thread Ali Chousein
Well, if you don't know a technology to solve your problem, use the opportunity and just learn the God damn technology. Others will only give you guidance. Asking others to do the job for you (even if it's VEERY URGENT) is not going to take you anywhere. The number of messages in which people

[android-developers] Re: How to make sure SMS is sent in Android

2012-03-14 Thread Ali Chousein
disable the timer. (Don't know, maybe there is even a better way of doing this). ----- Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://geo-fil

[android-developers] Re: Hiii frns plzz help me ragarding Animation set

2012-03-13 Thread Ali Chousein
For God's sake, don't drop vowels when you write something. On Mar 12, 11:49 am, geet handa wrote: > Hi Frnds... > >     I am new to dis group.. >    I am facing one problem in ma project regarding animation set... >   In my Project i want to run multiple animations at a time in one screen >

[android-developers] Re: make components right to left

2012-03-13 Thread Ali Chousein
> Well, that would make everything left-to-right... not necessarily right to > left. Ooops, I didn't pay that much of attention to the direction in the question :-) -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, sen

[android-developers] update TextView inside a TimerTask

2012-03-12 Thread Ali
Hi i have made a timer and a timer task, and i need to update my textview every seconds how can i do that? 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 u

[android-developers] Re: make components right to left

2012-03-12 Thread Ali Chousein
> right to left Try LinearLayout and set its orientation to horizontal (e.g. android:orientation="horizontal") Sorry, didn't understand your second question. ----- Ali Chousein http://www.codeproject.com/KB/android/PayGol

[android-developers] problem in executing Runtime.getRuntime().exec()

2012-03-12 Thread Ali
Hi all i have an application which needs to clear the buffer i do this way but it gives error Process p = Runtime.getRuntime().exec("su"); p = Runtime.getRuntime().exec("sync"); p = Runtime.getRuntime().exec("echo 3 > /proc/sys/vm/drop_caches"); error: Error running

[android-developers] make components right to left

2012-03-12 Thread Ali
Hi all i need to know, how can i set every component right to left for example a digitalclock! i need it to be right to left and also change the digits to my language! is it possible? thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] read/write to sector of a mounted usb flash on /dev/block/sda

2012-03-12 Thread Ali
Hi all i need to read and write in sectors of a USB flash moundet on /dev/block/sda would you please help me 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] cross Multi-platform mobile app.

2012-03-11 Thread ALi
Hi, We are interested to develop CRM business app for Android, iphone using multiplatform But we are confused to select and finalize one platform. Like Adobe Flex, Titanium, RhoStudio Sencha etc.. Which should we select to start working on it so its not be a problem in future for compatibility. Any

[android-developers] problem reading with randomaccessfile

2012-03-11 Thread Ali
Hi all, i have an android tablet which is able to mount usb disks i have rooted it. and have root permittion i need to read 1024 first sector of my usb disk in android i have make a program to do that with randomaccess file but it gives me an exception which says /dev/block/sda (permission denied)

[android-developers] Re: How to show a single country map rather then whole world map

2012-03-09 Thread Ali Chousein
> Here is an example on net which is showing a custom map. Plz check it > out. Let me know if you find a way that how can we implement that in > Android. I am also trying to figure it out. Sure. But you forgot to tell what the deadline is. -- You received this message because you are subscribed

[android-developers] Re: location based app

2012-03-09 Thread Ali Chousein
I want to draw the > data from wikimapia or a similar site. Check if the sites you are interested in have online APIs (e.g. RESTful APIs). If yes, then you should study their documentation explaining how to use these APIs. Good luck. -----

[android-developers] Re: Draw icons depending of zoom

2012-03-09 Thread Hashir Ali
Check this link for finding incoming no.. http://stackoverflow.com/questions/1853220/retrieve-incoming-calls-phone-number-in-android On Wednesday, March 7, 2012 7:36:12 PM UTC+5:30, Grontag wrote: > > Hi all. > > I am developing an application that draws icons on a map. But i need > to draw t

[android-developers] Re: i get an error when i try and launch my apk file saying there is a problem passing the package

2012-03-09 Thread Hashir Ali
Try exporting the application using the eclipse's export wizard . On Thursday, March 8, 2012 4:26:13 PM UTC+5:30, alexb wrote: > > I built an application in eclipse for testing purposes it works in the > emulator without any problems. > I then copied the project named listviews from my workspace

[android-developers] Re: Help me on selecting a name to a game..

2012-03-08 Thread Ali Chousein
хорошо :) On Mar 8, 1:03 pm, Kostya Vasilyev wrote: > This is what I get after clicking on the link: > > Мы сожалеем. > Таблица по указанному URL не обнаружена. Проверьте правильность URL и > убедитесь в том, что владелец таблицы не удалил её. > > Дополнительную информацию можно найти в справочн

[android-developers] Re: Android Application

2012-03-08 Thread Ali Chousein
ming first. ----- 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 https://marketplace.cisco.com/apphq/products/994 -- You rec

[android-developers] Re: How to get all sms messages on phone

2012-03-07 Thread Ali Chousein
In my app I didn't need to make the distinction between sent and received SMS messages. I suggest you to investigate the cursor object inside the debugger to understand how to make this distinction. ----- Ali Chousein http://www.codeproject.c

[android-developers] Re: How to get all sms messages on phone

2012-03-06 Thread Ali Chousein
= getContentResolver().query(Uri.parse("content://sms"), null, null, null, null); But once again, beware that this is not officially documented and it can change without any notice. If you use it, you use it on your own risk. ----- Ali Cho

[android-developers] Re: Android Gmail Authentica​tion failed

2012-03-06 Thread Ali Chousein
> Send 5 email repeatedly from the code Probably you are classified as a potential spammer. It's not surprise that Google doesn't allow you send e-mails frequently. ----- Ali Chousein http://www.codeproject.com/KB/android/PayGol-Andr

[android-developers] Re: Twitter Error

2012-03-06 Thread Ali Chousein
hat you'll find integration examples. ----- 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 https://marketplace.cisco.co

[android-developers] Re: How to Synchronize data on cloud?

2012-03-06 Thread Ali Chousein
/AlarmManager.html to trigger every synchronization. Hope it helps. - 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

[android-developers] Re: Android Project

2012-03-01 Thread Ali Chousein
or good reasons. --------- 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 https://marketplace.cisco.com/apphq/products/994 On Mar 1, 1:39 pm, Oli Wright wrote: >

[android-developers] Re: Android Project

2012-03-01 Thread Ali Chousein
e provides) ----- 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 https://marketplace.cisco.com/apphq/products/994 -- You received this message because you are subscri

[android-developers] Re: how to set the preferred rotation ?

2012-02-29 Thread Ali Chousein
Maybe my blog will be useful for you: http://android-screen-layout.blogspot.com/ - Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http://geo-filtered

[android-developers] Re: How to make this complex view

2012-02-29 Thread Ali Chousein
g-sense-of-multitouch.html Hope it helps. I never worked on features you are interested in, just searched http://developer.android.com/sdk/index.html. You should do the same if you want to get something done. ----- Ali Chousein http://www.codeproject.com/KB/andr

[android-developers] Re: JavaMail API

2012-02-28 Thread Ali Chousein
Yep. Probably you need this: http://code.google.com/apis/accounts/  Or check this list, one of them should serve your purpose: http://code.google.com/more/ - Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http

[android-developers] Hamada Ali wants to chat

2012-02-27 Thread Hamada Ali
--- Hamada Ali wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-59fcc31f00-5bffe81611-YXdYMGhZm_8tpM3wIWaNdUKjQpI Y

[android-developers] Google Maps

2012-02-26 Thread Hamada Ali
how i can retrieve the direction from google maps -- 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+unsu

[android-developers] Re: Seriously?

2012-02-23 Thread Ali Chousein
I give my rating and also write my comment. Let's use this platform for sharing knowledge only. --------- Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy http

[android-developers] Re: Acitivity finish when rotating written in Sencha Touch + Phonegap

2012-02-23 Thread Ali Chousein
Once I wrote a short blog on how to handle screen layout change in Android. Maybe you'll find it helpful: http://android-screen-layout.blogspot.com/ ----- Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx

[android-developers] Re: displaying face book albums and photos

2012-02-22 Thread Ali Chousein
://developers.facebook.com/docs/reference/api/photo/ - 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 https

[android-developers] Re: how to get call history

2012-02-17 Thread Ali Chousein
This link should be a starting point for you: http://developer.android.com/reference/android/provider/CallLog.Calls.html Google for "CallLog.Calls example" and you'll find examples also. --------- Ali Chousein http://www.codeproject.com/KB

[android-developers] Re: to develop an app

2012-02-17 Thread Ali Chousein
On Feb 16, 6:31 pm, amit pandey wrote: > Implement a listView in which each contains a Title(text), Description > and an image at right. Read the data from xml file and fill it into > list view. It's also quite sunny today outside but the forecast says it's going to rain in the afternoon. -- Yo

[android-developers] Re: Sms Manager

2012-02-16 Thread Ali Chousein
Yes it is normal. First when I saw this behavior I was also surprized, when then when I thought about it, it made sense that the SMSManager does not mess around with the DB of the SMS application on the phone. - Ali Chousein http

[android-developers] Conversion of Adobe Air app code to Eclipse

2012-02-16 Thread ALi
Hi, I want to convert code of Adobe air app to Eclipse Android SDK, Air app has swf and mxml files , not just animation, it talks to sever and show some values, is it possible make swf and mxml functional in Eclipse. Thanks -- You received this message because you are subscribed to the Google G

[android-developers] Re: Facebook Android Application

2012-02-16 Thread Ali Chousein
numbers. BUT, why should anybody use your app instead of just using the contacts which comes with the phone? How does your app differentiate from Android contacts? - Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx http

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

2012-02-16 Thread Ali Chousein
eceiver.clss); > startActivity(i); . . . > public class Receiver extends BroadcastReceiver{ You are calling startActivity for a BroadcastReceiver. What on earth are you trying to do there? ----- Ali Chousein http://www.codeproject.com/KB/android/PayGol

[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 ht

[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: Final year project app

2012-02-15 Thread Ali Chousein
hey why should anybody do it? - 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 https://marketplace.cisco.com/apphq

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

2012-02-15 Thread Ali Chousein
27;ll find what you need (you'll find at least one, there might be others as well). PS: If Android market does not allow you sell applications from India, noone in this discussion forum can change it. ----- Ali Chousein http://www.codeproject.c

Re: [android-developers] Cell tower's Location

2012-02-14 Thread Omais Ali
lLocation does not have that data. > > On Tue, Feb 14, 2012 at 2:45 AM, ALi wrote: > > Hi, Can i find Location of cell towers programmatically, Not user's > > Loaction. Thanks > > > > -- > > You received this message because you are subscribed to the Google >

[android-developers] Cell tower's Location

2012-02-14 Thread ALi
Hi, Can i find Location of cell towers programmatically, Not user's Loaction. 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 from this group, s

[android-developers] Re: How to simulate ConnectivityManager.CONNECTIVITY_ACTION?

2012-02-13 Thread Ali Chousein
I thought about something similar but still have problems. Like, I need to instantiate NetworkInfo and set its data like, "state" and "type" at least. However, the NetworkInfo interface does not seem to allow writing such data in an instance. As far as I understand, it doesn't define a public const

[android-developers] How to simulate ConnectivityManager.CONNECTIVITY_ACTION?

2012-02-13 Thread Ali Chousein
TIVITY_CHANGE"? Thanks all in advance, -Ali -- 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-dev

[android-developers] Re: i want to create simple android appln

2012-02-09 Thread Ali Chousein
spelling!) ----- 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 https://marketplace.cisco.com/apphq/products/994 -- You received this message because

[android-developers] Re: good android blog

2012-02-07 Thread Ali Chousein
When promoting own work, it's a good practice to avoid using articles like "good", "great", "excellent", "mind-blowing" etc. Posting the relevant link is usually considered to be enough. It's up to the audience to choose adjectives for describing the contents of the link. On Feb 7, 4:47 pm, "T.M.

[android-developers] Re: SMS Manager

2012-02-07 Thread Ali Chousein
#x27;ll need to implement the software for machines M1 and M2, but this should be something quite simple. If anybody has any other proposal it'll be very interesting to read it. ----- Ali Chousein http://www.codeproject.com/KB/android/PayG

[android-developers] How to get Cell's currently using frequency GSM/CDMA

2012-02-03 Thread ALi
Hi, Is there any Android class/ api by which i can get frequency of my cell GSM/CDMA. Any guideline. 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 unsubscr

[android-developers] How to get Cell's currently using frequency GSM/CDMA

2012-02-03 Thread ALi
Hi, Is there any Android class/ api by which i can get frequency of my cell GSM/CDMA. Any guideline. 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 unsubs

Re: [android-developers] Re: How to set the preferred APN through code?

2012-01-24 Thread Sayed Atif Ali
Hi, What I infer from your code is that you haven't added the APN first into the database. You need to first write the APN settings into the database before updating the preferred APN code. The following links will be helpful in making you understand and resolve the issue: http://blogs.msdn.com/b/

Re: [android-developers] How to set the preferred APN through code?

2012-01-23 Thread Sayed Atif Ali
You need to set the MCC )(Mobile Country Code) and MNC (Mobile Network Code) values too in your code to set and display the APN's on Android UI. Try the following code and see what happens: > > *private static* *final* Uri *PREFERRED_CONTENT_URI* = Uri.*parse*( > "content://telephony/carriers/pre

[android-developers] Re: Twitter Integration...?

2012-01-23 Thread Ali Chousein
ation. ----- 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 https://marketplace.cisco.com/apphq/products/994 -- You received this message because you are subscribed t

[android-developers] Re: remove view event

2012-01-19 Thread Ali Chousein
ating your question. ----- 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 https://marketplace.cisco.com/apphq/products/99

Re: [android-developers] Setting proxy in android through code

2012-01-16 Thread Sayed Atif Ali
ut on this topic. On Wed, Jan 11, 2012 at 6:18 PM, Mark Murphy wrote: > On Tue, Jan 10, 2012 at 9:39 PM, Sayed Atif Ali > wrote: > > I need to set the proxy through my code in android devices upwards of > > Android 2.3.3. The only method which I know of right now is doing it &g

<    1   2   3   4   5   6   7   8   >