[android-developers] Re: Date issue

2011-10-20 Thread drpickett
http://developer.android.com/reference/android/text/format/Time.html



On Oct 20, 4:01 am, sourabh sahu souruit...@gmail.com wrote:
 I have a editText view on a click of it there is a date picker.When I
 extract the date in a string format and then convert it into date datatype.I
 am getting it in milliseconds.I want the exact date.

 I have used SimpleDateFormat with -MM-DD and Locale.US and parse
 function.Please suggest some solution to it.

 Thanks,
 sourabh

-- 
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: Android is worst os mobile is this true

2011-09-22 Thread drpickett


Android causes cancer and pre-mature hair loss - Film at 11

-- 
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: HttpResponse problem

2011-09-20 Thread drpickett
I usually hate it when people just reply with a snarky dope-slap
response, but in this case it is merited somewhat.  The compiler error
would be helpful in diagnosing the problem.

dp

On Sep 19, 1:58 am, swer ademk...@gmail.com wrote:
 hello friends..

 It has been almost a day and I have still working on this little code.
 All I need to do is to get the response stream from the server.

 However compiler gives an error just the beginning of the code..
 I will be appreciated if you give me a hand  on this...

 The code is below.
 Note :  I also set the INTERNET permission in the manifest file.
 Thanks in advance..

 swer

 //
 *** 
 ***

 public class AsyncTestActivity extends Activity implements
 OnClickListener {
             /** Called when the activity is first created. */
                 Button btnThread;
                 EditText txtEdit;
                 public String threadName = ;

             @Override
             public void onCreate(Bundle savedInstanceState) {
                 super.onCreate(savedInstanceState);
                 setContentView(R.layout.main);

                 btnThread  = (Button)findViewById(R.id.btnThread);
                 btnThread.setOnClickListener(this);

                 txtEdit = (EditText)findViewById(R.id.txtEdit);
             }

                 @Override
                 public void onClick(View v) {
                         // TODO Auto-generated method stub
                         grabURL(http://www.google.com/;);
                 }

             public void grabURL(String url) {
                 new GrabURL().execute(url);
             }

  private class GrabURL extends AsyncTaskString, Void, Void {
                 private HttpClient Client =null;
                 private String strContent;
                 private String strError = null;
                 private ProgressDialog Dialog = new
 ProgressDialog(AsyncTestActivity.this);

                 protected void onPreExecute() {
                     Dialog.setMessage(Downloading source..);
                     Dialog.show();
                 }

                 protected Void doInBackground(String... urls) {
                     try {
                           // Create client and set our specific user-agent
 string
                           HttpGet request = new HttpGet(urls[0]);
                           request.setHeader(User-Agent, Android);
                           Client = new DefaultHttpClient(httpParameters);

                           HttpResponse response =
 Client.execute(request);                    //  COMPILER GIVES
 AN ERROR AT THIS POINT  ang goes to onPostExecute(void);

                         //   ResponseHandlerString responseHandler  = new
 BasicResponseHandler();
                         //   strContent = Client.execute(request,
 responseHandler);

                             // Check if server response is valid
                           StatusLine status = response.getStatusLine();
                           if (status.getStatusCode() != 200) {
                               throw new IOException(Invalid response from
 server:  + status.toString());
                           }

                           // Pull content stream from response
                           HttpEntity entity = response.getEntity();
                           InputStream inputStream = entity.getContent();

                           ByteArrayOutputStream content = new
 ByteArrayOutputStream();

                           // Read response into a buffered stream
                           int readBytes = 0;
                           byte[] sBuffer = new byte[512];
                           while ((readBytes = inputStream.read(sBuffer)) !=
 -1) {
                               content.write(sBuffer, 0, readBytes);
                           }

                           // Return result from buffered stream
                           String dataAsString = new
 String(content.toByteArray());

                           txtEdit.setText(dataAsString);

                       } catch (IOException e) {
                                 strError = e.getLocalizedMessage();
                                 cancel(true);

                     }

                     return null;
                 }

                 protected void onPostExecute(Void unused) {
                     Dialog.dismiss();
                     if (strError != null) {
                         Toast.makeText(AsyncTestActivity.this, strError,
 Toast.LENGTH_LONG).show();
                     } else {
                         Toast.makeText(AsyncTestActivity.this, Source:  +
 strContent, Toast.LENGTH_LONG).show();
                     }
                 }

             }

         }
 //
 *** 
 ***

-- 
You received this 

[android-developers] Re: drawing too much power

2011-09-16 Thread drpickett
You might try using a USB hub that has its own external power supply -
The root port connected to the PC will keep the PC USB port happy, and
the power to charge the tablet will be supplied by the USB hub

On Sep 15, 11:26 pm, bob b...@coolgroups.com wrote:
 I bought a Vizio Tablet.  When I plug it into my PC, the PC says it's
 disabling the USB connection because it was drawing too much power.
 Any ideas how to get by 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


[android-developers] Re: Does the Nexus S phone and Reader support pear to pear ?

2011-08-17 Thread drpickett
String beat me to it :)

On Aug 17, 7:49 am, String sterling.ud...@googlemail.com wrote:
 And certainly not apples 2 apples...

-- 
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: GPS accuracy reliability

2010-07-12 Thread drpickett
 Maybe I
 can be choosy and say that if it GPS then I demand 20 meter accuracy
 but if it is network then I only demand 500 meter???

Chuck Norris can demand a certain accuracy from GPS - You can't -
GPS reports its accuracy to you - It is a function of the number of
satellites in view, and other stuff

dp

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