Re: [android-developers] Android Studio Code Problems

2016-03-24 Thread sardar khan
You should get the index of position of the item and then pass it to
arrayList to remove the item use position as index to ArrayList to remove
the item from arrayList.

On Thu, Mar 24, 2016 at 10:47 PM, Mike  wrote:

>
>
> public class Notes extends AppCompatActivity {
>
> Button save;
> ArrayList addArray = new ArrayList();
> EditText txt;
> ListView show;
>
>
> @Override
> protected void onCreate(Bundle savedInstanceState) {
> super.onCreate(savedInstanceState);
> setContentView(R.layout.activity_notes);
>
> txt = (EditText) findViewById(R.id.textInput);
> show = (ListView) findViewById(R.id.listView);
> save = (Button) findViewById(R.id.saveButton);
>
> final ArrayAdapter adapter = new 
> ArrayAdapter(Notes.this, android.R.layout.simple_list_item_1, 
> addArray);
>
> save.setOnClickListener(new View.OnClickListener() {
> @Override
> public void onClick(View v) {
>
> String getInput = txt.getText().toString();
>
> if (addArray.contains(getInput)) {
> Toast.makeText(getBaseContext(), "Note already added!", 
> Toast.LENGTH_LONG).show();
> } else if (getInput == null || getInput.trim().equals("")) {
> Toast.makeText(getBaseContext(), "Input required!", 
> Toast.LENGTH_LONG).show();
> } else {
> addArray.add(getInput);
>
> show.setAdapter(adapter);
> ((EditText) findViewById(R.id.textInput)).setText(" ");
> }
> }
> });
>
>
> show.setOnItemLongClickListener(new 
> AdapterView.OnItemLongClickListener() {
> @Override
> public boolean onItemLongClick(AdapterView av, View v, int 
> pos, long id) {
>
>
>
>
>
>
> return true;
> }
> });
>
> }
>
>
> }
>
>
>
>
> What would  I need to add to get the OnItemLongClickListener to delete
> specific items on the list view?
> Thanks
>
>
> --
> 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.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/838730d0-9d4f-4e80-a5a8-e7bbf729aeb3%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CABHzXATe34F_NrC2Z7tfFQYG%2B%3DCwEbBVqNhuSucHg2SYqLVzAg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Updating the UI from a callback

2016-03-24 Thread 'RLScott' via Android Developers
What is the correct way to update a TextView after a callback in the 
following scenario:

I have an activity that extends ListActivity.   At some point that activity 
creates an AlertDialog to allow the user the option of filtering the list 
for items that contain a certain String (because the unfiltered list might 
be too long to scroll through it conveniently).  My AlertDialog has, in 
addition to an OK and Cancel button, an EditText so the user can enter the 
String to use for filtering, and two radio buttons to select whether we 
should filter for list items that start with the specified String or merely 
contain the specified String.  I have listeners set up for any changes to 
the EditText or RadioButtons so that I can cause the list to be reloaded 
based on the revised filtering criteria.  All this is working fine with no 
problems.  I can see the list changing behind the AlertDialog as I enter 
characters into the EditText.

The problem is this.  I also want to have a TextView that displays "(X 
items found)" after each reloading of the list, so the user can know when 
he has sufficiently narrowed the search so he can quit the AlertDialog and 
then pick from the (reduced) set of items now in the list.  One other 
complication is that the reloading of the list involves a callback on a 
worker thread.  You see, the list is a list of Dropbox files, and the 
asynchronous load is necessary because it might involve an Internet 
access.  The callback is actually from a library provided by Dropbox.  
Therefore the place where the reloading (and item counting) is done is not 
the UI thread, so I can't update a TextView from there.  I am familiar with 
Handlers and posting from threads, but there is a problem with that too.  
The Handler would be owned by the Activity, not by the AlertDialog, which 
could be dismissed before the asynchronous reload occurs.  Will there be a 
problem if a post is made to start a Runnable that updates the TextView 
that was in the AlertDialog if that AlertDialog, and therefore the TextView 
inside it, has been destroyed?

What if I define a strong reference in the Activity to the TextView, and 
the Runnable that is triggered by the asynchronous Dropbox operation just 
calls setText on that reference?  Will that do anything bad if the Runnable 
is invoked after the AlertDialog is dismissed?  What is the clean way of 
doing this?

-Robert Scott
 Hopkins, MN

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/e79ac507-3ba7-4fca-8ab7-456abef374d3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Camcorder app produces video that is out of focus, and upside down

2016-03-24 Thread David Karr


On Thursday, March 24, 2016 at 3:49:52 PM UTC-7, gjs wrote:
>
> Hi,
>
> Re -  I imagine I'm doing something horribly wrong,
>
> Well yes, particularly for this code, calling methods on a null object ??? 
>  -
>
>  if (mCamera == null) {
> mCamera.setPreviewDisplay(holder); ...
>
>
> I'd suggest waiting a little after starting the Camera Preview before 
> initiating a call to autofocus, say 500ms to 1 second, this is to give the 
> camera some time to settle after it has just been opened.
>
>
> I'd also suggest that you do this asynchronously, eg -
>
>
> // Need handler for callbacks to the UI thread
> final Handler mHandler = new Handler();
>
>
> mHandler.postDelayed(new Runnable()
> {
>@Override
>public void run()
>{
>   doAutoFocus(..
>}
>  
> }, 500 );
>
>
> Regards
>
>
Ok, well, the good news is that doing this let it get into the callback 
with success == true.  And I think I saw the preview display sharpen.  
However, the resulting stored video seems to be the same.  It's still 
fuzzy. 

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/7bd14e04-5edf-4d35-9d84-233190daaa0d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Question: Is there a way to inquire the port forwarding done by Android Studio?

2016-03-24 Thread Dato Da
Thanks for the reply, Diego. Alas, I fail to see how this API would help my 
situation. Most of the methods in the class are for an app to get various 
profiling info. The few that has to do with debugger don't have anything to 
do with port forwarding. Am I missing something? Thanks again.

On Thursday, March 24, 2016 at 7:16:37 PM UTC-4, Diego Torres Milano wrote:
>
> Take a look at 
> http://developer.android.com/reference/android/os/Debug.html
>
>
> On Wednesday, 23 March 2016 22:45:34 UTC-4, Dato Da wrote:
>>
>> If Android Studio is running on my development machine, when I launch the 
>> app on a device from the command line using this command:
>>
>> $ adb shell am start -D -n  -a ...
>>
>> Android Studio would immediately forward a port on the local host (8600 
>> and up) to the jdwp port of the app, so that the debugger in Android Studio 
>> could debug the app if necessary.
>>
>> Now, if, say, I would like to use a 3rd party debugger (rather than the 
>> debugger in Android Studio) to debug the app, I will need to connect that 
>> debugger to the port forwarded by Android Studio to that app to get the 
>> debugging to work.
>>
>> *My question: How can I determine what that port is? *
>>
>> Here are a couple of things I've tried (to no avail):
>> 1. $ adb forward --list
>>   Alas, the forwarding done by Android Studio isn't shown.
>> 2. $ adb forward tcp:9010 jdwp:
>>   Connecting the debugger to 9010 failed, probably because the jdwp 
>> port is already locked up by Android Studio's port forwarding.
>> 3. I can turn on DDMS and see the port assigned to the app. But what I 
>> need is an API or text output so that I can get that info programmatically?
>>
>> You insight would be appreciated.
>>
>>
>>
>>

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/f39058de-dcc4-4dcf-8f02-b1c31f80cd06%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Camcorder app produces video that is out of focus, and upside down

2016-03-24 Thread David Karr


On Thursday, March 24, 2016 at 3:49:52 PM UTC-7, gjs wrote:
>
> Hi,
>
> Re -  I imagine I'm doing something horribly wrong,
>
> Well yes, particularly for this code, calling methods on a null object ??? 
>  -
>
>  if (mCamera == null) {
> mCamera.setPreviewDisplay(holder); ...
>
>
*smacking oneself in head*

In reality, it didn't even matter, because it never got to that block with 
mCamera == null.  I copied this from a sample on the internet.  "It must be 
true, right?"
 

>
> I'd suggest waiting a little after starting the Camera Preview before 
> initiating a call to autofocus, say 500ms to 1 second, this is to give the 
> camera some time to settle after it has just been opened.
>
>
> I'd also suggest that you do this asynchronously, eg -
>
>
> // Need handler for callbacks to the UI thread
> final Handler mHandler = new Handler();
>
>
> mHandler.postDelayed(new Runnable()
> {
>@Override
>public void run()
>{
>   doAutoFocus(..
>}
>  
> }, 500 );
>
>
> Regards
>
>
Ok.  I'll give that a try.
 

>
>
> On Thursday, March 24, 2016 at 12:11:11 PM UTC+11, David Karr wrote:
>>
>> On Wednesday, March 23, 2016 at 12:06:47 AM UTC-7, gjs wrote:
>>
>> Hi,
>>
>> For the focus / fuzzy issue try initiating auto focusing of the camera 
>> before you start recording your video -
>>
>>
>> http://developer.android.com/reference/android/hardware/Camera.html#autoFocus(android.hardware.Camera.AutoFocusCallback)
>>
>>
>> Thanks for replying.  I imagine I'm doing something horribly wrong, but 
>> I'm not getting much from this.  I made a change in my "CameraPreview" 
>> class to add this call, in the "surfaceCreated()" method.  It now looks 
>> like this, which will immediately look odd:
>>
>> public void surfaceCreated(SurfaceHolder holder) {
>> try {
>> // create the surface and start camera preview
>> if (mCamera == null) {
>> mCamera.setPreviewDisplay(holder);
>> mCamera.startPreview();
>> mCamera.autoFocus(new Camera.AutoFocusCallback() {
>> @Override
>> public void onAutoFocus(boolean success, Camera camera) {
>> Log.d(VIEW_LOG_TAG, "Completed autofocus setup: 
>> success[" + success + "]");
>> }
>> });
>> }
>> else {
>> mCamera.setPreviewDisplay(holder);
>> mCamera.startPreview();
>> mCamera.autoFocus(new Camera.AutoFocusCallback() {
>> @Override
>> public void onAutoFocus(boolean success, Camera camera) {
>> Log.d(VIEW_LOG_TAG, "Completed autofocus setup: 
>> success[" + success + "]");
>> }
>> });
>> }
>> } catch (IOException e) {
>> Log.d(VIEW_LOG_TAG, "Error setting camera preview: " + 
>> e.getMessage());
>> }
>> }
>>
>>
>>
>>
>> Yes, I'm calling that block for both the null and !null case.  I did that 
>> because when I ran in the debugger, I saw that it never got into the "== 
>> null" block, so I'm experimenting with calling it when it's not null.  In 
>> any case, it calls the "autofocus()" method, but the "onAutoFocus()" method 
>> is never called.  At one point when it retrieves the "Camera.Parameters" 
>> object, I added a log statement for "focusMode", and it prints "auto".  And 
>> it doesn't appear to be focusing.
>>  
>>
>>
>> - you can also do this whilst the video is recording as well, although 
>> you will have periods of a few seconds where focus is lost before being 
>> regained.
>>
>> Note sure about upside down video, I suspect this not the video recording 
>> but perhaps some Camera Preview rotation mismatch / issue in your 
>> CameraPreview class ? Compare the Camera Preview orientation in your app 
>> vs when you use the default Camera App. (NOTE also that Nexus 5X has some 
>> wrong camera preview orientation issues...)
>>
>> Regards
>>
>>
>>
>> On Wednesday, March 23, 2016 at 3:41:02 PM UTC+11, David Karr wrote:
>>
>> I've assembled a relatively small camcorder app. It only does what I need 
>> it to do.  I assembled it from sample code, and some people on this forum 
>> have helped me fix some of the problems with it, although some of the 
>> details of interfacing with the camera are beyond me.
>>
>> After some usage of it, I've realized there are two problems with it:
>>
>> * Although the preview display is right-side up, the resulting stored 
>> video is upside down.  This isn't a huge deal, as I later process this with 
>> another app that lets me rotate it till its right-side up, but it's still 
>> an annoyance, especially when previewing many videos to see which ones I 
>> want to use.
>>
>> * The video it produces is just fuzzy, or out of focus.  I don't know 
>> whether this is the nature of video vs. still images or whether I'm not 
>> doing something I should be doing.  Is there some autofocus feature of the 
>> camcorder that I'm not taking 

[android-developers] Re: Question: Is there a way to inquire the port forwarding done by Android Studio?

2016-03-24 Thread Diego Torres Milano
Take a look at http://developer.android.com/reference/android/os/Debug.html


On Wednesday, 23 March 2016 22:45:34 UTC-4, Dato Da wrote:
>
> If Android Studio is running on my development machine, when I launch the 
> app on a device from the command line using this command:
>
> $ adb shell am start -D -n  -a ...
>
> Android Studio would immediately forward a port on the local host (8600 
> and up) to the jdwp port of the app, so that the debugger in Android Studio 
> could debug the app if necessary.
>
> Now, if, say, I would like to use a 3rd party debugger (rather than the 
> debugger in Android Studio) to debug the app, I will need to connect that 
> debugger to the port forwarded by Android Studio to that app to get the 
> debugging to work.
>
> *My question: How can I determine what that port is? *
>
> Here are a couple of things I've tried (to no avail):
> 1. $ adb forward --list
>   Alas, the forwarding done by Android Studio isn't shown.
> 2. $ adb forward tcp:9010 jdwp:
>   Connecting the debugger to 9010 failed, probably because the jdwp 
> port is already locked up by Android Studio's port forwarding.
> 3. I can turn on DDMS and see the port assigned to the app. But what I 
> need is an API or text output so that I can get that info programmatically?
>
> You insight would be appreciated.
>
>
>
>

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/b4f4ba11-7a0a-4728-8f8d-3e9be224a922%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Camcorder app produces video that is out of focus, and upside down

2016-03-24 Thread gjs
Hi,

Re -  I imagine I'm doing something horribly wrong,

Well yes, particularly for this code, calling methods on a null object ??? 
 -

 if (mCamera == null) {
mCamera.setPreviewDisplay(holder); ...


I'd suggest waiting a little after starting the Camera Preview before 
initiating a call to autofocus, say 500ms to 1 second, this is to give the 
camera some time to settle after it has just been opened.


I'd also suggest that you do this asynchronously, eg -


// Need handler for callbacks to the UI thread
final Handler mHandler = new Handler();


mHandler.postDelayed(new Runnable()
{
   @Override
   public void run()
   {
  doAutoFocus(..
   }
 
}, 500 );


Regards



On Thursday, March 24, 2016 at 12:11:11 PM UTC+11, David Karr wrote:
>
> On Wednesday, March 23, 2016 at 12:06:47 AM UTC-7, gjs wrote:
>
> Hi,
>
> For the focus / fuzzy issue try initiating auto focusing of the camera 
> before you start recording your video -
>
>
> http://developer.android.com/reference/android/hardware/Camera.html#autoFocus(android.hardware.Camera.AutoFocusCallback)
>
>
> Thanks for replying.  I imagine I'm doing something horribly wrong, but 
> I'm not getting much from this.  I made a change in my "CameraPreview" 
> class to add this call, in the "surfaceCreated()" method.  It now looks 
> like this, which will immediately look odd:
>
> public void surfaceCreated(SurfaceHolder holder) {
> try {
> // create the surface and start camera preview
> if (mCamera == null) {
> mCamera.setPreviewDisplay(holder);
> mCamera.startPreview();
> mCamera.autoFocus(new Camera.AutoFocusCallback() {
> @Override
> public void onAutoFocus(boolean success, Camera camera) {
> Log.d(VIEW_LOG_TAG, "Completed autofocus setup: success[" 
> + success + "]");
> }
> });
> }
> else {
> mCamera.setPreviewDisplay(holder);
> mCamera.startPreview();
> mCamera.autoFocus(new Camera.AutoFocusCallback() {
> @Override
> public void onAutoFocus(boolean success, Camera camera) {
> Log.d(VIEW_LOG_TAG, "Completed autofocus setup: success[" 
> + success + "]");
> }
> });
> }
> } catch (IOException e) {
> Log.d(VIEW_LOG_TAG, "Error setting camera preview: " + 
> e.getMessage());
> }
> }
>
>
>
>
> Yes, I'm calling that block for both the null and !null case.  I did that 
> because when I ran in the debugger, I saw that it never got into the "== 
> null" block, so I'm experimenting with calling it when it's not null.  In 
> any case, it calls the "autofocus()" method, but the "onAutoFocus()" method 
> is never called.  At one point when it retrieves the "Camera.Parameters" 
> object, I added a log statement for "focusMode", and it prints "auto".  And 
> it doesn't appear to be focusing.
>  
>
>
> - you can also do this whilst the video is recording as well, although you 
> will have periods of a few seconds where focus is lost before being 
> regained.
>
> Note sure about upside down video, I suspect this not the video recording 
> but perhaps some Camera Preview rotation mismatch / issue in your 
> CameraPreview class ? Compare the Camera Preview orientation in your app 
> vs when you use the default Camera App. (NOTE also that Nexus 5X has some 
> wrong camera preview orientation issues...)
>
> Regards
>
>
>
> On Wednesday, March 23, 2016 at 3:41:02 PM UTC+11, David Karr wrote:
>
> I've assembled a relatively small camcorder app. It only does what I need 
> it to do.  I assembled it from sample code, and some people on this forum 
> have helped me fix some of the problems with it, although some of the 
> details of interfacing with the camera are beyond me.
>
> After some usage of it, I've realized there are two problems with it:
>
> * Although the preview display is right-side up, the resulting stored 
> video is upside down.  This isn't a huge deal, as I later process this with 
> another app that lets me rotate it till its right-side up, but it's still 
> an annoyance, especially when previewing many videos to see which ones I 
> want to use.
>
> * The video it produces is just fuzzy, or out of focus.  I don't know 
> whether this is the nature of video vs. still images or whether I'm not 
> doing something I should be doing.  Is there some autofocus feature of the 
> camcorder that I'm not taking advantage of?
>
> I'd appreciate any useful advice on this.
>
> I'll provide here the entire Activity class.
>
> package com.integralsoftware.videograbber;
>
> import android.content.Intent;
> import android.media.AudioFormat;
> import android.media.AudioManager;
> import android.media.AudioTrack;
> import android.media.MediaScannerConnection;
> import android.net.Uri;
> import android.os.Bundle;
> import android.os.Environment;
> import 

[android-developers] getSkuDetails returns BILLING_RESPONSE_RESULT_ERROR

2016-03-24 Thread niceneasy
Hi,

Does anyone know when this particular error BILLING_RESPONSE_RESULT_ERROR 
is being returned as a response by getSkuDetails method of the Billing API?
My app sends error reports to my GAnalytics whenever this error is returned 
and for about 2000 daily active users I get around 1000 errors. This means 
that alot of users cannot use billing.
I have tested my app on dozens of android devices and never met this error. 
I tried to find a trend in the Analytics data but it seems to happen for 
every device and every Android version.

I tried contacting Google on this matter but never received a reply.
Hope some of you guys might know anything.

Here is a sample of my code, nothing unusual:
private static String requestAvailableItems(String[] productIds)
{
 ArrayList temp = new ArrayList();
 
 for(int i = 0; i < productIds.length; i++)
 {
   temp.add(productIds[i]);
 }
 
 Bundle skus = new Bundle();
 skus.putStringArrayList("ITEM_ID_LIST", temp);
 
 Bundle availableItems = _billingService.getSkuDetails(3, MyApp.packageName, 
"inapp", skus);
 int response = availableItems.getInt("RESPONSE_CODE");
 
 if(response == 0)
 {
   ArrayList responseList = availableItems.getStringArrayList(
"DETAILS_LIST");
 
   for (String thisResponse : responseList)
   {
 JSONObject object = new JSONObject(thisResponse);
 
 _availableItems.put(object.getString("productId"), object);
   }
 
   return "0";
 }
 else
 {
   return Integer.toString(response);
 }
}

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/b3716e63-c98c-4194-90b8-1041b5a95988%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Blocking the thread when call NdefFormatable.close()

2016-03-24 Thread Lucas Moretto


According documentation, connect and format of NdefFormatable may cause RF 
activity and may block.

They recommend call close from another thread. This not worked for me, 
because when i call close, the thread is blocked too.


This is my code:


private void formatTag(Tag tag, NdefMessage ndefMessage) throws 
IOException, FormatException {

final NdefFormatable ndefFormatable = NdefFormatable.get(tag);

if (ndefFormatable == null) {
return;
}

Thread thread = new Thread() {
@Override
public void run() {
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
try {
ndefFormatable.close();
Log.v("MyApp", "Forced close NFC");
} catch (IOException e) {
Log.v("MyApp", "Disconnect failed: " + e.getMessage());
}
}
};
thread.start();
ndefFormatable.connect();
ndefFormatable.format(ndefMessage);
ndefFormatable.close();}


Note 1: the formatTag is called from a AsyncTask
Note 2: This problem occurs on LG L90 device. I have tested on Moto X (1st 
generation) and the problem not happens.

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/2b7b0c22-6c9d-4fdb-a6b1-ab042661d889%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android Studio Code Problems

2016-03-24 Thread Mike




public class Notes extends AppCompatActivity {

Button save;
ArrayList addArray = new ArrayList();
EditText txt;
ListView show;


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_notes);

txt = (EditText) findViewById(R.id.textInput);
show = (ListView) findViewById(R.id.listView);
save = (Button) findViewById(R.id.saveButton);

final ArrayAdapter adapter = new 
ArrayAdapter(Notes.this, android.R.layout.simple_list_item_1, addArray);

save.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

String getInput = txt.getText().toString();

if (addArray.contains(getInput)) {
Toast.makeText(getBaseContext(), "Note already added!", 
Toast.LENGTH_LONG).show();
} else if (getInput == null || getInput.trim().equals("")) {
Toast.makeText(getBaseContext(), "Input required!", 
Toast.LENGTH_LONG).show();
} else {
addArray.add(getInput);

show.setAdapter(adapter);
((EditText) findViewById(R.id.textInput)).setText(" ");
}
}
});


show.setOnItemLongClickListener(new 
AdapterView.OnItemLongClickListener() {
@Override
public boolean onItemLongClick(AdapterView av, View v, int pos, 
long id) {






return true;
}
});

}


}




What would  I need to add to get the OnItemLongClickListener to delete 
specific items on the list view?
Thanks


-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/838730d0-9d4f-4e80-a5a8-e7bbf729aeb3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] gwcdmasignalstrength

2016-03-24 Thread manchrist bemmo
bonsoir,les grands 
je cherche a recuperer la valeur de la puissance du signal 3g de mon 
telephone ,eclipse ne met aucune erreur sur mon code,mais quand je compile 
,ca met le fameux "l'application s'est arretée".je suis bloqué depuis une 
semaine .pardon à l'aide .merci

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/b74368e1-3ad7-49d9-b74b-6987c551061f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Emulators for WebView versions

2016-03-24 Thread simon
We make an Android wallet app called Jaxx. We have had recurring issues 
with some of our Javascript middleware in different versions of Android, 
and it's relating to the user's version of the WebView component that is 
installed. We are looking to obtain emulators of the different versions of 
the WebView component that have been published for each Android OS version, 
so that we can determine how the problem has arisen, and deterministically 
recover our clients' lost funds. Is this the best place to explore this, or 
is there some more direct route to speaking with Google developers about 
this?

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/6f554dc3-2c80-45de-8d58-77f1bfe950c1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] FATAL ERROR : Caught a fatal signal or exception

2016-03-24 Thread Raja Narayanasamy
Dear Android Developer-  I'm developing a java code that process a set of 
pdf files.   The program process some set of files but it fails in the 
middle  and throws the error like below

"FATAL ERROR : Caught a fatal signal or exception"

Here is the sample code that I wrote.

Imports:
import java.nio.file.Files;

import java.nio.file.Paths;

import java.nio.file.Path;

On input row code:

setNull("MD5");

if(!isNull("FileName")){

try {

  BinaryOut = Files.readAllBytes(Paths.get(FileName));

  logInfo("Done for file " + FileName);

} catch (Exception e) {

  logError("Error reading file. Exception: " + e);

}

}else{

setNull("BinaryOut");

synchronized(lock) {

  countNullRows++;

}

}

This still gives the same seg fault. I can log a message showing info about 
“BinaryOut” and then null it; that works fine but obviously defeats the 
purpose as the final output is null.

In other words, this runs:

setNull("MD5");

if(!isNull("FileName")){

try {

  BinaryOut = Files.readAllBytes(Paths.get(FileName));

  logInfo("Done for file " + FileName);

  logInfo("BinaryOut has length " + BinaryOut.length);

  BinaryOut = null;

} catch (Exception e) {

  logError("Error reading file. Exception: " + e);

}

}else{

setNull("BinaryOut");

synchronized(lock) {

  countNullRows++;

}

}

So it seems the “outputBuf” that “BinaryOut” is written to could be 
overflowing. any workarounds?

Please advise.

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/f2028703-5f9d-46ab-9a41-182f2508991d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Direct client Requirement for C# developer for Timonium, MD location !!!

2016-03-24 Thread Shaik Sadiq
HI

Hope you are doing well !!!



We are looking for C# developer for Timonium, MD location. please go
through the below requirement and let me know your Response.



Role : Sr.Programmer Analyst

Location : Timonium, MD

Duration : 6+ months



Job description :



Technologies in order of importance.



*1)  C#*

*2)  Sql programming*

*3)  C++*

*4)  Core Java and xml (beginner or better)*



*Need  C# and Sql with the ability to do some C++ and Java.*



*Note: Face to Face Interview. It would be better if you have Local
Candiate*





Explanation for Position:

The position requires the candidate to provide input and support for full
systems

life cycle management activities (e.g., analyses, technical requirements,
design,

coding, testing, implementation of systems and applications software, etc.).

She/he performs tasks within planned durations and established deadlines.
This

position collaborates with teams to ensure effective communication in
supporting

the achievement of objectives. She/he provides knowledge, development,

maintenance, and support for applications.

 Safety

Details of Position:

The candidate must have strong comprehension and communication skills. They

must be able to express technical and business concepts and ideas.



Management Skills:

She/he must be able to analyze and solve problems effectively with good
critical thinking skills



Note: 100% Closure if you have Excellent candidate


*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217

ssh...@myasap.com 

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAMy78asSKsfVQPvAJh%2BGRxPpqRwJ-%3Dhu3hm_2Xy%2Bx9h6Lc2AYg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Urgent req for PROJECT MANAGER @ Minneapolis, MN

2016-03-24 Thread Chuck Crisler
I have blocked all of these spammers. So I won't get their emails unless
others respond. In other words, block them and don't respond.
On Mar 24, 2016 8:41 AM, "Trevor Page"  wrote:

> Shove your spam where the sun doesn't shine.
> On 24 Mar 2016 12:40, "Shaik Sadiq"  wrote:
>
>> Hi,
>>
>> Hope you are doing well !!!
>>
>> I have an urgent requirement for an *PROJECT MANAGER. *Please let me
>> know if you Interested and get back to me with their updated resume in .doc
>> format immediately. Given below is the job description.
>>
>>
>>
>> *Job Title: PROJECT MANAGER*
>>
>> *Location: Minneapolis, MN*
>>
>> *Duration: 8+ Months *
>>
>> *Experience: 9+ years*
>>
>>
>>
>> *Skills :* *Teradata, and BI tools*
>>
>>
>>
>> *JD:*
>>
>> · Project Manager for Best Buy Reporting team, managing data
>> warehouse projects in Teradata, and BI tools.
>>
>> · 3 years of Project Management experience.
>>
>>
>>
>>
>>
>> *Sadiq Shaik*
>>
>> ASAP Solutions Group LLC,
>>
>> 678-221-4992 (ext) 217
>>
>> ssh...@myasap.com 
>>
>> --
>> 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.
>> To post to this group, send email to android-developers@googlegroups.com.
>> Visit this group at https://groups.google.com/group/android-developers.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/android-developers/CAMy78avpKpxJYcfawmdmS0h1U_dusuT6-1udXyOHdDD1r3ycoA%40mail.gmail.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAG8Y82oc_nuygdKCS8fA45W%2BKKZ1ciUz2WM421BVooeQLTc-HA%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAO_ovOJXH8zDEd%3Dv%3D9hw3wbmnA6qpJMr1uiiOevC7HG%3D6wZsFw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Urgent req for PROJECT MANAGER @ Minneapolis, MN

2016-03-24 Thread Trevor Page
Shove your spam where the sun doesn't shine.
On 24 Mar 2016 12:40, "Shaik Sadiq"  wrote:

> Hi,
>
> Hope you are doing well !!!
>
> I have an urgent requirement for an *PROJECT MANAGER. *Please let me know
> if you Interested and get back to me with their updated resume in .doc
> format immediately. Given below is the job description.
>
>
>
> *Job Title: PROJECT MANAGER*
>
> *Location: Minneapolis, MN*
>
> *Duration: 8+ Months *
>
> *Experience: 9+ years*
>
>
>
> *Skills :* *Teradata, and BI tools*
>
>
>
> *JD:*
>
> · Project Manager for Best Buy Reporting team, managing data
> warehouse projects in Teradata, and BI tools.
>
> · 3 years of Project Management experience.
>
>
>
>
>
> *Sadiq Shaik*
>
> ASAP Solutions Group LLC,
>
> 678-221-4992 (ext) 217
>
> ssh...@myasap.com 
>
> --
> 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.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/CAMy78avpKpxJYcfawmdmS0h1U_dusuT6-1udXyOHdDD1r3ycoA%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAG8Y82oc_nuygdKCS8fA45W%2BKKZ1ciUz2WM421BVooeQLTc-HA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent req for PROJECT MANAGER @ Minneapolis, MN

2016-03-24 Thread Shaik Sadiq
Hi,

Hope you are doing well !!!

I have an urgent requirement for an *PROJECT MANAGER. *Please let me know
if you Interested and get back to me with their updated resume in .doc
format immediately. Given below is the job description.



*Job Title: PROJECT MANAGER*

*Location: Minneapolis, MN*

*Duration: 8+ Months *

*Experience: 9+ years*



*Skills :* *Teradata, and BI tools*



*JD:*

· Project Manager for Best Buy Reporting team, managing data
warehouse projects in Teradata, and BI tools.

· 3 years of Project Management experience.





*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217

ssh...@myasap.com 

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAMy78avpKpxJYcfawmdmS0h1U_dusuT6-1udXyOHdDD1r3ycoA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How to create manual "update.zip"

2016-03-24 Thread Juno Juveйile


*Hello dear Developers. *I am using Android 4.4.2 on *Iball Slide 7236 2G* 
(*IBall 
7236 firmware 
).*
 I 
rooted it and now try to install/uninstall apk's via *sd card update.zip*. 
Can you please help me and find the way to do so.. please!

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/08dcdd44-0eb1-4b22-bcfe-ce2aaece2b2b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] App (Deep) Links Not Working For URL Redirects

2016-03-24 Thread Saurabh Gupta
Hi,

I know that the basic intent for the App Links project is to provide Deep 
Linking between Applications and URLs of websites that those applications 
represent. So when one clicks on a URL on some webpage published as an 
advertisement, he is directly taken to the installed app linked to the URL 
or else opens its website if the app is not already installed.

However I am planning to use the App Links behavior into our app for OAuth 
authentication. As everybody knows, OAuth requires signing into a Service 
Provider website with login credentials and then it returns an alphanumeric 
CODE which can then be exchanged later for an authentication token. After 
the introduction of Chrome Custom Tabs, I moved from Webview to Custom Tabs 
for a better user experience. However since the Custom Tabs open like an 
external browser app, I am facing challenges in sharing the CODE back with 
my app once the user enters the login credentials. I thought of using the 
Custom scheme approach however that poses the risk of any other app 
listening for the CODE once they identify the Custom scheme that my app 
uses. Then I got to know about the App Links approach where I can make my 
app the sole listener even for HTTP/HTTPS schemes. So I have setup the App 
Links JSON file on my web server and also activated the AutoVerify property 
for my app. But when the Custom tab gets the OAuth CODE via http redirect, 
that CODE is not getting redirected to my app. I tried to verify my App 
Links setup by hard-coding the OAuth code in an email message and when I 
click on that link, the system directly opens my app (it does not open it 
in browser). However it is not working when the CODE comes as a HTTP 
Redirection URL.

So from the testing that I have done I have concluded that when a URL (on a 
webpage or an email) is clicked manually, App Links works (opens the 
desired app). However when the same URL gets loaded in another browser 
(Custom Tabs) through HTTP Redirection URL (that is the way OAuth works), 
it does not work. Is there a way I can get this to work? Am I missing some 
configuration changes that would support App Links to work with URL 
Redirection as well. Any support on this are highly welcome.

Thanks,
Saurabh

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/e271b875-cf3e-4f6f-8457-307173d5ca5f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How to make an activity to open a url

2016-03-24 Thread Nickblu
Hi! I dont know much about coding so i decided to buy an app about quotes. 
The thing is i have opened it in android studio and want to make some 
changes. Specifically i want i want to change the button ''authors'' and 
instead of opening an activity i want to open a web link. How i am supposed 
to do that?
I hope this bit of code helps : 

I think the button i want to change is this in the android manifest












-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/be8fe6b3-a014-45ec-809b-e1b79b06f2c2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] AppBar title as page filter

2016-03-24 Thread Andrey
Hello, Sardar!

Thank you for replying!

Sorry if I misunderstand something, but search is not what I'm talking 
about.

If you follow the link, that I provide in the original post you'll see this 
picture



As I understand, it depicts touchable(clickable) title - something like 
Spinner widget. 
When user touches it, he/she will see list with options(All, New, Recent, 
etc.) and can choose one of them, and that choice becomes new title.
As I said the closest example is now deprecated NAVIGATION_MODE_LIST.

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/8101f249-2d7a-409a-98dc-da69bd997c9c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] application update from play store

2016-03-24 Thread Filip Matošić
After I deployed new version of my app to the store, and it is published, 
(app already installed) the mobile phone (android os) does not give it as 
an update suggestion, even if I go to the store it says installed?
What has to be done on app deployment so that it suggests to the user there 
is  a new version, if he already has the application installed?

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/79d27f3b-67df-4ef1-a3b8-f73e8842e12c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] AppBar title as page filter

2016-03-24 Thread sardar khan
Yes you can use toolbar as action bar then in menu item you can use Search
view to search or filter the Page.Then you can apply filter on textchanged
of the editttext in searchView.
http://developer.android.com/intl/ru/training/search/index.html
http://codetheory.in/adding-search-to-android/
you can use these tutorails to implement this.


On Thu, Mar 24, 2016 at 12:43 PM, Andrey  wrote:

> Hello!
>
> In material design specs
>  
> written
> that AppBar title can be a page filter.
> Can anyone tell me is there a quick way to implement it?
> Something similar to deprecated NAVIGATION_MODE_LIST feature, or I should
> implement it manually by providing custom AppBar layout?
>
> Thanks!
>
> --
> 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.
> To post to this group, send email to android-developers@googlegroups.com.
> Visit this group at https://groups.google.com/group/android-developers.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/android-developers/d279c5f6-7690-41c2-94c2-2a21e64c24fc%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CABHzXAT5dv9LPRePmx0Fo4goPDJfw5CBdk%3DYZKNHFWYGDAOJ0A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] AppBar title as page filter

2016-03-24 Thread Andrey
Hello!

In material design specs 
 
written 
that AppBar title can be a page filter.
Can anyone tell me is there a quick way to implement it? 
Something similar to deprecated NAVIGATION_MODE_LIST feature, or I should 
implement it manually by providing custom AppBar layout?

Thanks!

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/d279c5f6-7690-41c2-94c2-2a21e64c24fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android Development for Reading Temperature data from multiple SensorTag_CC2650

2016-03-24 Thread gjs
Hi,
Read the sample code supplied by TI for the SensorTag. 
Regards

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/b9653c16-d627-4549-9758-5bc9897024ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need::::::::::::: Hadoop Admin ,Woonsocket , RI ,12+ Months

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets 
too many, and it drowns out the actual conversations. Making these types of 
posts will get your account banned without warning.

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/40e3a20b-4436-49d2-b783-f4756bbf0996%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need::::::::::::: Sr. Service Now Developer , Cincinnati, OH ,12+ Months

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets 
too many, and it drowns out the actual conversations. Making these types of 
posts will get your account banned without warning.

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/7707496b-25f2-4fb4-8d44-b46522cd078f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent req for PROJECT MANAGER @ Minneapolis, MN

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets 
too many, and it drowns out the actual conversations. Making these types of 
posts will get your account banned without warning.

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/9dd4e2f6-59f0-4ebe-b698-2d277936e1d3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Req: .Net Development Manager

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets 
too many, and it drowns out the actual conversations. Making these types of 
posts will get your account banned without warning.

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/98ebb786-1663-4692-a5aa-cd6b10595b10%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Req SAP 02C

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets 
too many, and it drowns out the actual conversations. Making these types of 
posts will get your account banned without warning.

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/1a3977f4-451f-4d40-b0ee-d42af3793fe1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent req for Solution Aarchitect @ Atlanta, GA

2016-03-24 Thread gjs
Posts about job openings or from recruiters are considered spam. This list gets 
too many, and it drowns out the actual conversations. Making these types of 
posts will get your account banned without warning.

-- 
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.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/208a6b69-7971-4593-8e95-47b4ec44e1c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.