Re: [android-developers] parsing responce of a web url

2013-11-07 Thread Siva Kumar
explain what do u want to do?


On Thu, Nov 7, 2013 at 4:52 PM, TreKing treking...@gmail.com wrote:


 On Thu, Nov 7, 2013 at 1:28 AM, shiva pendem pendem.shiv...@gmail.comwrote:

 I have 0 knowledge in this.
 Can you please send me a small method where i will be giving the site url
 and the output xml or string need to be resulted.

 Having you tried searching the internet? This is a very common task.


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 


*Thanks  Regards,SIVAKUMAR.J
http://stackoverflow.com/users/385138/sivakumar-j*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] developing with higer sdk than minimun target

2013-10-23 Thread Siva Kumar
If you are using any new API which is not available in version 2.3.3 then
you face problem,otherwise it works fine
On Oct 23, 2013 3:22 AM, firebreather michaelirvingbr...@gmail.com
wrote:

 is there any significant risk in using a higher sdk to develop than the
 minsdkversion target declared in the manifest? in other words, if i'm
 developing on android 4.0.3 version 15  sdk/api will the app work correctly
 on an android 2.3.3 api phone.

 currently my app has been working on both tablets and version 2.3.3
 phones with this strategy, although the console says I have to declare
 minimum target 11 or better for tablets. I've been asking this basic
 question for over a year in forums, stack overflow and support emails
 without a response.

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Data transfer over USB between Android host and device

2013-10-22 Thread Siva Kumar
For socket connection via USB tithering u need device driver .it will be
provided by vendor of the android device
On Oct 22, 2013 1:29 AM, Lew lewbl...@gmail.com wrote:

 galapogos wrote:

 Hi, thanks, do you mean this - http://developer.android.**
 com/guide/topics/connectivity/**usb/index.htmlhttp://developer.android.com/guide/topics/connectivity/usb/index.html
  ?

 This might work, but I'm assuming it runs over ADB, and will require ADB
 drivers on the host. If the host is an Android device or an embedded Linux
 system on an ARM processor, are there ADB drivers for these platforms?


 That page you reference directly contradicts your assumption.

 /Au contraire/, it talks about ADB using TCP/IP to communicate. Hmm.


 SIVAKUMAR.J wrote:

 U can use socket connection.there is android API is available

 Don't sprain your fingers typing out the whole word You or anything.


 galapogos wrote:


 Is there any protocol that enables data transfer over USB between
 Android host and devices. I'm not looking for file transfer like adb, but
 rather data transfer like over a serial port or something, but faster.


 TCP/IP.

 You can use FTP, Telnet, direct socket connections, etc.

 There has to be a network connection, either WiFi or USB or whatever,
 between the Android device and the other(s).

 --
 Lew


 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Data transfer over USB between Android host and device

2013-10-20 Thread Siva Kumar
U can use socket connection.there is android API is available
On Oct 21, 2013 8:27 AM, galapogos gois...@gmail.com wrote:

 Hi,

 Is there any protocol that enables data transfer over USB between Android
 host and devices. I'm not looking for file transfer like adb, but rather
 data transfer like over a serial port or something, but faster.

 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, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] android how to increase the width ,height of the box of checkbox.

2013-10-19 Thread Siva Kumar
U can use style property it will help u
On Oct 20, 2013 5:18 AM, TreKing treking...@gmail.com wrote:


 On Sat, Oct 19, 2013 at 2:28 PM, 12169 ashish.a...@gmail.com wrote:

 I want to increase the the width,height of the rectangular box of the
 checkbox.but did not find any attribute to control it.
 any help?


 The Google is your buddy:
 http://stackoverflow.com/questions/3965484/custom-checkbox-image-android


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
 transit tracking app for Android-powered devices

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] android how to use same layout in the other layout files.

2013-10-18 Thread Siva Kumar
U can acheive this by using include tag in xml layout
On Oct 18, 2013 7:23 PM, 12169 ashish.a...@gmail.com wrote:

 Hi,

 I have below layout file and i want to use it inside of other layout
 files, instead of every time creating  it. and inside of  other layout
 files i want to change the text of  textview and also want to provide the
 id to TextView

  LinearLayout
 android:layout_width=match_parent
 android:layout_height=wrap_content
 android:orientation=vertical
 TextView
 android:layout_width=wrap_content
 android:layout_height=wrap_content
 android:text=Ashish/
 TextView
 android:layout_width=wrap_content
 android:layout_height=wrap_content
 android:text=Sharma/
 /LinearLayout 

  --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Indeterminate Progress Bar not animating

2013-10-18 Thread Siva Kumar
U need to use publish progress method
On Oct 18, 2013 9:27 PM, Bradley O'Hearne br...@bighillsoftware.com
wrote:

 I have an  indeterminate ProgressBar in an XML layout for a fragment. When
 I display this fragment the first time, the ProgressBar visibility is set
 to VISIBLE, and the activity circle spins until a loading operation is
 complete, at which time the ProgressBar visibility is set to INVISIBLE, and
 it disappears. All good so far.

 However, when conditions occur that causing the loading operation to
 happen again, the ProgressBar visibility is set to VISIBLE, but it does not
 animate (spin), it stays static. I can reinitiate that loading operation as
 many times as I want, and reset the ProgressBar visibility ad naseum, but
 it never spins again.

 First, the code is being invoked already on the UI thread, so it should
 work (it is actually downstream from the onReceive callback of a
 BroadcastReceiver, which at least with the references I've been able to dig
 up, is supposed to happen on the UI thread). However, just to be safe, I
 tried two other means of putting the changing of ProgressBar visibility on
 the UI thread, via:

 1. Explicitly running on the UI thread:

 getActivity().runOnUiThread(new Runnable()
 {
 @Override
 public void run()
 {
 progressBar.setVisibility(View.VISIBLE);
 }
 });

 2. Using an AsyncTask, where onPostExecute() is guaranteed to be on the UI
 thread.:

 public static class ProgressBarTask extends AsyncTaskVoid, Void,
 Bitmap
 {
 private ImageLoader loader;

 @Override
 protected Bitmap doInBackground(Void... params)
 {
 return true
 }

 @Override
 protected void onPostExecute(Bitmap result)
 {

  ImportantWrappingClass.this.progressBar.setVisibility(View.VISIBLE);
 }
 }

 In addition to this, I also tried resetting the ProgressBar's progress to
 0 (even though it was indeterminate). None of the above had any effect, the
 ProgressBar still doesn't spin the second (or third, or n time it is
 displayed).

 So my question -- how can I get an indeterminate ProgressBar to spin when
 hidden/displayed again after the first time?

 Your answers are appreciated.

 Thanks,

 Brad

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Unable to authorize adb on Windows 7 after set of 10/8/13 Microsoft patches applied

2013-10-12 Thread Siva Kumar
I think there is some problem in ur device driver .uninstall  re install
the driver,or contact ur vendor such as windows, mobile device vendor.
On Oct 13, 2013 6:47 AM, Lee lee.dar...@gmail.com wrote:

 I have a new problem with my Android development environment.  In it's
 simplest form, I have a Windows 7 PC and a stock unrooted Nexus 4.  I have
 been developing via this environment for at least six months.  I'm using
 the ADT bundle.  I've on R 22.2.1 SDK tools.  My ADB is 1.0.31.  Basically,
 from what I can tell, I've got the latest everything, except not the latest
 Android Studio stuff.  I'm primarily work with my Nexus 4, but every once
 and a while, I try it out on a Nexus One and a Nexus 7.

 This environment has been working well form me for at least the last six
 months.  On Thursday 10/10/13, I installed all this months Microsoft patch
 Tuesday updates.  My system was working fine on Wednesday, I installed the
 updates on Thursday. On Friday, I got back to work and was not able to
 connect adb to my Nexus 4.

 Obviously I have looked online for a solution.  The thing that is actually
 surprising me here is that I fully expected other people to have this same
 problem.  But I haven't seen a single sign that anyone else is encountering
 this problem.  There are tons and tons and tons of people having problems
 with adb over the years, but that's all old stuff with old well known
 solutions.

 I've tried so many combinations of things.  Reboots.  Different USB
 cables.  Different USB ports.  Different PC drivers.  I've fully
 uninstalled the Google USB drivers and reinstalled them.

 When I attempt to turn debugging on in my N4, I first turn developer
 options on, then I enable USB debugging.  I hear the PC beep indicating
 that it needs to do some driver stuff.  From what I can tell, that is all
 working.  When I run the old 'adb devices', I get the serial number of the
 N4 followed by unauthorized.  On the device, the authorize dialog never
 appears. I used to have this PC set as remembered by the device. I've tried
 the Revoke USB debugging authorizations many times.

 I have tried every combination of enabling developer options, MTP vs PTP
 modes, and setting these before and after the device is physically
 connected to the computer.

 Here are a few key this works and that doesn't work facts.  My primary PC
 is Windows 7.  ADB will work with my Nexus One.  It will not work with my
 Nexus 4 and Nexus 7 (both are running stock unrooted 4.3).  This makes me
 think the problem is in the authorization part of things vs a basic
 connectivity thing.

 I have access to a Vista machine.  I applied all the Microsoft patches for
 this month to that Vista machine, and it does not have this problem.  Vista
 fine, Windows 7 not fine.

 fastboot is able to communicate with the N4.

 I was going to roll back the Microsoft updates, but I do not have a system
 restore point old enough available.

 I'm open to trying anything I've already tried over again, but I really
 think this is a new problem.  Although, since I'm the only one who seems to
 have this, who knows.

 I am completely making this up.  It's like adb doesn't know who the PC is
 anymore, but doesn't know it doesn't know, so when it sends the 'do you
 authorize me' command to the N4, it's sending an invalid fingerprint, and
 the N4 silently ignores it.

 Anyway, thank you for any help.  Lee

  --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Activity partially offscreen

2013-10-10 Thread Siva Kumar
U can use dialog activity or fragments,etc
On Oct 11, 2013 6:22 AM, bob b...@coolfone.net wrote:

 Is there a way to push an activity to the right or left so that half of it
 is off the screen?

 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, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] android httpURL connection problem

2013-09-28 Thread Siva Kumar
1st u check there is network in it device.then type url in the device's web
browser  check it
On Sep 28, 2013 7:58 PM, 12169 ashish.a...@gmail.com wrote:

 Hi,

  i use below code to make http connection.

  URL url = new URL(filePath);
  HttpURLConnection con = (HttpURLConnection) url.openConnection();
  con.setReadTimeout(10*1000);
  con.setConnectTimeout(10*1000);

 but when i use setReadTimeout and connectTimeout values then
 java.net.SocketTimeoutException: Transport endpoint is not connected



 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] android can we get current time ?

2013-09-05 Thread Siva Kumar
U create a broadcast receiver.registered in manifest file for time,date
change intent. In that rereceiver's on receive method u must set the
network time
On Sep 5, 2013 2:28 PM, ashish ashish.a...@gmail.com wrote:

 Hi,

 i want to perform some time based operation in android device?
 but user can change the device time manually as the result current time
 varies..is there any way so that i can track the current time?

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [android-developers] Data from Tablet to PC

2013-09-02 Thread Siva Kumar
U can try via USB tethering.running a app in pc which send data via socket
On Sep 2, 2013 10:34 PM, Jim McGivney mcgivney@gmail.com wrote:

 I want to use an Android Tablet to gather data and input that data to a
 program running on a PC.  The data on the PC is a MDB database.**

 I have an app with an SQLite database on the tablet.

 I am looking for a method to get the data out of the tablet and into the
 PC.  

 At times the tablet will be connected to the PC (wired) at other times
 email may be the best way to get the data to the PC.

 Any suggestions on how to best accomplish this task is appreciated.

 Thanks,

 Jim

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Android doubt

2013-08-23 Thread Siva Kumar
Dear All,

  Please visit the link  share your ideas
http://stackoverflow.com/q/18401266/385138

-- 
*Thanks  Regards,
SIVAKUMAR.J http://stackoverflow.com/users/385138/sivakumar-j
*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers] Fwd: Android doubt

2013-08-23 Thread Siva Kumar
Dear All,


Im developing android application.The following are the settings details
android:minSdkVersion=8  android:targetSdkVersion=17
In my application im implement the auto logout after some specific time.
For eg:Assume auto logout time as 2minutes.IF the application in from or
background ,If it is idle then after 2 minutes it will successfully logout
But the problem is if any call is comes means in the middle of my
application (my application's any screen or any activity is running or is
in front).At that time if i attend or cut the call means then auto logout
works fine.
But if i not do anything (not attend the call nor cut the call) after some
time call automatically cuts but here my auto logout not works fine.
All are welcome to give their ideas



-- 
*Thanks  Regards,
SIVAKUMAR.J http://stackoverflow.com/users/385138/sivakumar-j
*



-- 
*Thanks  Regards,
SIVAKUMAR.J http://stackoverflow.com/users/385138/sivakumar-j
*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[android-developers]

2013-04-10 Thread Siva Kumar
Dear All,

  How to run J2ME Jad/Jar in android device.
  All are welcome to give their ideas

-- 
*Thanks  Regards,
SIVAKUMAR.J http://stackoverflow.com/users/385138/sivakumar-j
*

-- 
-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] help needed

2013-03-16 Thread Siva Kumar
Better u refer developer.android.com/google/play-sevices/maps.html
On Mar 16, 2013 11:11 AM, ramesh babu rameshbabu...@gmail.com wrote:

 for developing google map application why do we required sha1 key??...

 --
 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Sim cannot be detected

2013-02-10 Thread Siva Kumar
Dear Arun,

  u try with other sim.If it is detected means your phone is correct and
your sim is problem.If that sim also not detected means then your headset
is problem

On Mon, Feb 11, 2013 at 10:38 AM, arunkuma...@npcompete.net wrote:

 Hi,

 I have a sony Xperia miro.if i put the sim in that mobile it could not
 able to detect the simwhat is the problem can any one 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 unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
*Thanks  Regards,
SIVAKUMAR.J http://stackoverflow.com/users/385138/sivakumar-j
*

-- 
-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] how to block the special character and smaller case characters in android EditText?

2013-01-21 Thread Siva Kumar
Dear All,


Im developing a android application.Im using *android 2.3.3* for
development.
Here 1 screen im showing *text box (EditText)* and get the input from user
The requirement is the *restrict the user to type only capital letters
(only alphabets,numbers) and no special character allowed*
For that if im using *InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS* then it
allows only captial characters (only displays keyboard as capital letters)
but it also allows *special characters , * etc*
But i need ,that no special characters and the keyboard *shows only the
upper case letters*
The above is possible in android or not?

-- 
*Thanks  Regards,
SIVAKUMAR.J http://stackoverflow.com/users/385138/sivakumar-j
*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] suggest me good mobile tracker application from play store.Which is used to track the mobile location when lost,or change the sim,etc

2013-01-15 Thread Siva Kumar
Dear All,

  suggest me good mobile tracker application from play store.Which is used
to track the mobile location when lost,or change the sim,etc
  Which is free.

  That application is used to find the device when it is lost or sim is
changed,etc.

-- 
*Thanks  Regards,
SIVAKUMAR.J http://stackoverflow.com/users/385138/sivakumar-j
*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] What happens when we give the value 0 for the arguement of intervalMillis is given below method of android

2012-11-21 Thread Siva Kumar
Dear All,

*What happens when we give the value 0 for the arguement of
intervalMillis is given below method of android*

AlarmManager.setRepeating (int type, long triggerAtMillis, long
intervalMillis, PendingIntent operation)

Whether it will repeat the alarm for the 0 milliseconds are perform
otherwise.
Im testing android 2.3.3
All are welcome to give their ideas

-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] I had android doubt.Please help me to solve it.

2012-10-14 Thread Siva Kumar
Dear All,,

  I had android doubt.Please help me to solve it.

http://stackoverflow.com/q/12889583/385138

-- 
*Thanks  Regards,
Sivakumar.J*




-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Fwd: I had android doubt please go to link and give your suggestions.

2012-09-11 Thread Siva Kumar
-- Forwarded message --
From: Siva Kumar j.sivakumar...@gmail.com
Date: Tue, Sep 11, 2012 at 5:23 PM
Subject: I had android doubt please go to link and give your suggestions.
To: SIVA FAMILY MEMBERS siva_familymemb...@googlegroups.com, KARNATAKA
SANGHA SCHOOL FRIENDS karnataka-sangha-school-frie...@googlegroups.com,
SRM FRIENDS srm_frie...@googlegroups.com, sairam friends 
sairam_frie...@googlegroups.com, SURESH KUMAR-TRACE TECHNOLOGY FRIEND 
sureshmeno...@gmail.com, saravanan mohan - trace technology friend 
sara5...@gmail.com, RAMKUMAR RTBI nramkuma...@gmail.com, THAMARAI KANNI
- RTBI FRIEND thamaraikan...@gmail.com, ayan - rtbi friend 
ayyandur...@gmail.com, ANNAI - RTBI FRIEND vijianna...@gmail.com,
SARAVANA RTBI FRIEND saravanan@gmail.com, ANISHA - RTBI FIEND 
stephenmeg...@gmail.com, SARAVANAN RTBI saravanan.palanis...@rtbi.in,
VIJI - INVICTUS FRIEND vij...@invictustech.net


Dear All,

I had android doubt please go2 link and give ur ideas

http://stackoverflow.com/q/12369062/385138

-- 
*Thanks  Regards,
Sivakumar.J*




-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] I had android doubt.Please go to the link and give ur ideas.

2012-08-22 Thread Siva Kumar
Dear All,

  I had *android* doubt.Please go to the link and give ur ideas.

http://android.stackexchange.com/q/28096/12015



-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] i lost my mobile. IS ANY WAT TO FIND THE LOCATION OF SAMSUNG GALAXY Y MOBILE WITH THE IMEI NUMBER.MY MOBILE IMEI NUMBER IS 352384051456475

2012-08-13 Thread Siva Kumar
Dear All,

I LOST MY MOBILE TODAY @ 9.30 WHILE TRAVELLING IN BUS.I BLOCKED MY SIM
THROUGH VODAFONE.I ALSO RISED A POLICE COMPLAINT.iS THERE IS ANY WAT TO
FIND THE LOCATION OF SAMSUNG GALAXY Y MOBILE WITH THE IMEI NUMBER.MY MOBILE
IMEI NUMBER IS 352384051456475

-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] I had android doubt please go to link and give your suggestions.

2012-08-06 Thread Siva Kumar
Dear Alll,

  I had android doubt please go to link and give your suggestions.

http://stackoverflow.com/q/11839469/385138


-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Please go to the link (Android questions) and give ur suggestions

2012-08-01 Thread Siva Kumar
Dear All,

Please access the link (android question) and give ur ideas

http://stackoverflow.com/q/11753551/385138

-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Please go to the link (Android questions) and give ur suggestions

2012-08-01 Thread Siva Kumar
Thanks for your kind informations

On Wed, Aug 1, 2012 at 12:51 PM, Seshu s.seshu...@gmail.com wrote:

 Hi Siva,
  Did u connected any device or virtual device. if means then only
 log file will create otherwise it will show
 -waiting for the device...

 Thanks  Regards,
 S.Seshu

 On Aug 1, 11:22 am, Siva Kumar j.sivakumar...@gmail.com wrote:
  Dear All,
 
  Please access the link (android question) and give ur ideas
 
  http://stackoverflow.com/q/11753551/385138
 
  --
  *Thanks  Regards,
  Sivakumar.J*

 --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Please go 2 link and give ur ideas about java.

2012-07-30 Thread Siva Kumar
Dear All,

  Please go 2 link and give ur ideas about java.

http://stackoverflow.com/q/9546188

-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Please visit the below link and give ur ideas for my android technica doubts

2012-07-25 Thread Siva Kumar
Dear All,

  Please visit the below link and give ur ideas for my android technica
doubts.

http://stackoverflow.com/q/11644419/385138

-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: Please visit the below link and give ur ideas for my android technica doubts

2012-07-25 Thread Siva Kumar
Dear All,

  Please visit the below link and give ur ideas for my android technical
doubts

http://stackoverflow.com/q/11506160


-- 
*Thanks  Regards,
Sivakumar.J*

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] please help me there is problem in android application developement?

2012-07-10 Thread Siva Kumar
Dear All,

Please go to the link then please give your ideas for my help

http://stackoverflow.com/q/11414378/385138

Thanks  Regards,
Sivakumar.J

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] GPRS connection problem in Android 2.3

2012-06-29 Thread Siva kumar
Hi all,

I got s3c6410 Arm development Board. It has been ported with Android 2.3.

This board has SIM300 GSM modem.When i tried to connect to internet through 
GPRS i found APN was missing.  
By searching through internet i added APN settings manually.

I got the symbol G with arrows up down in the notification area.

But when i opened the browser i am not able to browse the websites.

I checked the netcfg in the adb shell

*# netcfg*
*lo   UP127.0.0.1   255.0.0.0   0x0049*
*eth0 DOWN  0.0.0.0 0.0.0.0 0x1002*

I found i am not getting the ip in it.

I was able to make and receive calls through GSM modem.

The GPRS connects in the same board when i am using embedded linux with AT 
commands.

When i see the logcat -b radio

*D/GSM ( 2143): [GsmDataConnection-1] Connecting to carrier: 'gprs' 
APN: 'www' proxy: '' port: '*
*D/RILJ( 2143): [0077] SETUP_DATA_CALL 1 0 www   3*
*D/RILJ( 2143): [0077] SETUP_DATA_CALL {1, gprs}*
*D/GSM ( 2143): [GsmDataConnection-1] DcActivatingState 
msg.what=EVENT_SETUP_DATA_CONNECTION_DONE*
*D/GSM ( 2143): [GsmDataConnection-1] DataConnection setup 
result='SUCCESS' on cid=1*
*D/GSM ( 2143): [GsmDataConnection-1] DcInactiveState: 
setEnterNoticationParams cp,cause*
*D/GSM ( 2143): [GsmDataConnection-1] DcActiveState: enter 
notifyConnectCompleted*
*D/GSM ( 2143): [GsmDataConnection-1] notifyConnection at 1340992990513 
cause=No Error*
*D/GSM ( 2143): [DataConnection] Start poll NetStat*
*D/RILJ( 2143): [0078] SIGNAL_STRENGTH*
*D/RILJ( 2143): [0078] SIGNAL_STRENGTH {17, 0, 0, 0, 0, 0, 0}*
*
*
The complete logfile is in http://pastebin.com/pn7DS4CJ

I need guidance in debugging this issue.

Regards
sivakumar




-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: GPRS connection problem in Android 2.3

2012-06-29 Thread Siva kumar Balasubramanian
Username and Password is not required.
Same APN settings works with other Android Tablet


On Fri, Jun 29, 2012 at 6:54 PM, lbendlin l...@bendlin.us wrote:

 does your APN require a username and password?


 On Friday, June 29, 2012 8:35:38 AM UTC-4, Siva kumar wrote:

 Hi all,

 I got s3c6410 Arm development Board. It has been ported with Android 2.3.

 This board has SIM300 GSM modem.When i tried to connect to internet
 through GPRS i found APN was missing.
 By searching through internet i added APN settings manually.

 I got the symbol G with arrows up down in the notification area.

 But when i opened the browser i am not able to browse the websites.

 I checked the netcfg in the adb shell

 *# netcfg*
 *lo   UP127.0.0.1   255.0.0.0   0x0049*
 *eth0 DOWN  0.0.0.0 0.0.0.0 0x1002*

 I found i am not getting the ip in it.

 I was able to make and receive calls through GSM modem.

 The GPRS connects in the same board when i am using embedded linux with
 AT commands.

 When i see the logcat -b radio

 *D/GSM ( 2143): [GsmDataConnection-1] Connecting to carrier: 'gprs'
 APN: 'www' proxy: '' port: '*
 *D/RILJ( 2143): [0077] SETUP_DATA_CALL 1 0 www   3*
 *D/RILJ( 2143): [0077] SETUP_DATA_CALL {1, gprs}*
 *D/GSM ( 2143): [GsmDataConnection-1] DcActivatingState
 msg.what=EVENT_SETUP_DATA_CONNECTION_DONE*
 *D/GSM ( 2143): [GsmDataConnection-1] DataConnection setup
 result='SUCCESS' on cid=1*
 *D/GSM ( 2143): [GsmDataConnection-1] DcInactiveState:
 setEnterNoticationParams cp,cause*
 *D/GSM ( 2143): [GsmDataConnection-1] DcActiveState: enter
 notifyConnectCompleted*
 *D/GSM ( 2143): [GsmDataConnection-1] notifyConnection at
 1340992990513 cause=No Error*
 *D/GSM ( 2143): [DataConnection] Start poll NetStat*
 *D/RILJ( 2143): [0078] SIGNAL_STRENGTH*
 *D/RILJ( 2143): [0078] SIGNAL_STRENGTH {17, 0, 0, 0, 0, 0, 0}*
 *
 *
 The complete logfile is in 
 http://pastebin.com/**pn7DS4CJhttp://pastebin.com/pn7DS4CJ

 I need guidance in debugging this issue.

 Regards
 sivakumar




  --
 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+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 

sivakumar

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] How to hide applications in android

2011-08-24 Thread Siva kumar
Hi all,

How to hide all applications in android

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Where will be the apk files will be present

2011-08-11 Thread Siva kumar
Hi all,

I install Helloworld.apk using abd install command. In which directory
this apk file will be installed. I was not able to find in systam/app.

Thanks
sivakumar

-- 
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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en