[android-developers] Re: Can not change Switch text on/off at runtime

2013-11-06 Thread Miha
I solved this with a rahter ugly hack for lack of better idea:

In a derived class (which extends Switch), I overrode the following method:

@Override
public void requestLayout() {
IslLog.i(TAG, requestLayout);
try {
java.lang.reflect.Field mOnLayout = 
Switch.class.getDeclaredField(mOnLayout);
mOnLayout.setAccessible(true);
mOnLayout.set(this, null);
java.lang.reflect.Field mOffLayout = 
Switch.class.getDeclaredField(mOffLayout);
mOffLayout.setAccessible(true);
mOffLayout.set(this, null);
} catch (Exception x) {
Log.e(TAG, x.getMessage(), x);
}
super.requestLayout();
}

This now works. After I use `setTextOn` or `setTextOff`, I just call 
`requestLayout`, which uses reflection to set `mOnLayout` and `mOffLayout` 
to null; `requestLayout` in turn triggers `onMeasure`, which re-initializes 
those variables. It is ugly, but it works and is, IMHO better than copying 
the complete source of Switch to application.

-- Miha

On Monday, November 4, 2013 3:50:37 PM UTC+1, Miha wrote:

 Hi!

 I have an issue where I can't change Switch textOn/Off at runtime. This 
 means, that the following code, bound to a simple Button (for reproduction 
 purposes) does not work:


  @Override

  public void onClick(View arg0) {

   _sw.setTextOn(On  + _counter);

   _sw.setTextOff(Off  + _counter);

   _sw.setText(Text + _counter);

   _sw.setVisibility(_sw.getVisibility() == View.GONE ? View.VISIBLE : 
 View.GONE);

   _counter  ++;

   _sw.invalidate();

   _sw.setFocusable(true);

 }


 This code changes the text associated with Switch, but not On or Off 
 labels on the button. Interestingly enough, if I call getTextOn or 
 getTextOff, I get back the correct value, that was set on this Switch. Any 
 ideas why this does not work as expected?

 Regards,

  Miha.


-- 
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] Re: avoiding screenshot duplication on market: 10 tablet, 7 tablet and phone screenshots all show with phone and laotop access

2013-11-06 Thread Jose_GD
Google Play will show *every* image you upload, so the repetition. Try to 
upload at least one image per format.
And regarding the emulator, have you tried Genymotion?


El martes, 5 de noviembre de 2013 11:39:24 UTC-3, firebreather escribió:

 yes. that way nobody misses an image in case they don't go through all the 
 images for all three formats.
  
 the site shows tablet images first when accessed from the web, even from a 
 phone, and those are hard for me to create as I have to use an emulator, 
 which takes hours sometimes just to get going, much less get  a good 
 screenshot. I have to do a lot of special recoding for those shots as 
 emulator screenshots tend to have odd artifacts otherwise, especially when 
 using SurfaceView. I've since ended up recreating all the phone images on 
 the tablet emulator anyway even though it took forever, as the code runs 
 about 10 times slower on the emulator.

 On Wednesday, October 30, 2013 6:46:36 AM UTC-5, Jose_GD wrote:

 Are you using the same images in all categories?
 For example:

 Smartphones: image1.png / image2.png
 Tablet 7: image1.png / image2.png
 Tablet 10: image1.png / image2.png



 El martes, 29 de octubre de 2013 11:45:37 UTC-3, firebreather escribió:

 I added 10 and 7 screenshots as required to tablet optimization, but 
 now I have duplicate screen shots that all show on the market. the 
 market first shows the two 10 tablet shots, then the two  7 tablet shots, 
 then all the phone shots. 
  
 my tablet screenshots are the same as the first 2 phone shots and the 7 
 and 10 tablet shots are the same. since the screenshot window on the 
 market goes through all the shots there is a lot of duplication.
  
 I notice the other apps that optimized for tablets don't have this 
 issue. their tablet screenshots don't appear at all for me, i'm assuming 
 because i'm not accessing from a tablet.
  
 how can I keep my tablet screenshots from showing for those accessing 
 from phone or laptop, thus avoiding duplication.



-- 
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] Mobile Data Network // APN selection (access-point name)

2013-11-06 Thread viande_de_chat
Hi, 
If several APN are defined in the mobile configuration. Is it possible to 
define in the application which APN to use? 
I would like to setup with my phone a second PDP context like explained in 
3GPP standards --Secondary PDP Context Activation: 3GPP TS 23.060, Chapter 
9.2.2.1.1 (Rel 6)
Thanks
Viande

-- 
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] parsing responce of a web url

2013-11-06 Thread shiva pendem
Hi,

i am new using web serviced in the application,

i have a problem while using the web services in the application

i have a URL let us say www.abc.com/2013/11/06

and if i run this URL i get only string as response as *you have done a 
special work,[50%],[80%] *  in the browser.

so i want to get the same response in the application
 
it is not replying as XML to use XML reader of my own XML handler,

please help me how to get the text from the URL.

Thanks 
Shiva Shankar.

-- 
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] parsing responce of a web url

2013-11-06 Thread Mukesh Srivastav
You could use any stringtokenizer or just any string parsing and it should
be any challenge to do that.

let us know if you any specific tag or any specific string to parse


On Wed, Nov 6, 2013 at 8:43 PM, shiva pendem pendem.shiv...@gmail.comwrote:

 Hi,

 i am new using web serviced in the application,

 i have a problem while using the web services in the application

 i have a URL let us say www.abc.com/2013/11/06

 and if i run this URL i get only string as response as *you have done a
 special work,[50%],[80%] *  in the browser.

 so i want to get the same response in the application

 it is not replying as XML to use XML reader of my own XML handler,

 please help me how to get the text from the URL.

 Thanks
 Shiva Shankar.

 --
 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.




-- 
Warm Regards,
*Mukesh Kumar*,
Android Consultant/Freelancer,
India,Hyderabad.

-- 
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] Re: Drawing rapidly into Bitmap from non-UI thread results in Cannot generate texture from bitmap

2013-11-06 Thread Doug
Generally speaking, anything that updates the UI is supposed to be done on 
the main thread.  What you're doing sounds suspiciously apt to have 
problems unless something in Android documentation validates your approach.

If you want to render stuff into a view off the main thread, consider 
instead using SurfaceView and its SurfaceHolder.  It specifically has 
provisions for drawing to its Canvas off the main thread.

Doug

On Tuesday, November 5, 2013 7:09:20 AM UTC-8, Michael Zoech wrote:

 Hi,

 In my current application that I'm developing I draw into an 
 android.graphics.Bitmap object from a non-UI thread. This is done from 
 native code via the AndroidBitmap_lockPixels and AndroidBitmap_unlockPixels 
 calls. Every time the drawing has finished, the UI thread gets notified 
 that the Bitmap has changed and the responsible View in the Activity is 
 invalidated and redrawn. All code that accesses the Bitmap is synchronized 
 on the Bitmap.

 The issue that I'm seeing is that if the rendering is too fast, after some 
 time the View is no longer updated and in the log the following is logged:

 E/OpenGLRenderer ... Cannot generate texture from bitmap

 None of the drawing calls produce any errors that anything is wrong.

 Searching on the internet reveals a few others who had similar issues, but 
 no real solutions or answers for that specific problem. Is it even allowed 
 to draw into the Bitmap from a non-UI thread? Is there a different way to 
 do something similar? I tried using just an IntBuffer and drawing the 
 IntBuffer in the view. While this works, it is also 2x slower than using a 
 Bitmap.

 Thanks,
 Michael



-- 
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] Google Tasks API : How to indent a Task?

2013-11-06 Thread TreKing
You'll probably have better luck in a group or forum dedicated to the
Google Task API.


On Tue, Nov 5, 2013 at 8:58 PM, Mike mike.copp...@gmail.com wrote:

 I'm trying to create a Task in a TaskList that is *indented*:

 Task task = new Task();
  task.setParent( prevId);

 'prevId' is the id of the task added right before this one above. Its
 creates the task but it is not indented.


 I see in the documentation that 'parent'  'previous' are optional
 parameters , but I'm not sure how to use these to create indentation and
 there are no examples of this.

  --
 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.




-- 

-
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.


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

2013-11-06 Thread shiva pendem
Hi mukesh.
My applicatoin is parsing the string but i am unable to get the text shown
in the web browser.
When ever i hit the url in any browser it shows a string as output. So i
need a help in getting the string. Parsing was fine with my application

Thanks,
pendem shiva shankar
msn:shivapen...@live.com
gtalk:pendem.shiva89
On Nov 6, 2013 10:45 PM, Mukesh Srivastav mukicha...@gmail.com wrote:

 You could use any stringtokenizer or just any string parsing and it should
 be any challenge to do that.

 let us know if you any specific tag or any specific string to parse


 On Wed, Nov 6, 2013 at 8:43 PM, shiva pendem pendem.shiv...@gmail.comwrote:

 Hi,

 i am new using web serviced in the application,

 i have a problem while using the web services in the application

 i have a URL let us say www.abc.com/2013/11/06

 and if i run this URL i get only string as response as *you have done a
 special work,[50%],[80%] *  in the browser.

 so i want to get the same response in the application

 it is not replying as XML to use XML reader of my own XML handler,

 please help me how to get the text from the URL.

 Thanks
 Shiva Shankar.

 --
 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.




 --
 Warm Regards,
 *Mukesh Kumar*,
 Android Consultant/Freelancer,
 India,Hyderabad.

 --
 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 a topic in the
 Google Groups Android Developers group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/android-developers/uok-MLIhx2g/unsubscribe
 .
 To unsubscribe from this group and all its topics, 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] parsing responce of a web url

2013-11-06 Thread Krishna Prasad
did u encode ur url while sending request?


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

 Hi mukesh.
 My applicatoin is parsing the string but i am unable to get the text shown
 in the web browser.
 When ever i hit the url in any browser it shows a string as output. So i
 need a help in getting the string. Parsing was fine with my application

 Thanks,
 pendem shiva shankar
 msn:shivapen...@live.com
 gtalk:pendem.shiva89
 On Nov 6, 2013 10:45 PM, Mukesh Srivastav mukicha...@gmail.com wrote:

 You could use any stringtokenizer or just any string parsing and it
 should be any challenge to do that.

 let us know if you any specific tag or any specific string to parse


 On Wed, Nov 6, 2013 at 8:43 PM, shiva pendem pendem.shiv...@gmail.comwrote:

 Hi,

 i am new using web serviced in the application,

 i have a problem while using the web services in the application

 i have a URL let us say www.abc.com/2013/11/06

 and if i run this URL i get only string as response as *you have done
 a special work,[50%],[80%] *  in the browser.

 so i want to get the same response in the application

 it is not replying as XML to use XML reader of my own XML handler,

 please help me how to get the text from the URL.

 Thanks
 Shiva Shankar.

 --
 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.




 --
 Warm Regards,
 *Mukesh Kumar*,
 Android Consultant/Freelancer,
 India,Hyderabad.

 --
 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 a topic in the
 Google Groups Android Developers group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/android-developers/uok-MLIhx2g/unsubscribe
 .
 To unsubscribe from this group and all its topics, 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.




-- 
Regards/-
Krishnaprasad R S

https://www.linkedin.com/in/krishnaprasadrs
Skype ID:kaypey.cis

-- 
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] Re: AndroidPushNotification

2013-11-06 Thread janvi
I have implemented and working fine...

One more query here is Notifications from the server keep on coming three 
times for every 10 seconds

Can any body tell me what is going wrong here???
I have used wakeFull BroadCast receiver

Plz its urgent



On Thursday, October 24, 2013 6:40:25 PM UTC+5:30, Piren wrote:

 you need to use the PendingIntent.FLAG_UPDATE_CURRENT flag when you're 
 creating the pending intent.
 Also notice that if your activity is in a singleInstance or singleTop then 
 you need to use the event onNewIntent to get the new one.

 On Thursday, October 24, 2013 3:36:33 PM UTC+3, janvi wrote:

 Hi piren 

 than you :)

 Using the following code Iam able to go to next activity and 
 alertdialogue.



Intent notificationIntent = new Intent(this, 
 NotificationReceiverActivity.class);

  //data received from the push notification is placed in bundle and 
 extracted later
notificationIntent.putExtra(check, hello test);
   
  notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | 
 Intent.FLAG_ACTIVITY_SINGLE_TOP);
 PendingIntent pintent 
 =PendingIntent.getActivity(getApplicationContext(), 0, notificationIntent, 
 0);
 notification.setLatestEventInfo(getApplicationContext(), title, 
 hello test, pintent);
 notification.flags |= Notification.FLAG_AUTO_CANCEL;
 notificationManager.notify(0, notification);

I have put the data retrived from push notification in the 
 intent(putextra) and trying to extract it in the next activity and here iam 
 getting the bundle data as null

Do Iam I missing something

 Plz help Iam stuck here


 On Thursday, October 24, 2013 5:16:42 PM UTC+5:30, Piren wrote:

 push notification can do whatever you want, i assume you've added a 
 notification when the push got in. So add an intent to the notification 
 that launches an activity which will have a dialog (or look like a dialog).

 Regarding count, you can have a count on the notification icon, but not 
 on the launch screen icon.

 On Thursday, October 24, 2013 2:08:16 PM UTC+3, janvi wrote:

 Hello All,

 Iam new to pushNotification I have few doubts here.

 I have implemented push Notification feature.Now if I want to open an 
 alert dialogue when the user clicks on push notification 

 I don't know how to open the alert dialogue here???any ideas

 One more question is as follows

 How to show the pushNotification count on the AppIcon as IOS does(i,e 
 badge count)

 Can we do this 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
--- 
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] Drawing rapidly into Bitmap from non-UI thread results in Cannot generate texture from bitmap

2013-11-06 Thread Andrew Mackenzie
You should be able to write to the Bitmap object from any thread.

It us setting that Bitmap into a View in the ViewHierarchy that is restricted 
to the UIThread.

So your thread will have  to pass the resulting Bitmap back to the UIThread and 
set it into a View there. If you are not using an AsyncTask already then look 
at using Handler to do that.

Sounds like you error is just with the Bitmap call directly. Share that code.

-- 
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] parsing responce of a web url

2013-11-06 Thread shiva pendem
Hello krishna prasad
I am new in using web services in application by searching in net.
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.

Thanks,
pendem shiva shankar
msn:shivapen...@live.com
gtalk:pendem.shiva89
On Nov 7, 2013 8:24 AM, Krishna Prasad krishnaprasadrs.1...@gmail.com
wrote:

 did u encode ur url while sending request?


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

 Hi mukesh.
 My applicatoin is parsing the string but i am unable to get the text
 shown in the web browser.
 When ever i hit the url in any browser it shows a string as output. So i
 need a help in getting the string. Parsing was fine with my application

 Thanks,
 pendem shiva shankar
 msn:shivapen...@live.com
 gtalk:pendem.shiva89
 On Nov 6, 2013 10:45 PM, Mukesh Srivastav mukicha...@gmail.com wrote:

 You could use any stringtokenizer or just any string parsing and it
 should be any challenge to do that.

 let us know if you any specific tag or any specific string to parse


 On Wed, Nov 6, 2013 at 8:43 PM, shiva pendem 
 pendem.shiv...@gmail.comwrote:

 Hi,

 i am new using web serviced in the application,

 i have a problem while using the web services in the application

 i have a URL let us say www.abc.com/2013/11/06

 and if i run this URL i get only string as response as *you have done
 a special work,[50%],[80%] *  in the browser.

 so i want to get the same response in the application

 it is not replying as XML to use XML reader of my own XML handler,

 please help me how to get the text from the URL.

 Thanks
 Shiva Shankar.

 --
 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.




 --
 Warm Regards,
 *Mukesh Kumar*,
 Android Consultant/Freelancer,
 India,Hyderabad.

 --
 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 a topic in the
 Google Groups Android Developers group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/android-developers/uok-MLIhx2g/unsubscribe
 .
 To unsubscribe from this group and all its topics, 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.




 --
 Regards/-
 Krishnaprasad R S

 https://www.linkedin.com/in/krishnaprasadrs
 Skype ID:kaypey.cis

 --
 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 a topic in the
 Google Groups Android Developers group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/android-developers/uok-MLIhx2g/unsubscribe
 .
 To unsubscribe from this group and all its topics, 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