Re: [android-developers] Re: GPS Location

2011-10-24 Thread hk what
what is your app?

On 10/22/11, John Coryat cor...@gmail.com wrote:
 GPS doesn't require an internet connection but it does require receiving a
 very weak signal from a number of GPS satellites. That usually means a view
 of the sky.

 -John Coryat

 --
 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 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] Android Emulator internet connectivity Problem

2011-10-24 Thread hk what
It should work be automtic

On 10/21/11, manish sandhan sandhan.man...@gmail.com wrote:
 I m new in android...
 I m not able to connect my android emulator to internet neither from my app
 nor from the android browser.
 I have tried adding  uses-permission
 android:name=android.permission.INTERNET / in xml..but still in did not
 help..
 I have added hardware like GPS and Modem from the android sdk manager...
 Still it did not work pls help...



 pls help...
 --

 Thanks  Regards
 Manish Sandhan
 Cell No.--+91-9421572024

 --
 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 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] Eclipse, ADT and opening XML files

2011-10-24 Thread hk what
OS u runnin
What
On 10/19/11, Kostya Vasilyev kmans...@gmail.com wrote:
 With the two recent releases of ADT (it seems), my XML files by default
 don't open with the appropriate Android editor. The editor they open
 with is not the plain text editor, but rather some kind structured
 editor with XML tag highlighting, and a Design tab that lists the XML
 file structure.

 Earlier, Android layout XML files would open with the ADT layout editor,
 and other Android-specific XML files would open with Android specific
 editors as well. It seems like this broke with ADT 13, or maybe after I
 switched to Eclipse 3.7, I'm not sure.

 I tried using Eclipse preferences to associate *.xml files with the
 Android Layout editor, but that affects values/*.xml, menu/*.xml, etc.,
 with very interesting effects.

 It is possible to right click on a file and select Open With, but I also
 like to use Ctrl+Shift+R to navigate among my XMLs more quickly.

 Is anyone else seeing this? Is there a fix?

 Oh, and I just reinstalled Eclipse 3.7.1 Classic from scratch, as well
 as ADT r14. Made no difference. I'm on Windows 7 / 64 bit, which has not
 changed either.

 --
 Kostya Vasilyev

 --
 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 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: Accessing contact' email addresses

2009-03-19 Thread what

I think you can try ContactMethods.DATA,this field contains the email
address.
Good luck!

On Mar 18, 2:10 pm, Umair knowledgeinter...@gmail.com wrote:
 Posted: Tue Mar 17, 2009 11:47 am    Post subject: Accessing contact'
 email addresses
 Hi!

 I'm developing an application in which I need to display user a list
 of contacts and their email addresses so that user can choose one of
 them.
 I've got some help from Internet and I'm able to display a list of
 contacts and their number by the following code:

 ---
 JAVA CODE
 ---

 public class ShowContacts extends ExpandableListActivity implements
 OnChildClickListener {
     private int mGroupIdColumnIndex;

     private String mPhoneNumberProjection[] = new String[] {
             People.Phones._ID, People.NUMBER // CHANGE HERE
     };

     private ExpandableListAdapter mAdapter;

     @Override
     public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);

         // Query for people
         Cursor groupCursor = managedQuery(People.CONTENT_URI,
                 new String[] {People._ID, People.NAME}, null, null,
 null);

         // Cache the ID column index
         mGroupIdColumnIndex = groupCursor.getColumnIndexOrThrow
 (People._ID);

         // Set up our adapter
         mAdapter = new MyExpandableListAdapter(groupCursor,
                 this,
                 android.R.layout.simple_expandable_list_item_1,
                 android.R.layout.simple_expandable_list_item_1,
                 new String[] {People.NAME}, // Name for group layouts
                 new int[] {android.R.id.text1},
                 new String[] {People.NUMBER}, // AND CHANGE HERE
                 new int[] {android.R.id.text1});
         setListAdapter(mAdapter);
     }

     public class MyExpandableListAdapter extends
 SimpleCursorTreeAdapter {

         public MyExpandableListAdapter(Cursor cursor, Context context,
 int groupLayout,
                 int childLayout, String[] groupFrom, int[] groupTo,
 String[] childrenFrom,
                 int[] childrenTo) {
             super(context, cursor, groupLayout, groupFrom, groupTo,
 childLayout, childrenFrom,
                     childrenTo);
         }

         @Override
         protected Cursor getChildrenCursor(Cursor groupCursor) {
             // Given the group, we return a cursor for all the
 children within that group

             // Return a cursor that points to this contact's phone
 numbers
             Uri.Builder builder = People.CONTENT_URI.buildUpon();
             ContentUris.appendId(builder, groupCursor.getLong
 (mGroupIdColumnIndex));
             builder.appendEncodedPath
 (People.Phones.CONTENT_DIRECTORY);
             Uri phoneNumbersUri = builder.build();

             return managedQuery(phoneNumbersUri,
 mPhoneNumberProjection, null, null, null);
         }
     }

     @Override
      public boolean onChildClick(android.widget.ExpandableListView
 parent,
                View v, int groupPosition, int childPosition, long id)
 {
           AlertDialog dialog = new AlertDialog.Builder
 (ShowContacts.this)
                     .setMessage(((TextView) v).getText().toString())
                     .setPositiveButton(OK, null).create();
           dialog.show();
           return true;
      }

 }

 ---

 What I need now is how to replace numbers by email addresses. What I
 need to change is People.NUMBER at a couple of places but I'm not able
 to find any replacement. There is a field called
 People.PRIMARY_EMAIL_ID but that returns the ID of the email rather
 than the actuall email.

 Kindly guide me what am I missing.

 Big thanks in advance!!!

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