Re: [android-developers] Get status in activity from BroadCastReceiver

2014-10-09 Thread Abhilash Baddam
Hi, You can try in this way, whenever you want to check data connection then just call the below function it returns connection availability: public boolean isConnectingToInternet(){ ConnectivityManager connectivity = (ConnectivityManager)

Re: [android-developers] Show multiple markers in Android map?

2014-09-17 Thread Abhilash Baddam
AM, TreKing treking...@gmail.com wrote: On Mon, Sep 15, 2014 at 11:37 AM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: I am able to show multiple markers in the map but if the locations are very nearby(near about 100 mts) then my markers are overlapping, I want to show

Re: [android-developers] Show multiple markers in Android map?

2014-09-17 Thread Abhilash Baddam
but how to prevent overlap? Can you please guide me. On Wed, Sep 17, 2014 at 10:12 PM, TreKing treking...@gmail.com wrote: On Wed, Sep 17, 2014 at 11:35 AM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: In the above two scenarios, the marker is pointing to same location

[android-developers] Show multiple markers in Android map?

2014-09-15 Thread Abhilash Baddam
Hi, I am able to show multiple markers in the map but if the locations are very nearby(near about 100 mts) then my markers are overlapping, I want to show the markers even if the distance between two locations are near about 100mts. I am using Google API V2. Can anyone guide me on this. -- You

[android-developers] Exception while parsing json response....

2014-05-13 Thread Abhilash Baddam
Hi All, I am trying to parse a json response using gson library. The response should contain always only one object(site) I tried in so many ways but always getting the below exception. But I am getting the below exception, com.google.gson.JsonSyntaxException: java.lang.IllegalStateException:

[android-developers] Re: Exception while parsing json response....

2014-05-13 Thread Abhilash Baddam
can anyone help on this... On Tue, May 13, 2014 at 8:45 PM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: Hi All, I am trying to parse a json response using gson library. The response should contain always only one object(site) I tried in so many ways but always getting

Re: [android-developers] supporting multiple screen: issue in 8.3 inch tab

2014-05-01 Thread Abhilash Baddam
, Apr 30, 2014 at 1:18 AM, TreKing treking...@gmail.com wrote: On Tue, Apr 29, 2014 at 12:24 PM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: I am getting the crash in 8inch LG G Pad... specifications of this device is: You should share what the crash

Re: [android-developers] supporting multiple screen: issue in 8.3 inch tab

2014-04-29 Thread Abhilash Baddam
, 2014 at 11:44 PM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: Hi Treking, Thanks for the reply... I tried to create an emulator with the specifications of the LG G tab and ran app so many times but every time emulator is behavior is strange. Its stopped working and a pop up

Re: [android-developers] Re: supporting multiple screen: issue in 8.3 inch tab

2014-04-26 Thread Abhilash Baddam
8.3. Usually from which it should pick layout files and drawable files for this 8.3 inch. I have read supporting mutilple screen article from developer site. Please guide me in this. Regards, Abhilash Baddam -- You received this message because you are subscribed to the Google

Re: [android-developers] supporting multiple screen: issue in 8.3 inch tab

2014-04-26 Thread Abhilash Baddam
, do i need to make any settings for emulator so that I can run the app in emulator.? On Sat, Apr 26, 2014 at 9:52 PM, TreKing treking...@gmail.com wrote: On Fri, Apr 25, 2014 at 11:44 PM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: I am suspecting the issue might be due

[android-developers] supporting multiple screen: issue in 8.3 inch tab

2014-04-25 Thread Abhilash Baddam
folder under res folder to support 8.3. Usually from which it should pick layout files and drawable files for this 8.3 inch. I have read supporting mutilple screen article from developer site. Please guide me in this. Regards, Abhilash Baddam -- You received this message because you

Re: [android-developers] how to create map api key for google map v1

2014-03-26 Thread Abhilash Baddam
any help on this :) On Wed, Mar 26, 2014 at 9:04 AM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: Hi Treking, Thanks for the reply. My existing key is not working. While developing the app, I used different machine now in the same code i am making changes in some other

[android-developers] how to create map api key for google map v1

2014-03-25 Thread Abhilash Baddam
Hi, I have developed an app long time back using google map api v1, there i have used mapview. Now i want to make some changes in that but i couldnt be able to create map api key for that app now. How can i create the map api key for that. I know that map api v1 is deprecated but to use map api v2

Re: [android-developers] how to create map api key for google map v1

2014-03-25 Thread Abhilash Baddam
it seems. Do we need to create the api key every time if we make changes in different machines? How can i use the existing key now? On Wed, Mar 26, 2014 at 5:09 AM, TreKing treking...@gmail.com wrote: On Tue, Mar 25, 2014 at 1:03 PM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: I

[android-developers] Best way to get the current location

2014-02-15 Thread Abhilash Baddam
Hi, To get the user location I have found two ways: 1. http://developer.android.com/training/location/retrieve-current.html . This one is using what I think is the new Google Services release which uses a LocationClient to connect to Google Services and retrieve the location.

[android-developers] Data getting null when the app in background

2014-01-15 Thread Abhilash Baddam
Hi, In my activity there are two spinners,listview and a button GO. When the user select the options from the spinners and he clicks on GO button there is a server request. whatever the response comes from server i am displaying that data in listview... Once the data displayed, if the user keep

[android-developers] Re: menu options

2013-10-29 Thread Abhilash Baddam
support in 2.3. Can we say all the mobiles api level (=10) have menu key...??? On Thursday, October 24, 2013, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: http://android-developers.blogspot.in/2012/01/say-goodbye-to-menu-button.html -- You received this message because you

[android-developers] Menu Key Availability....?

2013-10-29 Thread Abhilash Baddam
Hi, I have referred the below blog, http://android-developers.blogspot.in/2012/01/say-goodbye-to-menu-button.html In my app I want to check the Menu key is present or not. For that I have used hasPermanentKey() function which is introduced in API level 14 but I cant use it GB. Can we assume if

[android-developers] Re: Menu Key Availability....?

2013-10-29 Thread Abhilash Baddam
HI, Is there any possibility to check whether the menu hard key is present or not in Gingerbread(2.3)... ? On Tue, Oct 29, 2013 at 3:31 PM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: Hi, I have referred the below blog, http://android-developers.blogspot.in/2012/01/say

[android-developers] how can i show menu options in api level 17???

2013-10-23 Thread Abhilash Baddam
Iam having an application which contains Menu options, but in some of Jelly Bean devices we dont have the Menu soft key button in that case how can i show those options Do i need to check sdk version, based on that i have to implement funtionality ...? and I am unable to use hasPermanentMenuKey()

[android-developers] how to track the location continously...

2013-10-16 Thread Abhilash Baddam
Hi, I am trying to track the User current location continoulsy till he s In my app there are two buttons *Start* and *Stop.* * * When the user clicks on button Start button, I want to track his location continuously till he clicks on Stop button I am not using the any service or

Re: [android-developers] Re: how to track the location continously...

2013-10-16 Thread Abhilash Baddam
Hi MAthieu, Thanks for the reply. In The link provided by you there they are using Google Play Services for that we need Google Playservices SDK. My app supports from Android 2.2 onwards can I use those PLayservices API in my APP?? On Thu, Oct 17, 2013 at 7:09 AM, MathieuB blanc...@gmail.com

Re: [android-developers] how to track the location continously...

2013-10-16 Thread Abhilash Baddam
16, 2013 at 1:42 PM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: Hi, I am trying to track the User current location continoulsy till he s In my app there are two buttons *Start* and *Stop.* * * When the user clicks on button Start button, I want to track his

[android-developers] How to display in HH:MM:SS

2013-10-10 Thread Abhilash Baddam
Hi, I am having two dates with times for example: String dateStart = 01/14/2012 09:30:55; String dateStop = 01/15/2012 18:25:54; SimpleDateFormat format = new SimpleDateFormat(MM/dd/ HH:mm:ss); Date d1 = null; Date d2 = null; d1 = format.parse(dateStart); d2 =

Re: [android-developers] How to display in HH:MM:SS

2013-10-10 Thread Abhilash Baddam
Hi, I have tried but I am not getting in that format which I want On Thu, Oct 10, 2013 at 11:33 PM, TreKing treking...@gmail.com wrote: On Thu, Oct 10, 2013 at 12:21 PM, Abhilash Baddam abhilash.androiddevelo...@gmail.com wrote: 33:05:01. How can I get in that format..? This has

[android-developers] Stop watch functionality in Android

2013-10-09 Thread Abhilash baddam
Hi, I want to implement something like Stopwatch functionality., When the user clicks on a Start button, I want to start the stopwatch which shows the hr:min:sec in textview and keep on updates it, and when the user clickis on button Stop, then timer needs to be stop. Even if the user starts the

[android-developers] Re: Stop watch functionality in Android

2013-10-09 Thread Abhilash baddam
Hi, Thanks for the reply. Otherwise shall I use the service so that android system doesn't kill the service..? Is there any other better approach for this...?? On Thursday, October 10, 2013, TreKing treking...@gmail.com wrote: On Wed, Oct 9, 2013 at 12:57 PM, Abhilash baddam

[android-developers] Re: Stop watch functionality in Android

2013-10-09 Thread Abhilash baddam
from restore instance state,if I am not wrong..? On Thursday, October 10, 2013, TreKing treking...@gmail.com wrote: On Wed, Oct 9, 2013 at 9:41 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Otherwise shall I use the service so that android system doesn't kill the service

[android-developers] Expandable List-Check All

2013-09-18 Thread Abhilash baddam
Hi, I am trying to create a custom expandable list where there is a group view and child view will have a checkboxes. If i click on group view checkbox then all the child view checkboxes should checked and vice versa... Basically I want to implement check all and uncheck all functionality. I

[android-developers] Unable to send BroadCast

2013-05-17 Thread Abhilash baddam
Hi, I am having two apps in which one app(AppA) consists only BroadCastReceiver and another app(AppB) is having an Activity from there I am sending a broadcast to the AppA. But I am not getting any event in AppA in which I have implemented the onReceive function. *AppA and it's manifest file:*

[android-developers] SHIFT and ALT key functionality implementation in ICS...?

2013-04-26 Thread Abhilash baddam
Hi, We are working on a device which contains physical keyboard with OS version 4.0.4(ICS)(Note: looks like Blackberry bold model). In that device *Shift Key (*KEYCODE_SHIFT_LEFT*) and *ALT key* (*KEYCODE_ALT_LEFT*)is not working. We are getting the proper KEYCODEs when we press those buttons

[android-developers] Getting current location...?

2013-03-17 Thread Abhilash baddam
in Android version 4.1.? Regarding, Abhilash Baddam -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers

Re: [android-developers] Re: How to hide my widget from the Widgets list.....?

2013-03-01 Thread Abhilash baddam
Hi, Thanks for the reply. But need more help. On Fri, Mar 1, 2013 at 2:14 PM, futurexiong futurexi...@gmail.com wrote: AppWidgetProvider is also a BroadcastReceiver,and I think you also can enable or disable it through your code.But I don't know whether it would work because I don't see

[android-developers] how to enable programmatically....?

2013-01-06 Thread Abhilash baddam
Hi, I am having a toggle button in my app.. I want to control Bluetooth by using that toggle button.. Is it possible to turn on/off Bluetooth programmatically in Android...? If anybody is having idea on this please let me know,.. Thanks, Abhay -- You received this message because you

[android-developers] recorded video orientation issue on GB 2.3.6

2012-11-30 Thread Abhilash baddam
Hi, I tried to record a video and after saving the video, when i tried to play that recorded video from the Gallery it always playing in Landscape mode even if rotate my device into portrait mode. This thing is happening only in Ginger Bread 2.3.6 but in the devices with OS version

Re: [android-developers] can we restart systemserver..............?

2012-07-19 Thread Abhilash baddam
operation. On Tue, Jul 17, 2012 at 7:52 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: HiDianne Hackborn , Thanks for the reply, still I am having some doubts, 1) I read that HeadsetObserver which is a systemservice, starts whenever headset is detected and stops working

Re: [android-developers] can we restart systemserver..............?

2012-07-17 Thread Abhilash baddam
services. On Sat, Jul 14, 2012 at 10:17 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, Generally SystemServer wiil start all systemservices (ActivityManagerService, PackageManager etc..)right. 1)Is it possible to restart the systemserver so that all systemservices

[android-developers] can we restart systemserver..............?

2012-07-14 Thread Abhilash baddam
Hi, Generally SystemServer wiil start all systemservices (ActivityManagerService, PackageManager etc..)right. 1)Is it possible to restart the systemserver so that all systemservices will be restarted. 2) Similarly can we restart the particular systemservice for ex: PackageManagerService. --

[android-developers] Regarding Packagemanager..?

2012-07-12 Thread Abhilash baddam
Hi, I came to know that after booting device, all the system apps and market apps( if there) will be loaded right. These all things will be handled by PackageManager means which are the already installed apps, based on that it will load all the apps. But how the PackageManager gets the

Re: [android-developers] application launching process...?

2012-07-08 Thread Abhilash baddam
you are looking for. On Sat, Jul 7, 2012 at 10:56 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, I have tried but I didn't get it, Generally SystemServer(calls from SystemServer.java file) starts all systemservices after that how the Systemapps are loading I am

Re: [android-developers] application launching process...?

2012-07-07 Thread Abhilash baddam
Hi, I have tried but I didn't get it, Generally SystemServer(calls from SystemServer.java file) starts all systemservices after that how the Systemapps are loading I am not getting. can anyone please help me on this? On Wed, Jul 4, 2012 at 9:35 PM, Abhilash baddam abhilash.androiddevelo

Re: [android-developers] application launching process...?

2012-07-04 Thread Abhilash baddam
Thanks Kris for the reply, could you please provide me some useful links for the same. On Mon, Jul 2, 2012 at 12:45 AM, Kristopher Micinski krismicin...@gmail.com wrote: On Sun, Jul 1, 2012 at 2:30 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, After switching

[android-developers] application launching process...?

2012-07-01 Thread Abhilash baddam
Hi, After switching on the mobile(after booting process) all the applications will be loaded like System apps, 3rd party apps etc... how these apps are loading means I want to know the way, procedure or process for this. Can anyone suggest me any websites or docs to know these things. -- You

[android-developers] Problem while running ICS..?

2012-04-27 Thread Abhilash baddam
Hi, I had made an application whose target api level is 2.2 and min:sdkversion in manifest i mentionedas 7. This application is running in all devices even in tablets also, but this application is not running in the devices whose OS is ICS Do i need to mention anything in manifest to run it

Re: [android-developers] Carousel || Coverflow with LinearLayout Views

2012-04-26 Thread Abhilash baddam
Hi, I have implemented carousel demo example with reference to http://www.codeproject.com/Articles/146145/Android-3D-Carousel but when I am using 11 images in this i am not getting proper position of each item... How can I get the proper position of each item...? Could anyone help me on

[android-developers] caurosel demo...?

2012-04-24 Thread Abhilash baddam
Hi, I have implemented caurosel demo which is working fine but when I am using with 11 images in that, I am not getting proper position of particular item in that view. Always I am getting position of item as Zero. Can anybody help me on this issue -- You received this message because you are

[android-developers] SDK VERSION?

2012-03-21 Thread Abhilash baddam
Hi Friends, For my Application I am using target version as API Level 8 and I mentioned minSdkVersion in manifest as 7. 1) If the user is having SDCard automatically I want to install my app in SDCard other wise in internal memory. For that I mentioned android:installLocation=preferExternal in

[android-developers] keyboard pushing the complete screen..?

2012-02-13 Thread Abhilash baddam
Hi, I am having a layout which contains Relativelayout as root layout. the layout structure is like this... RelativeLayout Edittext/ ListView/ ImageView android:layout_alignParentBottom=true/ /RelativeLayout In that layout i am having imageview which is android:layout_alignParentBottom=true.

[android-developers] Re: keyboard pushing the complete screen..?

2012-02-13 Thread Abhilash baddam
Hi, Any help on this issue...? On 2/13/12, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, I am having a layout which contains Relativelayout as root layout. the layout structure is like this... RelativeLayout Edittext/ ListView/ ImageView

[android-developers] Re: keyboard pushing the complete screen..?

2012-02-13 Thread Abhilash baddam
Hi, I am guessing that the problem is because of ListView, but i require listview in that screen. How to get rid on this issue...? On 2/13/12, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, Any help on this issue...? On 2/13/12, Abhilash baddam abhilash.androiddevelo

Re: [android-developers] Re: keyboard pushing the complete screen..?

2012-02-13 Thread Abhilash baddam
PM, bimal bose bimalxtr...@gmail.com wrote: use linear layout instead of relative (or wrap the whole relative + the bottom thing under a linear layout ) On Mon, Feb 13, 2012 at 7:35 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, I am guessing that the problem

[android-developers] Maps with GPS indicator in status bar..?

2012-02-02 Thread Abhilash baddam
Hi, If we open Maps application(in built) in the device it will show the GPS indicator on the status bar already if GPS is enabled in the device and If we come out from the maps application then that indicator will dismissed from status bar. Similarly how in my application if i am using GPS

Re: [android-developers] Maps with GPS indicator in status bar..?

2012-02-02 Thread Abhilash baddam
2, 2012 at 5:59 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Similarly how in my application if i am using GPS yhen i want to show GPS indicator on the status bar and whwnever i come out from my application i want to dismiss that indicator from staus bar. How can i achieve

Re: [android-developers] Disabled EditText is not working properly...?

2012-01-26 Thread Abhilash baddam
Thanks to allI tried as aparna told is working fine On Wed, Jan 25, 2012 at 3:05 PM, unicus unicus unicus...@gmail.com wrote: yes do set focusable false. *More info*, http://androidbasic-answer.blogspot.com/ -- You received this message because you are subscribed to the Google

[android-developers] Disabled EditText is not working properly...?

2012-01-24 Thread Abhilash baddam
Hi, I am disabling editext programmatically like this edittext.setEnabled(false);...but when that disabled edittext is focused then if i try to type something through keyboard cahracters are entering into that edittext. But when it is disable mode i don't want to enter anything...? how to solve

[android-developers] Twitter Integration...?

2012-01-22 Thread Abhilash baddam
Hi, I tried a lot to integrate twitter in my application but it's not working for me. I had give proper consumer key and consumer secret key even though i am getting this exception. Anyone help me out from this issue. 01-23 00:22:57.848: W/KeyCharacterMap(305): No keyboard for id 0 01-23

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

2012-01-22 Thread Abhilash baddam
Hi, Any help on this issue. On 1/23/12, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, I tried a lot to integrate twitter in my application but it's not working for me. I had give proper consumer key and consumer secret key even though i am getting this exception. Anyone

Re: [android-developers] call duration...?

2012-01-08 Thread Abhilash baddam
/12, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi narendra, I tried as per your suggestion thanks. But i was strucked to find out whether the outgoing call has been answered. On 1/4/12, Narendra Bagade bagadenaren...@gmail.com wrote: refer related content provider like call

Re: [android-developers] How can i display exactly on the top....?

2012-01-04 Thread Abhilash baddam
, Abhilash baddam wrote: Hi, My problem is when i tap on the marker i want to show the popup exactly on the top of the marker like displayed in requires.png(attatchment) but the popup i am getting is always on the top of the screen like displayed in capture.png(attatchment) How can i

Re: [android-developers] call duration...?

2012-01-04 Thread Abhilash baddam
Hi narendra, I tried as per your suggestion thanks. But i was strucked to find out whether the outgoing call has been answered. On 1/4/12, Narendra Bagade bagadenaren...@gmail.com wrote: refer related content provider like call log. On Wed, Jan 4, 2012 at 12:26 PM, Abhilash baddam

Re: [android-developers] How can i display exactly on the top....?

2012-01-04 Thread Abhilash baddam
()); /Poncho On 01/04/2012 11:35 AM, Abhilash baddam wrote: Hi poncho, Thanks for the reply. I did get your suggestion, can you please explain it clearly. On 1/4/12, ponchoponcho...@gmail.com wrote: Hi, I'm not sure that I understand, what's wrong with: popup.layout( left, top, left

Re: [android-developers] How can i display exactly on the top....?

2012-01-04 Thread Abhilash baddam
any help on this issue? On 1/4/12, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi poncho, I tried but its not working as per your suggestion. On 1/4/12, poncho poncho...@gmail.com wrote: Hi, What happen if you try to move the popup before displaying it using

Re: [android-developers] How can i display exactly on the top....?

2012-01-04 Thread Abhilash baddam
any help on this issue... On 1/4/12, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: any help on this issue? On 1/4/12, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi poncho, I tried but its not working as per your suggestion. On 1/4/12, poncho poncho

[android-developers] Fwd: How can i display exactly on the top....?

2012-01-03 Thread Abhilash baddam
Hi, I am working maps. I am displaying different locations using marker. When i tap on the marker i can be to display a popup which will display always on the top screen, but how can i display exactly on the top of marker... here is my ItemizedOverlay Class.. private class SitesOverlay

Re: [android-developers] How can i display exactly on the top....?

2012-01-03 Thread Abhilash baddam
any help regading this issue... On Tue, Jan 3, 2012 at 9:06 PM, TreKing treking...@gmail.com wrote: On Tue, Jan 3, 2012 at 8:41 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: When i tap on the marker i can be to display a popup which will display always on the top screen

[android-developers] call duration...?

2012-01-03 Thread Abhilash baddam
Hi, I want to know the call duration, when I called to other number and when that call-ends. How can i get the call duration...? -- 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] GIF image download

2011-04-14 Thread Abhilash baddam
Hi vani, try this link may be it will be helpful for u http://androidosbeginning.blogspot.com/2010/09/gif-animation-in-android.html On Tue, Apr 12, 2011 at 5:52 PM, vani reddy vani.redd...@gmail.com wrote: Hi, I am trying to download gif images from the server, but i am

[android-developers] Rarely getting ActivityNotFoundException?

2011-04-13 Thread Abhilash baddam
Hi, In my app rarely it's showing ActivityNotFoundException even i have mentioned all Activities in my manifest file. The app running properly sometimes only its showing that error...? What may be the reason? -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: How do i upload the file from android mobile to public server

2011-04-08 Thread Abhilash baddam
Hi, may be this link will be helpful to u.. http://androidsnips.blogspot.com/2011_03_01_archive.html On Fri, Apr 8, 2011 at 11:36 AM, snehalal gangadharam snehala...@gmail.comwrote: hi, y i didnt get any reply? i have tested this application from real device. i am getting IO

Re: [android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread Abhilash baddam
Hi pramod, For me also it's working, whenever the string length is more. So that i have given the string like this string On Fri, Apr 8, 2011 at

Re: [android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread Abhilash baddam
or not? I am using 2.1 Update1. API level is 7 On Apr 8, 12:37 pm, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi pramod, For me also it's working, whenever the string length is more. So that i have given the string like this string

[android-developers] How much time it will take approximately ?

2011-04-06 Thread Abhilash baddam
Hi, can anyone is having idea that how much time it will take approximately to connect from one- WiFi to another WiFi. Suppose i was connected to one WiFi when it is out range then how much time the device will take to connect to another WiFi router which is in range...? -- You

Re: [android-developers] How can I get current running Activity from Context

2011-03-31 Thread Abhilash baddam
Hi, may be the below link will help you. http://qtcstation.com/2011/01/getting-info-about-your-currently-running-activities/ On Wed, Mar 30, 2011 at 12:00 PM, Takeyuki UEDA grenouill.v...@gmail.comwrote: Hi, Does anyone knows how to get current running Activity from Context? Because I

[android-developers] How to hide status bar..?

2011-03-24 Thread Abhilash baddam
Hi, I referred this link http://developer.android.com/resources/articles/on-screen-inputs.html . In that if the user clicks on EditText(for ex To: ) at that time keyboard will be popped out and at the same time the user can be able to scroll to see all remaining views(ex:

[android-developers] how to convert...?

2011-03-17 Thread Abhilash baddam
Hi, How to convert the timestamps having values more than year 2038 to date format in android. I have to convert the timestamp which is coming from server to date format in my android Application. This is the timestamp, I got from Server : 25340230079 When I convert this to date, it

[android-developers] Android developer site is not working?

2011-03-08 Thread Abhilash baddam
Hi, why http://www.developer.android.com is not working. Anybody is having any idea..? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

Re: [android-developers] Android developer site is not working?

2011-03-08 Thread Abhilash baddam
Yes its working now. Previously sometime it shows Error 500. Now its working. On Tue, Mar 8, 2011 at 7:20 PM, Mark Murphy mmur...@commonsware.com wrote: It's also experiencing some 500 errors in general. I would use the local copy of your documentation, installed with your SDK, for a bit

Re: [android-developers]

2011-03-03 Thread Abhilash baddam
Hi, *Yappaaa..*Well r u using listview or autocompletetextview to search the items. Try to refresh the the listview if u r using ListView. Send some code snippet so that we can try to resolve ur problem. On Thu, Mar 3, 2011 at 1:12 PM, vani reddy vani.redd...@gmail.com wrote: Hi,

[android-developers] Getting Exception while creating..?

2011-02-23 Thread Abhilash baddam
Hi, I am trying to create a table, like this *myDB.execSQL(CREATE TABLE IF NOT EXISTS bikes_list(_id INTEGER AUTOINCREMENT, name PRIMARY KEY VARCHAR , availablebikes INT, slots INT,status VARCHAR););* * * but i am getting this Exception, * * * *ERROR/AndroidRuntime(11141): Caused by:

Re: [android-developers] Getting Exception while creating..?

2011-02-23 Thread Abhilash baddam
: AUTOINCREMENT is only available on INTEGER PRIMARY KEY columns: http://sqlite.org/lang_createtable.html http://sqlite.org/autoinc.html On Wed, Feb 23, 2011 at 9:15 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, I am trying to create a table, like

Re: [android-developers] Getting Exception while creating..?

2011-02-23 Thread Abhilash baddam
the _ID AUTOINCREMENT and use a UNIQUE constraint on the name. On Wed, Feb 23, 2011 at 9:32 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi Mark, What's the solution for my problem, i want the _id column should have integer values and there should be increment

Re: [android-developers] Getting Exception while creating..?

2011-02-23 Thread Abhilash baddam
exception. Your UNIQUE clause is incorrect. At minimum, the datatype needs to come first. On Wed, Feb 23, 2011 at 10:35 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: I used like that, but i am getting exception.../? myDB.execSQL(CREATE TABLE IF NOT EXISTS bikes_list(_id

Re: [android-developers] Re: How to delete...?

2011-02-22 Thread Abhilash baddam
...? On Mon, Feb 14, 2011 at 11:14 PM, macno ma...@macno.org wrote: On Feb 14, 3:59 pm, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, what type of mistake is i am doing? If you don't want to use bind variables, you need to add ' around non numeric values

Re: [android-developers] Re: How to delete...?

2011-02-22 Thread Abhilash baddam
Hi Carlos, Means where exactly i am doing mistake means while inserting values or deleting the values? On Tue, Feb 22, 2011 at 6:12 PM, Carlos Silva r3...@r3pek.org wrote: On Tue, Feb 22, 2011 at 11:39, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: myDB.execSQL

[android-developers] Can we install?

2011-02-22 Thread Abhilash baddam
Hi, can we install Android market in Emulator? -- 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] How to display,exactly?

2011-02-20 Thread Abhilash baddam
Hi, In my app i can be able to display maps with markers. When the user clicks on a particular marker, it will display the details of that particular location, but it display's details for every marker on the top the screen. I want to display exactly on the top marker. Hoe can i do

[android-developers] How to rotate?

2011-02-18 Thread Abhilash baddam
Hi, I am trying to rotate an image for every 3 secs, but it's not working. I did like this but not working..what may be the reason..? public class TimerEx extends Activity { Timer timer; ImageView image; Bitmap bMap = null; Bitmap bitmap; Matrix mat = new Matrix(); @Override public

Re: [android-developers] How to rotate?

2011-02-18 Thread Abhilash baddam
://developer.android.com/resources/articles/timed-ui-updates.html -- Kostya 18.02.2011 15:17, Abhilash baddam пишет: Hi, I am trying to rotate an image for every 3 secs, but it's not working. I did like this but not working..what may be the reason..? public class TimerEx extends Activity

Re: [android-developers] Exception while calling web service----java.net.SocketException: Permission denied

2011-02-17 Thread Abhilash baddam
have u given the Internet Permissions in Manifest File. On Fri, Feb 18, 2011 at 12:49 PM, Ravi ravi.chavan...@gmail.com wrote: Hi, I am developing one application through which i am calling web service. The web Service is hosted on the local machine,but while calling web service i

[android-developers] How to handle?

2011-02-16 Thread Abhilash baddam
Hi, How to handle the Home key functionality. Suppose in my app i am having 5 activities. When the user in 3rd activity if he clicks on Home button i want to finish my app. If he starts the app again then i want to start the app from starting onwards. I did like this but its not working,

[android-developers] How to delete...?

2011-02-14 Thread Abhilash baddam
Hi, In sqlite database, i am having some values. How can i delete a particular value from database. I tried like but showing error.. What mistake is i am doin here..? myDB.execSQL(DELETE FROM tablename where colname=+string); i want to delete the value at that particulat string. Any help

Re: [android-developers] How to delete...?

2011-02-14 Thread Abhilash baddam
have invalid SQL, because your string is not quoted. Please use: String[] args={string}; myDB.execSQL(DELETE FROM tablename where colname=?, args); On Mon, Feb 14, 2011 at 9:15 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, In sqlite database, i am having some

Re: [android-developers] Re: How to delete...?

2011-02-14 Thread Abhilash baddam
:15 am, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: I tried like but showing error.. Why is it so hard for people to explain WHAT error they get? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] How to delete...?

2011-02-14 Thread Abhilash baddam
Hi, In my code i used the command like this,** * * * myDB.execSQL(DELETE FROM tablename where colname=+string,null);* In the place of args i am passing null, is it correct what exactly i have to pass there. On Mon, Feb 14, 2011 at 8:06 PM, Abhilash baddam abhilash.androiddevelo

Re: [android-developers] How to delete...?

2011-02-14 Thread Abhilash baddam
Hi, what type of mistake is i am doing? On Mon, Feb 14, 2011 at 8:11 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, In my code i used the command like this,** * * * myDB.execSQL(DELETE FROM tablename where colname=+string,null);* In the place of args i am

Re: [android-developers] Re: How to delete...?

2011-02-14 Thread Abhilash baddam
http://developer.android.com/intl/de/guide/topics/data/data-storage.html#db At the end of it, there are 2 links to examples of complete applications. On 14 фев, 16:59, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi, what type of mistake is i am doing? On Mon, Feb 14

[android-developers] How to go to previous page..?

2011-02-10 Thread Abhilash baddam
Hi, I have a problem, in my application i am displaying webview in customized dialog. suppose if the user browse 5 pages in the webview how can he come back to previous page, if i click on back button the dialog is dismissing. So i thought i want to put a button also in dialog to achieve the

Re: [android-developers] How to go to previous page..?

2011-02-10 Thread Abhilash baddam
...@gmail.comwrote: On 10 February 2011 12:03, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: I have a problem, in my application i am displaying webview in customized dialog. suppose if the user browse 5 pages in the webview how can he come back to previous page, if i click on back

Re: [android-developers] How to go to previous page..?

2011-02-10 Thread Abhilash baddam
Hi, if i give dialog.setCancellable(true); the the dialog box is dismissing...? what shall i do? On Thu, Feb 10, 2011 at 6:14 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi Marcin, What u have sent the link, is helped me alot in general webview

Re: [android-developers] How to go to previous page..?

2011-02-10 Thread Abhilash baddam
hi kostya, but if i do as u told back button is not working...? Any alternate for this ? On Thu, Feb 10, 2011 at 6:46 PM, Kostya Vasilyev kmans...@gmail.com wrote: Um, if you don't want that, call dialog.setCancellable(false) ? 10.02.2011 15:53, Abhilash baddam пишет: Hi

  1   2   >