[android-developers] Record video with automatic send function

2016-06-16 Thread Shaw Revels
So my question may not be very clear but i shall try my best. Ive searched 
a lot around the net and couldnt find what i was looking for. But i have an 
app, kind of like snap chat, and it works fine. I want to be able to 
receive a video from someone, play it, my phone record a video on my end, 
and send it back to the sender. My dilemma is being able to record the 
video in the background while im watching their video and then it 
automatically sending the video back to them. It would even work with the 
sender being able to choose whether or not they want to send it by pressing 
a send button. Any advice would work. Thanks devs!

-- 
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/e2f733bc-80b7-43d8-aa67-04bb43301c91%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Bluetooth pair table size

2016-06-16 Thread ed
I am writing an Android phone application that will only talk to one BLE 
device at a time. It will, however, be used over a wide physical area and 
there could be many paired/bonded devices, even if only one is accessed at 
a time. Is there a size limit to the table used to store information about 
these devices?

Ed

-- 
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/8f94b7be-c50c-4b9e-8d00-7c87a6f0a8fb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Bluetooth Discoverability Issue

2016-06-16 Thread AdamK
Hey All,

I seem to be having some issue with the following code, following some 
tutorials on you tube and following the android Bluetooth documentation I 
have created the following which works except that it does not find any 
Bluetooth devices?

package com.company.bluetoothconnect;

import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothSocket;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

import java.lang.reflect.Method;
import java.util.Set;

public class Main extends AppCompatActivity {
/** Called when the activity is first Created. */
protected static final int DISCOVERY_REQUEST = 1;

public TextView statusUpdate;
public Button connect;
public Button disconnect;

String toastText = "";

private BluetoothAdapter btAdapter;
private BluetoothDevice remoteDevice;

BroadcastReceiver bluetoothState = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
//String prevSateExtra=BluetoothAdapter.EXTRA_PREVIOUS_STATE;
String stateExtra= BluetoothAdapter.EXTRA_STATE;
int state = intent.getIntExtra(stateExtra, -1);
//int previousState = intent.getIntExtra(prevSateExtra, -1);

switch (state){
case(BluetoothAdapter.STATE_TURNING_ON):
{
toastText = "Bluetooth Turning On";
Toast.makeText(Main.this, toastText, 
Toast.LENGTH_SHORT).show();
break;
}
case (BluetoothAdapter.STATE_ON) :
{
toastText = "Bluetooth On";
Toast.makeText(Main.this, toastText, 
Toast.LENGTH_SHORT).show();
setupUI();
break;
}
case (BluetoothAdapter.STATE_TURNING_OFF) :
{
toastText = "Bluetooth turning off";
Toast.makeText(Main.this, toastText, 
Toast.LENGTH_SHORT).show();
break;
}
case (BluetoothAdapter.STATE_OFF) :
{
toastText = "Bluetooth off";
Toast.makeText(Main.this, toastText, 
Toast.LENGTH_SHORT).show();
break;
}
}
}
};

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setupUI();
}//end onCreate

@Override
protected void onStop()
{
unregisterReceiver(bluetoothState);
unregisterReceiver(discoveryResult);
super.onStop();
}

private void setupUI() {
//get references
final TextView statusUpdate =(TextView) findViewById(R.id.result);
final Button connect =(Button) findViewById(R.id.btnConnect);
final Button disconnect =(Button) findViewById(R.id.btnDisconnect);

//set visibility
connect.setVisibility(View.GONE);
disconnect.setVisibility(View.GONE);
btAdapter = BluetoothAdapter.getDefaultAdapter();

if(btAdapter.isEnabled()){
String address = btAdapter.getAddress();
String name = btAdapter.getName();
String statusText = name + " : " + address;

statusUpdate.setText(statusText);
disconnect.setVisibility(View.VISIBLE);
} else {
connect.setVisibility(View.VISIBLE);
statusUpdate.setText("Bluetooth is not on");
}

connect.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent discoverableIntent = new 
Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);

discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
startActivityForResult(discoverableIntent, DISCOVERY_REQUEST);
}
});//end connect onClickListner

disconnect.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
btAdapter.disable();
disconnect.setVisibility(View.GONE);
connect.setVisibility(View.VISIBLE);
statusUpdate.setText("BlueTooth Off");
}
});//end disconnect onClickListner
}//end setupUI

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent 
data) {

[android-developers] My New App

2016-06-16 Thread Sujeet IIITD
Hi everyone!
We have created a new offline chat application which allows user to chat 
freely in range of 100m.
We have ready with alpha version of it and want people to review and test 
this app as alpha testers.
Hope you all would help me in this
Link : https://play.google.com/apps/testing/com.nearpeer.app

-- 
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/681f4bd5-0090-4fca-84d0-4f8886910d75%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] weird java.lang.StringIndexOutOfBoundsException error

2016-06-16 Thread Aaron Shavolian
Disclaimer: I'm a beginner straight out of AP Computer Science.

I'm trying to make an app that converts text input from the user into pig 
latin... For practice.

Here's my code: 

package com.example.ashavolian.piglatin2;

import android.content.DialogInterface;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.view.View.OnClickListener;

public class MainActivity extends AppCompatActivity {

TextView txtOut;
EditText txtIn;
Button button;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
txtOut = (TextView) findViewById(R.id.txtOut);
txtIn = (EditText) findViewById(R.id.txtIn);
button = (Button) findViewById(R.id.button);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
String txtTxtIn = txtIn.getText().toString();
txtOut.setText(translate(txtTxtIn));
}
});

}
public String translate(String txtTxtIn)
{

int length = txtTxtIn.length();
String pigLatin = "";
for (int b = 0; b < length; b++) {
int space = txtTxtIn.indexOf(" ");
String word = txtTxtIn.substring(0, space);
int a = word.indexOf("a");
int e = word.indexOf("e");
int i = word.indexOf("i");
int o = word.indexOf("o");
int u = word.indexOf("u");

int vowels[] = {a, e, i, o, u};

for (int c = 0; c < 4; c++)
{
if (vowels[c] == -1)
vowels[c] += 101;
}

for (int d = 0; d < 4; d++)
{
if (vowels[d] > -1 && vowels[d] <= vowels[0] && vowels[d] <= 
vowels[1] && vowels[d] <= vowels[2] && vowels[d] <= vowels[3] && vowels[d] <= 
vowels[4])
{
word = word.substring(vowels[i] + 1) + 
word.substring(0,vowels[i]);
pigLatin += " " + word;
}
}

/*if (a != -1 && a < e && a < i && a < o && a < u) {
word = word.substring(a + 1) + word.substring(0, a);
pigLatin += " " + word;
} else if (e != -1 && e < a && e < i && e < o && e < u) {
word = word.substring(e + 1) + word.substring(0, e);
pigLatin += " " + word;
} else if (i != -1 && i < e && i < a && i < o && i < u) {
word = word.substring(i + 1) + word.substring(0, i);
pigLatin += " " + word;
} else if (o != -1 && o < e && o < i && o < a && o < u) {
word = word.substring(o + 1) + word.substring(0, o);
pigLatin += " " + word;
} else if (u != -1 && u < e && u < i && u < o && u < a) {
word = word.substring(u + 1) + word.substring(0, u);
pigLatin += " " + word;
}*/
txtTxtIn = txtTxtIn.substring(space + 1);
}
return pigLatin;

}
}

The error only occurs when you press the button. Making the Program crash.

Here's the error:


FATAL EXCEPTION: main

Process: com.example.ashavolian.piglatin2, PID: 2991

java.lang.StringIndexOutOfBoundsException: length=0; regionStart=0; 
regionLength=-1

at java.lang.String.startEndAndLength(String.java:298)

at java.lang.String.substring(String.java:1087)

at 
com.example.ashavolian.piglatin2.MainActivity.translate(MainActivity.java:39)

at 
com.example.ashavolian.piglatin2.MainActivity$1.onClick(MainActivity.java:27)

at android.view.View.performClick(View.java:5198)

at android.view.View$PerformClick.run(View.java:21147)

at android.os.Handler.handleCallback(Handler.java:739)

at android.os.Handler.dispatchMessage(Handler.java:95)

at android.os.Looper.loop(Looper.java:148)
 

[android-developers] way to link the gmail account to application account?

2016-06-16 Thread Roopa Venkatesh
Can any of you help on 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/0bff8b6b-64d5-4dc0-a348-c3490c402415%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Phone/Skype Interview:SAP Product Costing Consultant needed - 6-12 months - Raleigh, NC

2016-06-16 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

*Please find the below job description and send me your update resume
matching to it along with Contact details, Current location, Visa and
Availability ASAP.*



*POSITION: SAP Product Costing Consultant*

* INTERVIEW: Phone/Skype Interview*

*LOCATION: Raleigh, NC*

*DURATION:6-12 MONTHS*

*START :ASAP*





*Job Overview:*



*This is a new Simple Finance (sFin) project *

*Scope: 10 European countries: Finance Green field project (with MM, SD,
PP)*



Thanks,






-- 



*Neha Kumari |* *Technical Recruiter* | *Apetan Consulting LLC*

Tel:201-620-9700* 106 | Fax: 201-526-6869 | 72 Van

Reipen Avenue # 255 Jersey City, NJ 07306 |

n...@apetan.com | www.apetan.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/CAH6F14dtJzH7iux2U%2BLVJ%3DMv3n5rG8GLA-OwsTJ9-Cm3m7-D2A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Support of pressure sensitive in Android N ?

2016-06-16 Thread mike digioia
Submit me
On Jun 16, 2016 6:24 AM, "Stéphane M."  wrote:

> Hi !
>
> The Launcher Shortcuts APIs are removed from the Developer Preview 4, but
> does Android N supports pressure sensitive after all ?
>
> --
> 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/ba021576-be5b-4a11-baf9-3fcb5ebae2b4%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/CAMCsUi7Og-wrKJk17LxBn952%2Bu8pHOGn5TpLM08osQROUKm3HA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Shorter1ResumeEmbeddedUpton45CA-S-7.doc
Description: MS-Word document


[android-developers] Phone/Skype Interview:VMware Engineers, Columbia, SC

2016-06-16 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

*Please find the below job description and send me your update resume
matching to it along with Contact details, Current location, Visa and
Availability ASAP.*



*POSITION: VMware Engineers*

* INTERVIEW: Phone/Skype Interview*

*LOCATION: Columbia, SC*

*DURATION:12 MONTHS*

*START :ASAP*





*Job Overview:*





SKILLS REQUIRED:
- At least 8 years experience in Information Technology.
- VCP certification required, or five years equivalent experience in VMWARE
- Proven experience resolving problems in enterprise environments with
known issues on both the SAN and Vmware front.
- Knowledge of Virtual Machine operation, strengths, and weaknesses.
- Experience with VMware ESX administration
- Creating architectural documentation for VMware and SAN improvements
based on industry best practices.
- Capacity planning based on technical analysis research
- Up to date expert level knowledge on various Vmware infrastructure
product lines (Desktop virtualization, SQL virtualization)
- Experience in monitoring infrastructure systems for Windows environments
- Strong interpersonal, written, and oral communication skills a must.
- Able to conduct research into infrastructure issues and products as
required.
- Leading effective team meetings
- Ability to present ideas in user-friendly language.
- Highly self motivated and directed, with keen attention to detail.
- Proven analytical and problem-solving abilities.
- Experienced hardware troubleshooting.
- Able to effectively prioritize tasks in a high-pressure environment.
- Strong customer service orientation.
- Experience working in a team-oriented, collaborative environment.

REQUIRED CERTIFICATION: VCP certification required, or five years
equivalent experience in VMWARE.

SKILLS PREFERRED:
Highly Preferred
- Experience within a NIST and/or PCI environment.
- Experience and working knowledge of backup products and methodologies.
- Experience with Change Management
- Ability to craft proactive and automated scripts and tools
- Support of web-based applications for internal (intranet) sites and
external (Internet) sites.
- Hands-on technical knowledge of network and server operating systems
- Working technical knowledge of current network hardware, protocols, and
Internet standards, including TCP/IP, and DNS, DHCP.
- Experience in developing and maintaining documentation for policies,
procedures, and best practices.
- HANDS ON experience analyzing, designing, DOCUMENTING, and deploying
large scale virtualization and SAN environments
- Experience designing 99.9% uptime environments (HA and DR experience
required)
- Experience designing and supporting EMC storage, including but not
limited to EMC NS-480, VNX 5700, and VMAX storage lines.
- Experience designing backup strategies for large scale organizations
based on best practices
- Experience with backup tools like AVAMAR



Thanks,


-- 



*Neha Kumari |* *Technical Recruiter* | *Apetan Consulting LLC*

Tel:201-620-9700* 106 | Fax: 201-526-6869 | 72 Van

Reipen Avenue # 255 Jersey City, NJ 07306 |

n...@apetan.com | www.apetan.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/CAH6F14djLXTy2rrATHW0KuxSbqV4gx%2BvKaJGy8i8K11EzS1ORQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] VERY URGENT:Phone than F2F Interview:Oracle DBA |Basking ridge NJ

2016-06-16 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

*Please find the below job description and send me your update resume
matching to it along with Contact details, Current location, Visa and
Availability ASAP.*



*POSITION: Oracle DBA*

* INTERVIEW: Phone than F2F Interview*

*LOCATION: Basking ridge NJ*

*DURATION:2 MONTHS*

*START :ASAP*





*Job Overview:*



*85hr and as long as they pass the client interview and and start Monday or
Tuesday.  *

*2 Months Project | LOCAL | *



*Need locals for FTF interview*



*I need a Oracle DBA that can start on Monday for a 2 month contract in New
Jersy/New York area – have anyone?  Below is what I am looking for:*



*I need someone with oracle 10g,11g&12c Solaris in a RAC environment onsite
basking ridge NJ *






-- 



*Neha Kumari |* *Technical Recruiter* | *Apetan Consulting LLC*

Tel:201-620-9700* 106 | Fax: 201-526-6869 | 72 Van

Reipen Avenue # 255 Jersey City, NJ 07306 |

n...@apetan.com | www.apetan.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/CAH6F14f6yiKPhHSTYS5n%2BNQGD-QJBKW_%2BTLjJP9SJ70Bfb%2BbNw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Tried to test apps, but got my apps suspended

2016-06-16 Thread GesaVoIP Voip
Hello, I am new to developing apps and games, I tried to publish apps and 
games to test only by me but 2 apps were suspended.

I don't have any app downloaded by someone else except me. I contacted them 
and I am still contacting but they are saying they can not do nothing, and 
they are just sending me rules links. 

With who I need to contact to be able to fix 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/5032f02d-3d7c-4d1a-9f2a-c640b07dc6d1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Urgent Need: DRUPAL Developer @ New York City, NY : 6+ Months Contract Position

2016-06-16 Thread sreeram shyam
Hi Ateeq,

I am having good experience in drupal. Can you process my profile and let
me know for further process

Regards
Shyam

Hi Folk,

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



*Please share profile for Drupal **Developer** at
ateeq.reh...@diverselynx.com *

*Note: Must Need Visa Copy and passport number for submission.*



*Job Description:*



*Role: Drupal Developer*

*Location: New York City, NY*

*Experience: 7 years*





*Key Skills:* MySQL, PHP, Drupal, Git, AWS, React frontend.



*Detailed JD:*


MySQL, PHP & Drupal work experience in the past

Agile, Git, AWS, React frontend  - Headless Drupal  - (Storage)

Module development - Headless architecture in Drupal 7









*Thanks & Regards*

*Ateeq Rehman*

*Diverse Lynx LLC|300 Alexander Park|Suite#200|Princeton, NJ 08540*

*Phone No: 732-452-1006 EXT 215*

*Email: **ateeq.reh...@diverselynx.com* * ||
Hangout: ateeq.staffing*

-- 
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/CAN6NZJvkU-vhv-DHEwZF_7z1G2dWyE%2B4R6h6v9MjcmoqQBsMdA%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/CAPeJRXKK46ghsxSU8oBmimTk2SqBf2hH-yVM9Asb60Xsi__v%2BQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Salesforce Developer/Admin - LOCALS ONLY - F2F MANDATORY - NEEDS VISA COPY & REFERENCES

2016-06-16 Thread Jadhav Ashok
*Salesforce Developer/Admin*
*NYC, NY*
*LOCALS ONLY*
*NEED VISA COPY AND REFERENCES*

Need more of a Developer with some admin skills

*Responsibilities:*

   - Collaborate with leadership across the company to evaluate, streamline
   and optimize their processes and business workflow using Salesforce.com
   - Identify ways to improve pipeline accuracy and further automate
   existing Salesforce.com processes and workflow rules, minimizing the
   opportunity for human error
   - Act as lead Salesforce.com Administrator supporting all divisions of
   the business, including day-to-day maintenance and user technical support
   - Evaluate existing custom APEX code and identify ways to improve it by
   implementing new systems and/or applications to fulfill business needs,
   with a strong understanding of Salesforce APEX Governor Limits and how to
   work around them
   - Work with Sales Leadership to develop and expand capabilities of
   Salesforce Wave Analytics platform to meet their needs and provide better
   visibility into the pipeline
   - Work with Business Intelligence team to implement new connections to
   our data warehouse as needed, as well as to maintain the integrity of our
   existing data connections and mappings based on evolving business rules
   - Perform sales pipeline analysis and communicate trends, risks and
   opportunities to Sales leadership
   - Perform ad-hoc analyses and reporting requests from senior management,
   providing a strategic, data-driven approach to decision-making
   - Continually assess day to day tasks in order to optimize, streamline,
   and automate to maximize productivity and impact of the Sales Analytics team


*Job Requirements*

   - 6+ years in a quantitative, business, financial, or data analyst role,
   including 4+ years SFDC customization/development and 2+ years SFDC
   administration
   - Proven quantitative analytical abilities
   - A high level of maturity and the ability to work in groups and
   independently
   - Motivated self-starter with a collaborative and entrepreneurial spirit
   - Willing and able to adapt to multiple demands and shifting priorities
   - A desire to expand your knowledge base and take on new tasks and
   projects
   - Salesforce Certification is a plus

-- 
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/CAMcGdGK%3DuEaDeFmXgpDSC5xrid-8u8kme9PMFcdcDyaTg-bZVQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Need: DRUPAL Developer @ New York City, NY : 6+ Months Contract Position

2016-06-16 Thread Ateeq Rehman
Hi Folk,

Hope you are doing well.

This is Ateeq, from Diverse Lynx.



*Please share profile for Drupal **Developer** at
ateeq.reh...@diverselynx.com *

*Note: Must Need Visa Copy and passport number for submission.*



*Job Description:*



*Role: Drupal Developer*

*Location: New York City, NY*

*Experience: 7 years*





*Key Skills:* MySQL, PHP, Drupal, Git, AWS, React frontend.



*Detailed JD:*


MySQL, PHP & Drupal work experience in the past

Agile, Git, AWS, React frontend  - Headless Drupal  - (Storage)

Module development - Headless architecture in Drupal 7









*Thanks & Regards*

*Ateeq Rehman*

*Diverse Lynx LLC|300 Alexander Park|Suite#200|Princeton, NJ 08540*

*Phone No: 732-452-1006 EXT 215*

*Email: **ateeq.reh...@diverselynx.com* * ||
Hangout: ateeq.staffing*

-- 
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/CAN6NZJvkU-vhv-DHEwZF_7z1G2dWyE%2B4R6h6v9MjcmoqQBsMdA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] F2F Interview: Software Quality Assurance Analyst|Bloomington, MN|GC/USC/EAD-GC ONLY|$45/hr on c2c

2016-06-16 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

*Please find the below job description and send me your update resume
matching to it along with Contact details, Current location, Visa and
Availability ASAP.*



*POSITION: Software Quality Assurance Analyst*

* INTERVIEW: F2F Interview*

*LOCATION: Bloomington, MN*

*DURATION:6 MONTHS+*

*VISA:GC/USC/EAD-GC ONLY*

*START :ASAP*





*Job Overview:*

*Mode of interview: In person only *



*must be local to the Twin Cities.*





REQUIRED SKILLS (minimum qualifications):



* Must have at least a Bachelors of Science in Engineering or
Computer Science.



* Must have at least 3 years of progressively more responsible
Software Quality experience.



* More have more than two years of experience testing complex
application software in environments other than web front ends to SQL
backends.



* Must have advanced knowledge of Agile practices and principles.



* Must have at least two years experience implementing and working
with advanced automated test architectures such as keyword or data driven
infrastructures.



* Must have strong written and verbal communication skills.



* Must have programming experience in a high level language.



* Must have the ability to write XML or HTML.



ADDITIONAL SKILLS (Desired but not required skills):



* Previous documented experience with a variety of test automation
tools such as, Selenium, Silktest, Cucumber, Twist, Frankenstein, Test
Complete, Eggplant, QTP, BPM, etc.



* Experience with Agile Project Management tools such as Version 1,
Rally, Mingle and Agile Accelerator.



* Experience utilizing code coverage tools such as Cobertura and
Emma in a Java development environment.






-- 



*Neha Kumari |* *Technical Recruiter* | *Apetan Consulting LLC*

Tel:201-620-9700* 106 | Fax: 201-526-6869 | 72 Van

Reipen Avenue # 255 Jersey City, NJ 07306 |

n...@apetan.com | www.apetan.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/CAH6F14dRbuw0PWOxhVNf72ueSHBGMN-3AXsr7k6hEARkFnkM5w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Phone Interview:Sr. Network Engineer- T3 in Arlington, VA,|Partial Remote

2016-06-16 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

*Please find the below job description and send me your update resume
matching to it along with Contact details, Current location, Visa and
Availability ASAP.*



*POSITION: Sr. Network Engineer- T3*

* INTERVIEW: Phone  Interview*

*LOCATION: Arlington, VA*

*DURATION:3 MONTHS*

*START :ASAP*





*Job Overview:*



*Description*:
Client is currently looking for a Sr. Network Engineer with Tier 3
engineering experience to support our client's customer based in Arlington
VA. *This is a 3 month **partial **remote contract opportunity.*

*Duties and responsibilities include:*

v Strict adherence to safety regulations and company policies
v Performs all duties and job functions as assigned by Network Team Manager
or infrastructure director
v Support all global network T3 activities and VOIP Phones
v Maintain and update wireless LAN
v Maintain and update the LAN
v Monitor network performance and work with ISP during outages as required
v Apply network security and individual file server access
v Assist contractors and visitors with network access as required
v Update equipment documentation and network drawings as needed
v Maintain Cisco Switches/Routers and Firewalls
v Maintain and support Cisco VoIP telephone system within the region
v Assists in the planning, executing and supporting other IT initiatives as
required
v Ensures the security and integrity of data, data systems, and data
networks across the businesses
v Proactively review and implement the network design to be up to date on
industry standards and technology
v Proactively monitors the backbone equipment's health in regards to high
utilization, errors logs, recurring incidents, etc
v Interfaces with internal security engineers to make sure the recommended
security policies are in place on the network devices and firewalls
v Interfaces with external consulting (Cisco, Didata, etc) to validate new
designs
v Analyzes automated tools to make sure it provides reliable information
about network KPI's and provides a accurate information when a event happens
v Maintain the routing protocols
v Maintain QoS
v Interfaces with the monitoring team (NOC-T1)
v Document the processes
v WAN accelerator (Riverbed)
v Network and Application Load balancer (F5-Networks, GTM & LTM) 3+ years
v DNS
v Evaluate and Perform software upgrades as recommended by the manufacturer
at all systems
v Analyzes the impact prior of any necessary changes at the network and
document the recommendation
v Interfaces with region and local network staff to address the company
needs and make sure the G-WAN standards is been maintained
v Help the application team on troubleshooting to minimize the systems
outage time.
v Interconnects all routing protocols distribution in and out
v Supports the IPT team
v Work strongly on designing the network
v Supports Video Conferencing team
v Act as a T3 to all Junior network engineers and all T2 and T1
v Create and validate scripts to T1 (NOC) that can help on reestablishes a
service that is down


*Experience and educational requirements:*



* v Cisco CCNP certifications are required v 10+ years of experience on
Cisco Network environment v 10+ years of experience on Cisco including
PIX/ASA via command line administration*
v Experience configuring Cisco VOIP Phones and basic call manager
v Local Area Network design and configuration experience
v Ability to work independently with limited administrative support
v Knowledge of installing Cisco switches, Routers, and VOIP Phone system
including:
§ Solid understanding of IP routing protocols (BGP, OSPF, EIGRP)
§ Able to setup a wireless and wired 802.1x using radius authentication
§ Proficient in Cisco Command Line Interface
§ Able to interpret routing tables and troubleshoot interface status
§ Able to configure and troubleshoot QoS on router and switches
§ Able to interpret configurations / understand how the hardware fits into
the overall network design
§ Able to maintain L2 network design (spanning tree, QoS)
§ Able to trouble shoot L2 issues since (cable related, L2 protocols, and
all subsets
§ Ability to load new IOS software images onto a Cisco switch


-- 



*Neha Kumari |* *Technical Recruiter* | *Apetan Consulting LLC*

Tel:201-620-9700* 106 | Fax: 201-526-6869 | 72 Van

Reipen Avenue # 255 Jersey City, NJ 07306 |

n...@apetan.com | www.apetan.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/CAH6F14fd1i5umpW23SBzPV3rb_drdo3bxv%3Ddb%3DS%2BzDQNXXO43g%40mail.gmail.com.
For more options, visit 

[android-developers] Phone than Skype Interview: Java Architect Philadelphia, PA

2016-06-16 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

*Please find the below job description and send me your update resume
matching to it along with Contact details, Current location, Visa and
Availability ASAP.*



*POSITION: Java Architect*

* INTERVIEW: Phone than Skype Interview*

*LOCATION: Philadelphia, PA*

*DURATION:6 MONTHS+*

*START :ASAP*





*Job Overview:*



• Experience with full-stack projects and able to build a minimum working
product quickly

• A proponent of Continuous Improvement to refine and optimize the product.

• Create, update and deliver modern web application using latest
technologies

• Full Stack Developer comfortable working in a team

• Work with a strong collaborative Agile team

• A sense of responsibility and ownership over the product

• Build applications using ATDD

• Research and propose new technologies

Required Skills

• Demonstrated Experience with full stack end to end development

• Experience with or very good understanding of, real-time streaming big
data environments

• Expertise in core Java and Spring Framework

• Strong JavaScript and jQuery knowledge. Ability to create user interfaces
and components that are modular, performance, and maintainable.

• Knowledge and working experience with one or more modern JavaScript
frameworks like React.js, Angular.js, Aurelia.js, Mercury.js, Meteorjs,
Backbone.js or Ember.js.

• Experience with at least one dynamic style sheets languages: LESS, SAAS

• A sense of urgency and ownership over the product

• Experience with RESTful Web Service/SOA Development

• Experience with Formal Agile Development Techniques

• Experience with Issue/Bug Management and Team Collaboration Tools,
preferably with JIRA

• Experience with Source code management systems, preferably GIT

• Very good handle on database concepts. Experience with Big Data a huge
plus

• Good written and oral communication skills

Desirable Skills

• Thorough understanding of Spring: Core, MVC, Security, AOP, Boot

• Experience with Visualization Libraries like D3,

• Experience with DynamoDB, NiFi, Spark, Splunk a huge plus

• Experience with Continuous Integration, preferably Jenkins

• Good knowledge of Linux, Capistrano, Puppet, Chef

• Experience with ATDD, Cucumber and Selenium

• Experience with build and package managers, preferably Bower and Gulp



Qualifications:

• Experience developing web applications in Java

• 8+ years as a web application developer

• Knowledge of cable/telecommunication/media industry

• Demonstrated ability to work independently with limited direction


-- 



*Neha Kumari |* *Technical Recruiter* | *Apetan Consulting LLC*

Tel:201-620-9700* 106 | Fax: 201-526-6869 | 72 Van

Reipen Avenue # 255 Jersey City, NJ 07306 |

n...@apetan.com | www.apetan.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/CAH6F14fAAnGZ6DUou5%3Du6vcP410VNAXqgg%2BZ%3DGa4oWEs3hAu7A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Looking for Big Data Tester in Chicago, Illinois with infosys

2016-06-16 Thread SALMA BHAT
Hi Partners,

Please share profile at *naseer.ah...@nityo.com *


*Skill Set*

Big Data Testing

*Work Location*

Chicago, Illinois

*Special Instructions*

Approx. Start date : 22-Jun-2016,Duration : 9 months



*Job Description*


Role : Test Analyst
Open Positions : 2
Skill : Big Data Testing
Location : Chicago, Illinois



Detailed JD : · Responsible for constructing positive and negative test
cases in Hadoop/Pig/Hive components to arrest all bugs. · Report defects to
the development team or manager and driving them to closure. · Consolidate
all the defects and create defect reports Skills Required · Knowledge of
Java to test MapReduce Jobs · Knowledge of JUnit, MRUnit framework for
testing · Hands on knowledge of Hive, Pig


:

-- 
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/CAJ0KNK9r_KqjCqZT6pN64F3LjHFD7xyW6MiCb-%3DZdKTdJp1vEw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for Software Engineer, Web Developer, HP Performance Engineer || Rate $40/hr on c2c

2016-06-16 Thread USIT Recruiter
Position (1) Rate $40/hr for all position

No OPT Please

Position: Web Developer

Location: Redmond, WA

Duration : Contract

Customer: HCL America



*Local Preferred *



*Job Requirement : *

·   Javascript, HTML, CSS3

·
  candidates having experience in Javascript/JQuery/HTML5/CSS/Angular JS

·   programming skills along with web development.

·   Javascript/JQuery is a must and we just don’t need vanilla designer.

·   Panel availability- 12 noon to 2 PM PST

Position (2)



Position: Software Engineer

Location: Redmond, WA

Duration : Contract

Customer: HCL America



Local Preferred



Job Requirement :

·

 ASP.NET, MVC, C#

·

·

Software Development Experience

·

·

Strong at programming logic

·

·

Data Structures and trouble shooting

·

·

Strong in C#, SQL, Web API\Web Services, ASP.Net.

·

·

Panel availability- 12 noon to 2 PM PST

·



·

Position (3)



Position: HP Performance Engineer

Location: Bellevue or St.Louis

Duration : Contract

Customer: HCL America


*Only USC, GC*



*Job Requirement: *

·
8+ years minimum technical testing experience with HP Performance
Center, HP LoadRunner

·
Hands on experience with requirement gathering, scripting, running
performance tests, result analysis & presentation

·
Experience with scripting and testing multiple complex protocols (ex:
Citrix, Flex, QTP etc).

·
Ability to understand and translate test requirements into a testable
and correct design.

· Ability to develop a test plan as required

· Ability to review other engineer’s code and test results

·
Extensive experience designing load test scenarios to validate systems
ability to provide service in compliance with the SLA and TPM.

·
Demonstrated ability to perform analysis of test and system metrics to
identify sources of performance and scalability issues and associated
risks

·
Ability to gather requirements for scalability testing of applications
including integration with other systems and quickly understand
implications to test effort, schedule and test execution plan

· Experience working with a variety of databases, e.g. SQL, Oracle, Teradata

· Ability to learn new technologies and protocols

· Ability to work independently as required



*Mandatory Skills*

Technical / Soft Skills

Expertise Level (Expert / Good / Knowledge)


Remarks

LoadRunner

Expert



QC/QTP

Knowledge



HP Performance Center

Good



Performance Analysis and Reporting

Good

•Ability to analyze an application and determine the correct method for testing.
•Ability to generate reports from test results with minimal rework
•Ability to troubleshoot script related issues, tune, debug, and
provide performance recommendations."



*Desired Skills*

Technical / Soft Skills

Expertise Level (Expert / Good / Knowledge)


Remarks

 Attitude

 Good



 Communication

Good



 Database (SQL Server)

Knowledge

 •Experience working with a variety of databases, e.g. SQL, Oracle, Teradata

Profiling tools (HP J2EE Diagnostics/JProbe/JProfiler, Dynatrace)

Knowledge





*Thanks & Regards!*


*Abhishek Kumar | Sr. Technical Recruiter | Pro-Tek Consulting*
*| >*
*abhis...@pro-tekconsulting.com *

*Hangout :: USITRecruiter1993*

*Description: cid:sigimg0@feaa1bdd6ffc62da9a44d4fc65960bcd*

*New Thinking. New Staffing. >*
*http://www.pro-tekconsulting.com  *



*For H1B Consultants H1B Copy Is Mandatory For Submission To Client.*

-- 
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/CALnpRi0Z0hPXXqSRawoY9odEW8htYyaquHB6AaOedvd%3DK%2B4_%2Bw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need:: Pentaho Engineer at New York City, NYC or Boston,MA

2016-06-16 Thread ravi kumar
Hi



Hope you are doing great!



This is *Ravi Kumar*, working as Technical Recruiter at *Nityo Infotech* .
Please find below Job Description and let me know your interest.



*Role :: Pentaho Engineer*

*Location :: New York City, NYC or Boston,MA*

*Duration :: 12+ months*



*JD ::*

1. Experienced in Pentaho BI Suite
2. Core Java Experience in customization using Pentaho C-Tools(CDE, CDF,
CDA), Extension points CTODS, CCC/CDA/ CGG/ HTML /CSS /Java script/ Jquery
3. Mondrain/Metadata Editor/Schema Work bench/JSP/ JNDI /XUL knowledge on
MySQL DB.
4. Hands on SQL writing experience
5. Experienced in Postgres RDS



*Thanks & Regards*

*Ravi Kumar*

Technical Recruiter

609-853-0818 ext 2157

ravi.ku...@nityo.com

www.nityo.com

Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536




--

USA | Canada | India | Singapore | Malaysia | Indonesia | Philippines |
Thailand  | UK | Australia / Zealand
--

Nityo Infotech has been rated as One of the top 500 Fastest growing
companies by INC 500
--
Disclaimer: http://www.nityo.com/Email_Disclaimer.html

-- 
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/CAFMrq_YLOeYvBVE2b%2Bn5a%2BU03K-Uu4NSD5HXtTepSgxQdmDLDA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Does reCAPTCHA - I'm not a Robot will work on Mobile Development like Worklight App Development

2016-06-16 Thread M.A Aiyaz
Does reCAPTCHA - I'm not a Robot will work on Mobile Development like 
Worklight App Development. 

Thanks in Advance for your replies.

-- 
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/1da2315a-e48c-4f61-a588-3cb6ec7b5e18%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Unexpected Cast To Button

2016-06-16 Thread Jason Flanagan
To reference your button in your MainActivity class as in your original 
post. In your activity_main.xml you should have something like this...



it appears as though this id was under an ImageView tag rather than a 
button tag.

-JF


On Thursday, June 16, 2016 at 7:41:06 AM UTC-4, Rajdeep Roy wrote:
>
> Done ! but no R file and no errors are showing up as well !!
>
> On Thursday, June 16, 2016 at 5:03:40 PM UTC+5:30, sardar khan wrote:
>>
>> Rebuild the Project 
>>
>> On Thu, Jun 16, 2016 at 4:15 PM, Rajdeep Roy  wrote:
>>
>>> Hi, 
>>> I put off the code with Imageview and the Button code is intact and it 
>>> does not error now BUT the R file is missing now from the java folder
>>> What to do with that?
>>>
>>> On Thursday, June 16, 2016 at 4:31:34 PM UTC+5:30, Rajdeep Roy wrote:

 @Sardar - Do u mean check out the "MainActivity.xml" ?? 

 On Thursday, June 16, 2016 at 4:28:58 PM UTC+5:30, sardar khan wrote:
>
> it shows that the in xml layout the id refer to ImageView kindly check 
> the layout 
>
> On Thu, Jun 16, 2016 at 3:45 PM, Rajdeep Roy  
> wrote:
>
>> Hello Everyone, 
>> I am new to Android Programming and I am stuck at a point where it 
>> shows up "Unexpected Cast to the Button" 
>> I am attaching screenshot of my existing codes, kindly have a look at 
>> it. 
>> If required I can provide the sample codes as well. 
>> I look forward with some positive responses. 
>> Thanks & 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-d...@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/0470d742-f7e3-478b-8c2b-194de325bab2%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/337578da-0d25-4250-bca4-d2e644976cf6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Linkify

2016-06-16 Thread Ansh
What about sending attachments with the email ?

On Sunday, 31 October 2010 03:25:21 UTC+5:30, Priyank wrote:
>
> Hi, 
>
> I am stuck at a place when I was using Linkify to create Link an email 
> id to the Android email app. 
>
> I have a large sentence in a textview which has an email id. On 
> clicking on it, it opens my android email app. But The problem is 
> that, I cannot add any subject or message in the mail. Is there any 
> way of doing this using linkify ? Or do I have to use any other way 
> for doing this. 
> I initially used a textview which had just the email id, from which I 
> could add the subject and message, but i will have to keep the email 
> id in a separate line. I want the entire line in the textview where 
> the email id comes in the middle of the sentence. 
>
> I am currently doing like this: 
>
> TextView emailLink; 
> emailLink = (TextView) 
> this.findViewById(R.id.support_request); 
> Linkify.addLinks(emailLink,Linkify.EMAIL_ADDRESSES); 
>
> Thanks, 
> Priyank

-- 
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/df25fd68-2866-4a54-8a11-ea10059c16f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Support of pressure sensitive in Android N ?

2016-06-16 Thread Stéphane M .
Hi !

The Launcher Shortcuts APIs are removed from the Developer Preview 4, but 
does Android N supports pressure sensitive after all ? 

-- 
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/ba021576-be5b-4a11-baf9-3fcb5ebae2b4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android voice interaction service

2016-06-16 Thread Amol Shinde
Hello All,

   Android has published a new service *VoiceInteractionService* for 
hotword listner like "OK Google". I have created a service and extended 
from this VoiceInteractionService . In this service, I have created an 
object of *AlwaysOnHotwordDetector* and written a callback.
As per google developer guideline, I have overrided the onReady method and 
have created object of AlwaysOnHotwordDetector using 
*createAlwaysOnHotwordDetector*. But this onReady function never get 
called. Does anyone provide pointer to solve this issue.
I tried to create this object in onCreate \ onStartCommand but the app got 
crashed.

I have checked the Android VoiceInteractionService source in Android SDK 
and found there is no message sent to handler which calls the onReady 
function. It will be really helpfull, if you can provide us the sample 
usage for this.

Thanks and Regards,
Amol.

-- 
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/0a823058-bdc0-454f-b0aa-cc643fc4418e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Unexpected Cast To Button

2016-06-16 Thread Rajdeep Roy
Done ! but no R file and no errors are showing up as well !!

On Thursday, June 16, 2016 at 5:03:40 PM UTC+5:30, sardar khan wrote:
>
> Rebuild the Project 
>
> On Thu, Jun 16, 2016 at 4:15 PM, Rajdeep Roy  > wrote:
>
>> Hi, 
>> I put off the code with Imageview and the Button code is intact and it 
>> does not error now BUT the R file is missing now from the java folder
>> What to do with that?
>>
>> On Thursday, June 16, 2016 at 4:31:34 PM UTC+5:30, Rajdeep Roy wrote:
>>>
>>> @Sardar - Do u mean check out the "MainActivity.xml" ?? 
>>>
>>> On Thursday, June 16, 2016 at 4:28:58 PM UTC+5:30, sardar khan wrote:

 it shows that the in xml layout the id refer to ImageView kindly check 
 the layout 

 On Thu, Jun 16, 2016 at 3:45 PM, Rajdeep Roy  
 wrote:

> Hello Everyone, 
> I am new to Android Programming and I am stuck at a point where it 
> shows up "Unexpected Cast to the Button" 
> I am attaching screenshot of my existing codes, kindly have a look at 
> it. 
> If required I can provide the sample codes as well. 
> I look forward with some positive responses. 
> Thanks & 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-d...@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/0470d742-f7e3-478b-8c2b-194de325bab2%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/061dff39-8ad4-4291-b969-a7f9e0af1307%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Heaads Up Notification duration

2016-06-16 Thread Sherif Mohammed
 

I couldn't find any clue anywhere regarding this issue, I appreciate your 
support.

I have added voice and video calling to my app, and incase of app is not in 
foreground, i should make the app show  HeadsUp notification with 
Category_calling, the problem is it just ring twice for 5 seconds and stops 
ringing,

How can i make it keep ringing for a minute?

-- 
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/fdc99cc4-179f-4d45-a9f7-4d09c15cb389%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Unexpected Cast To Button

2016-06-16 Thread sardar khan
Rebuild the Project

On Thu, Jun 16, 2016 at 4:15 PM, Rajdeep Roy 
wrote:

> Hi,
> I put off the code with Imageview and the Button code is intact and it
> does not error now BUT the R file is missing now from the java folder
> What to do with that?
>
> On Thursday, June 16, 2016 at 4:31:34 PM UTC+5:30, Rajdeep Roy wrote:
>>
>> @Sardar - Do u mean check out the "MainActivity.xml" ??
>>
>> On Thursday, June 16, 2016 at 4:28:58 PM UTC+5:30, sardar khan wrote:
>>>
>>> it shows that the in xml layout the id refer to ImageView kindly check
>>> the layout
>>>
>>> On Thu, Jun 16, 2016 at 3:45 PM, Rajdeep Roy 
>>> wrote:
>>>
 Hello Everyone,
 I am new to Android Programming and I am stuck at a point where it
 shows up "Unexpected Cast to the Button"
 I am attaching screenshot of my existing codes, kindly have a look at
 it.
 If required I can provide the sample codes as well.
 I look forward with some positive responses.
 Thanks & 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/0470d742-f7e3-478b-8c2b-194de325bab2%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/CABHzXARjw1fX2gvco4ANsXX%2BQOXLnMrHsCPaFfmeTopZ7e0pjg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Unexpected Cast To Button

2016-06-16 Thread Rajdeep Roy
Hi, 
I put off the code with Imageview and the Button code is intact and it does 
not error now BUT the R file is missing now from the java folder
What to do with that?

On Thursday, June 16, 2016 at 4:31:34 PM UTC+5:30, Rajdeep Roy wrote:
>
> @Sardar - Do u mean check out the "MainActivity.xml" ?? 
>
> On Thursday, June 16, 2016 at 4:28:58 PM UTC+5:30, sardar khan wrote:
>>
>> it shows that the in xml layout the id refer to ImageView kindly check 
>> the layout 
>>
>> On Thu, Jun 16, 2016 at 3:45 PM, Rajdeep Roy  wrote:
>>
>>> Hello Everyone, 
>>> I am new to Android Programming and I am stuck at a point where it shows 
>>> up "Unexpected Cast to the Button" 
>>> I am attaching screenshot of my existing codes, kindly have a look at 
>>> it. 
>>> If required I can provide the sample codes as well. 
>>> I look forward with some positive responses. 
>>> Thanks & 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/0470d742-f7e3-478b-8c2b-194de325bab2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Unexpected Cast To Button

2016-06-16 Thread sardar khan
yes check it contain the id that refer to the imageview

On Thu, Jun 16, 2016 at 4:01 PM, Rajdeep Roy 
wrote:

> @Sardar - Do u mean check out the "MainActivity.xml" ??
>
> On Thursday, June 16, 2016 at 4:28:58 PM UTC+5:30, sardar khan wrote:
>>
>> it shows that the in xml layout the id refer to ImageView kindly check
>> the layout
>>
>> On Thu, Jun 16, 2016 at 3:45 PM, Rajdeep Roy  wrote:
>>
>>> Hello Everyone,
>>> I am new to Android Programming and I am stuck at a point where it shows
>>> up "Unexpected Cast to the Button"
>>> I am attaching screenshot of my existing codes, kindly have a look at
>>> it.
>>> If required I can provide the sample codes as well.
>>> I look forward with some positive responses.
>>> Thanks & 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/7ea3bfa0-e66a-4a3b-a7cb-3095943ee219%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/CABHzXATr%3Dk4ipzxU85Gf8U%3DYp8PatvhdFFFKfARp%2B7PZSvde8A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Unexpected Cast To Button

2016-06-16 Thread Rajdeep Roy
@Sardar - Do u mean check out the "MainActivity.xml" ?? 

On Thursday, June 16, 2016 at 4:28:58 PM UTC+5:30, sardar khan wrote:
>
> it shows that the in xml layout the id refer to ImageView kindly check the 
> layout 
>
> On Thu, Jun 16, 2016 at 3:45 PM, Rajdeep Roy  > wrote:
>
>> Hello Everyone, 
>> I am new to Android Programming and I am stuck at a point where it shows 
>> up "Unexpected Cast to the Button" 
>> I am attaching screenshot of my existing codes, kindly have a look at it. 
>> If required I can provide the sample codes as well. 
>> I look forward with some positive responses. 
>> Thanks & 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/7ea3bfa0-e66a-4a3b-a7cb-3095943ee219%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Unexpected Cast To Button

2016-06-16 Thread sardar khan
it shows that the in xml layout the id refer to ImageView kindly check the
layout

On Thu, Jun 16, 2016 at 3:45 PM, Rajdeep Roy 
wrote:

> Hello Everyone,
> I am new to Android Programming and I am stuck at a point where it shows
> up "Unexpected Cast to the Button"
> I am attaching screenshot of my existing codes, kindly have a look at it.
> If required I can provide the sample codes as well.
> I look forward with some positive responses.
> Thanks & 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/4e76ce16-6ea3-4041-b34c-e368896b83cd%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/CABHzXASUwLv4WGd0Skx8aZObyncORWQb%2BOT0saWkyWaqEHahsw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Unexpected Cast To Button

2016-06-16 Thread Rajdeep Roy
Hello Everyone, 
I am new to Android Programming and I am stuck at a point where it shows up 
"Unexpected Cast to the Button" 
I am attaching screenshot of my existing codes, kindly have a look at it. 
If required I can provide the sample codes as well. 
I look forward with some positive responses. 
Thanks & 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/4e76ce16-6ea3-4041-b34c-e368896b83cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Android Palette working only on some of RecyclerView items

2016-06-16 Thread Amitai Rosenberg
Anyone?

On Tuesday, June 14, 2016 at 3:57:37 PM UTC+3, Amitai Rosenberg wrote:
>
> I'm trying to generate a Palette for each CardView I have inside a 
> RecyclerView, and to color the card based on the Palette generated.
> However, for some weird reason, only the last two CardViews of the 
> RecyclerView get colored.
>
>
> This is my code:
>
>
> RecyclerAdapter:
>
> public class RecyclerAdapter : RecyclerView.Adapter, 
> Palette.IPaletteAsyncListener
> {
> private List mBooks;
> private RecyclerView mRecyclerView;
> private Context mContext;
> private int mCurrentPosition = -1;
> private bool isPaletteGenerated = false;
> MyView myHolder;
> public RecyclerAdapter(List books, RecyclerView recyclerView, 
> Context context)
> {
> mBooks = books;
> mRecyclerView = recyclerView;
> mContext = context;
> }
>
> public class MyView : RecyclerView.ViewHolder
> {
> public View mMainView { get; set; }
> public TextView mTitle { get; set; }
> public ImageView mCoverImage { get; set; }
> public int mCoverImageResourceID { get; set; }
> public CardView mCard { get; set; }
>
> public MyView(View view) : base(view)
> {
> mMainView = view;
> }
> }
>
> public override RecyclerView.ViewHolder OnCreateViewHolder(ViewGroup 
> parent, int viewType)
> {
>
> View bookItem = 
> LayoutInflater.From(parent.Context).Inflate(Resource.Layout.item_book, 
> parent, false);
>
>
> TextView bookTitle = 
> bookItem.FindViewById(Resource.Id.bookTitle);
> ImageView coverImage = 
> bookItem.FindViewById(Resource.Id.coverImage);
> CardView card = bookItem.FindViewById(Resource.Id.card);
>
> MyView view = new MyView(bookItem) { mTitle = bookTitle, 
> mCoverImage = coverImage, mCard = card};
> return view;
> }
>
> public override async void OnBindViewHolder(RecyclerView.ViewHolder 
> holder, int position)
> {
> myHolder = holder as MyView;
> myHolder.mMainView.Click += mMainView_Click;
> myHolder.mTitle.Text = mBooks[position].Title;
> 
> myHolder.mCoverImage.SetImageDrawable(mBooks[position].Cover.Drawable);
> myHolder.mCoverImageResourceID = mBooks[position].imageResourceId;
>
> if (position > mCurrentPosition)
> {
> int currentAnim = Resource.Animation.slide_left_to_right;
> //SetAnimation(myHolder.mMainView, currentAnim);
> mCurrentPosition = position;
> }
>
> Bitmap photo = await 
> BitmapFactory.DecodeResourceAsync(mContext.Resources, 
> myHolder.mCoverImageResourceID);
> BitmapDrawable bitmapDrawable = 
> ((BitmapDrawable)mBooks[position].Cover.Drawable);
> Bitmap image = bitmapDrawable.Bitmap;
>
> var palette = 
> Palette.From(photo).MaximumColorCount(16).Generate(this);
>
>
> }   
>
> public void OnGenerated(Palette palette)
> {
>
> if (palette == null)
> return;
> try
> {
> if (palette.LightVibrantSwatch != null)
> {
> var lightVibrant = new 
> Color(palette.LightVibrantSwatch.Rgb);
> myHolder.mCard.SetCardBackgroundColor(lightVibrant);
> }
> if (palette.DarkVibrantSwatch != null)
> {
> var darkVibrant = new 
> Color(palette.DarkVibrantSwatch.Rgb);
> myHolder.mCard.SetCardBackgroundColor(darkVibrant);
> }
> }
> catch (Exception ex)
> {
>
> }
>
> }
>
> public override int ItemCount
> {
> get { return mBooks.Count; }
> }
> }
>
>
> Fragment in which the RecyclerView is inside:
>
> public override View OnCreateView(LayoutInflater inflater, ViewGroup 
> container, Bundle savedInstanceState)
> {
>
> mRecyclerView = 
> view.FindViewById(Resource.Id.booksRecyclerView);
> mBooks = new List();
> ImageView cover = new ImageView(Activity);
>
> cover.SetImageResource(Resource.Drawable.Torat_Hamachane1);
> mBooks.Add(new Book() { Title = "תורת המחנה א' - הלכות יום ויום", 
> Cover = cover, imageResourceId = Resource.Drawable.Torat_Hamachane1}); 
>
>
> mLayoutManager = new GridLayoutManager(Activity, 2);
> mRecyclerView.SetForegroundGravity(GravityFlags.CenterHorizontal);
> mRecyclerView.SetLayoutManager(mLayoutManager);
> SimpleItemAnimator x = null;
>
> mRecyclerView.SetItemAnimator(x);
> mAdapter = new RecyclerAdapter(mBooks, mRecyclerView, Activity);
> 

[android-developers] accessing my Angular website with Android WebView

2016-06-16 Thread Mridul Kashyap
Hi,

 I have an website which uses REST services and these are accessed by a 
front end using AngularJs. in a section of a website, the user need to sign 
in, and for this he has the options of using the Website account, a Google 
account and Facebook account.  Everything seems to be working fine on the 
website.
 But i also have an android app for the same, which a friend made for me. i 
don't know anything at all about android development, but he told me that 
he loaded the website in the Android Webview and everything should be 
working fine.
 Everything goes seem to be working fine, except the user can't use the 
Google sign in. when i try it on my phone(Moto G2) it asks me for a google 
account to choose from, i do that, it appears to be loading something and 
then i'm back on my website(running in webview on android). but i'm not 
logged in. no error is given. 
 when i try the same thing by opening the website on chrome browser on my 
mobile, everything works fine. i'm logged in without any problem.
 I asked my friend, but he has no idea why. i was wondering if i need to do 
more than just loading my website in the webview.

 Any help is appreciated.

Thank you,
Mridul

-- 
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/c05af512-0b8e-4f27-8f2a-de3f10fb8a17%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Error with app:layout_behavior

2016-06-16 Thread Kevin Chen
Hello,

Thank you for your response.
However, based on my intuition/inference, @string/appbar_scrolling_view_
behavior, is a special string resource object that the Android OS would 
automatically recognize. This is because this value is used in many other 
contexts. Here are just a couple examples of where the above value is used:

https://developer.android.com/reference/android/support/design/widget/AppBarLayout.html
http://stackoverflow.com/questions/33707337/setting-applayout-behavior-programatically/33707476

Thus, I believe that I do not need to add a string resource object to 
res/values/string folder. Nevertheless, I did try your suggestion of adding 
a string resource object to that location, but this still resulted in the 
same error. So I believe that the error is somehow caused by the fact that 
the Android OS cannot find the value of appbar_scrolling_view_behavior for 
whatever reason.

I would appreciate any additional help in resolving this error.

Thanks,
Kevin Chen

On Wednesday, June 15, 2016 at 10:44:23 PM UTC-7, sardar khan wrote:
>
> you should add a string resource in the res/values/string folder . check 
> below in the tutorial to show how to add string resource
> https://developer.android.com/training/basics/firstapp/building-ui.html
>
> On Thu, Jun 16, 2016 at 10:31 AM, Kevin Chen  > wrote:
>
>> Hello,
>>
>> I am a new android programmer trying to complete this tutorial: 
>> https://developer.android.com/training/basics/firstapp/building-ui.html
>> After following all the instructions on the above page and running the 
>> code, I get the following error:
>>
>> Error:(2) No resource identifier found for attribute 'layout_behavior' in 
>> package 'com.example.kevin.myfirstapp'
>>
>> The error appears to be associated with the "app:layout_behavior" 
>> attribute in the following section of code:
>>
>> http://schemas.android.com/apk/res/android;
>> xmlns:app="http://schemas.android.com/apk/res-auto;
>> xmlns:tools="http://schemas.android.com/tools;
>> android:orientation="horizontal"
>> android:layout_width="match_parent"
>> android:layout_height="match_parent"
>> app:layout_behavior="@string/appbar_scrolling_view_behavior"
>> tools:showIn="@layout/content_my">
>>
>>
>> Could you please help me fix this error?
>>
>>
>> Thanks,
>>
>> Kevin Chen
>>
>> -- 
>> 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-d...@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/d2bcd31f-2211-4482-a774-310885a01258%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/bc24afbc-7f39-4f19-bdb0-520a00883fa8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How can i Fix "ActivityManager: Exception when unbinding" Error

2016-06-16 Thread abird1983
i have a service in second process.  I use it as a aidl Server. normally 
the program run well

but lately i found a really unexplainable question.

i try to kill my App serveral times. after a few times(about 5-10)。I get 
this error below


06-16 01:49:44.433 528-694/system_process I/ActivityManager: Killing 
31591:com.nd.smartcan.appfactory.imapp/u0a58 (adj 16): remove task
06-16 01:49:44.441 528-694/system_process I/ActivityManager: Killing 
31574:com.nd.smartcan.appfactory.imapp:coreService/u0a58 (adj 5): remove 
task
*06-16 01:49:44.465 528-696/system_process W/ActivityManager: Exception 
when unbinding service 
com.nd.smartcan.appfactory.imapp/com.nd.sdp.core.CoreService*
*
 android.os.DeadObjectException*
 at 
android.os.BinderProxy.transact(Native Method)
 at 
android.app.ApplicationThreadProxy.scheduleUnbindService(ApplicationThreadNative.java:874)
 at 
com.android.server.am.ActiveServices.removeConnectionLocked(ActiveServices.java:1713)
 at 
com.android.server.am.ActiveServices.killServicesLocked(ActiveServices.java:2061)
 at 
com.android.server.am.ActivityManagerService.cleanUpApplicationRecordLocked(ActivityManagerService.java:12427)
 at 
com.android.server.am.ActivityManagerService.handleAppDiedLocked(ActivityManagerService.java:3606)
 at 
com.android.server.am.ActivityManagerService.appDiedLocked(ActivityManagerService.java:3751)
 at 
com.android.server.am.ActivityManagerService$AppDeathRecipient.binderDied(ActivityManagerService.java:1026)
 at 
android.os.BinderProxy.sendDeathNotice(Binder.java:493)
 at 
dalvik.system.NativeStart.run(Native Method)
06-16 01:49:44.465 528-696/system_process W/ActivityManager: Scheduling 
restart of crashed service 
com.nd.smartcan.appfactory.imapp/com.erp.android.service.ERPMobileService 
in 180142080ms
06-16 01:49:44.465 528-696/system_process W/ActivityManager: Scheduling 
restart of crashed service 
com.nd.smartcan.appfactory.imapp/nd.sdp.android.im.notifyservice.NotifyService 
in 1000ms


and i would never ever bind  or start this remote service again. the only 
way to bring it back is to clean the data then restart.


the weird thing is the problem no gona show very offten. you must repeat 
killing and restart it , then sometime, the service just dead forever.

i googled a few hours, but doesn't get any usefull answer. could someone 
give me a explaination why this error happens, and how can i avoid this 
Error.

from the callstack, i presume that when system clean aidl service, need to 
check some condition. like the remote service exist or not. but before this 
Erorr happens , i saw the Service has been connected

see logs below


06-16 01:49:41.165 31591-31620/com.nd.smartcan.appfactory.imapp D/DOE: 
bindCoreService
06-16 01:49:41.165 31574-31574/com.nd.smartcan.appfactory.imapp:coreService 
D/CoreService: 
Processor:com.nd.sdp.im.transportlayer.crossprocess.operation.processor.StartIMProcessor@527efd58
 
Code:10001
06-16 01:49:41.165 31574-31574/com.nd.smartcan.appfactory.imapp:coreService 
D/TOKEN: uid:2107153584 
accessToken:3A7E8A5D8468658113F964B41B919F1E6A8033D7025294362571E8F606B366B8C2EAEE32520BFA87
 
loginTime:18340 currentTime:1466044904174 macKey:lTULPLqo53 encrypt:false
06-16 01:49:41.165 31574-31574/com.nd.smartcan.appfactory.imapp:coreService 
E/Trantor: startIM From Up layer, userid:2107153584
06-16 01:49:41.169 31591-31591/com.nd.smartcan.appfactory.imapp 
W/ComponentManager: triggerEvent not find the have register component the 
event is appfactory_data_analytics_event
06-16 01:49:41.169 31591-31591/com.nd.smartcan.appfactory.imapp 
W/ComponentManager: triggerEvent not find the have register component the 
event is appfactory_data_analytics_event
06-16 01:49:41.169 31591-31591/com.nd.smartcan.appfactory.imapp 
W/appPerformance:  end MainContainerActivity  onResume 
06-16 01:49:41.193 31591-31743/com.nd.smartcan.appfactory.imapp 
D/ColumnUtils.getColumnGetMethod(L:68): getETag not exist
06-16 01:49:41.193 31591-31743/com.nd.smartcan.appfactory.imapp 
D/ColumnUtils.getColumnSetMethod(L:89): setETag not exist
*06-16 01:49:41.197 31591-31591/com.nd.smartcan.appfactory.imapp 
E/CoreService: onServiceConnected*


So. why this error happened

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To 

[android-developers] Re: Zipalign does not work!

2016-06-16 Thread la giang
Thanks, That worked

On Monday, June 13, 2016 at 8:48:36 PM UTC+7, Fabs wrote:
>
> Very interesting everyone! I just verified that if I take the output of 
> the first attempt to zipalign (which fails), the zipaligned zipaligned file 
> worked for me too! It looks like this is a pretty widespread issue that 
> thankfully has an easy workaround, and I guess that this will be eliminated 
> when the problem is identified and resolved.
>
> To clarify: zipalign your signed APK, and then take that aligned file and 
> zipalign it again.
>
> Cheers everyone!
>
> On Friday, 10 June 2016 02:15:15 UTC+10, Fabs wrote:
>>
>> Hello all.
>>
>> I have never encountered this issue before, despite developing several 
>> apps. When I build a signed production APK using Android Studio, I get an 
>> app-release.apk file but it is rejected by Google Play, saying it needs to 
>> be zipaligned. When I verify the alignment using zipalign tool, I receive 
>> output like this:
>>
>>  1876394 res/layout/design_bottom_sheet_dialog.xml (OK - compressed)
>>  1876935 res/layout/design_layout_snackbar.xml (OK - compressed)
>>  1877313 res/layout/design_layout_snackbar_include.xml (OK - compressed)
>>  1877936 res/layout/design_layout_tab_icon.xml (OK - compressed)
>>  1878215 res/layout/design_layout_tab_text.xml (OK - compressed)
>>  1878540 res/layout/design_menu_item_action_area.xml (OK - compressed)
>>  1878804 res/layout/design_navigation_item.xml (OK - compressed)
>>  1879186 res/layout/design_navigation_item_header.xml (OK - compressed)
>>  1879517 res/layout/design_navigation_item_separator.xml (OK - compressed)
>>  1879844 res/layout/design_navigation_item_subheader.xml (OK - compressed)
>>  1880231 res/layout/design_navigation_menu.xml (OK - compressed)
>>  1880609 res/layout/design_navigation_menu_item.xml (OK - compressed)
>>  1881116 res/layout/notification_media_action.xml (OK - compressed)
>>  1881527 res/layout/notification_media_cancel_action.xml (OK - compressed)
>>  1882005 res/layout/notification_template_big_media.xml (OK - compressed)
>>  1882747 res/layout/notification_template_big_media_narrow.xml (OK - 
>> compressed)
>>  1883472 res/layout/notification_template_lines.xml (OK - compressed)
>>  1884347 res/layout/notification_template_media.xml (OK - compressed)
>>  1884968 res/layout/notification_template_part_chronometer.xml (OK - 
>> compressed)
>>  1885372 res/layout/notification_template_part_time.xml (OK - compressed)
>>  1885772 res/layout/select_dialog_item_material.xml (OK - compressed)
>>  1886199 res/layout/select_dialog_multichoice_material.xml (OK - 
>> compressed)
>>  1886700 res/layout/select_dialog_singlechoice_material.xml (OK - 
>> compressed)
>>  1887202 res/layout/support_simple_spinner_dropdown_item.xml (OK - 
>> compressed)
>>  1887559 res/menu/menu_login.xml (OK - compressed)
>>  1887906 res/mipmap-hdpi-v4/ic_launcher.png (BAD - 2)
>>  1891092 res/mipmap-mdpi-v4/ic_launcher.png (OK)
>>  1893113 res/mipmap-xhdpi-v4/ic_launcher.png (BAD - 1)
>>  1897545 res/mipmap-xxhdpi-v4/ic_launcher.png (BAD - 1)
>>  1904619 res/mipmap-xxxhdpi-v4/ic_launcher.png (BAD - 3)
>>  1914156 resources.arsc (OK)
>> Verification FAILED
>>
>> Indeed it is not aligned. But when I try to re-align it, I get this:
>>
>>  1881710 res/layout/notification_media_action.xml (OK - compressed)
>>  1882121 res/layout/notification_media_cancel_action.xml (OK - compressed)
>>  1882599 res/layout/notification_template_big_media.xml (OK - compressed)
>>  1883341 res/layout/notification_template_big_media_narrow.xml (OK - 
>> compressed)
>>  1884066 res/layout/notification_template_lines.xml (OK - compressed)
>>  1884941 res/layout/notification_template_media.xml (OK - compressed)
>>  1885562 res/layout/notification_template_part_chronometer.xml (OK - 
>> compressed)
>>  1885966 res/layout/notification_template_part_time.xml (OK - compressed)
>>  1886366 res/layout/select_dialog_item_material.xml (OK - compressed)
>>  1886793 res/layout/select_dialog_multichoice_material.xml (OK - 
>> compressed)
>>  1887294 res/layout/select_dialog_singlechoice_material.xml (OK - 
>> compressed)
>>  1887796 res/layout/support_simple_spinner_dropdown_item.xml (OK - 
>> compressed)
>>  1888153 res/menu/menu_login.xml (OK - compressed)
>>  1888500 res/mipmap-hdpi-v4/ic_launcher.png (OK)
>>  1891688 res/mipmap-mdpi-v4/ic_launcher.png (OK)
>>  1893712 res/mipmap-xhdpi-v4/ic_launcher.png (OK)
>>  1898144 res/mipmap-xxhdpi-v4/ic_launcher.png (OK)
>>  1905220 res/mipmap-xxxhdpi-v4/ic_launcher.png (OK)
>>  1914757 resources.arsc (BAD - 1)
>> Verification FAILED
>>
>> Ultimately, it appears that my APK cannot be aligned by zipalign? I am 
>> using these options: -f -v 4 to align and -c -v 4 to verify.
>>
>> Is this a known issue with zipalign, or have I made some kind of insane 
>> error? Cheers.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving 

[android-developers] [Nearby] Can Ethernet android devices use Nearby

2016-06-16 Thread 'Jayant Chauhan' via Android Developers
Nearby is really cool. 
But can we also have android devices (STBs / docked tablets) on ethernet 
use Nearby and communicate with other devices on WiFi and Ethernet? Or do 
they have to be on WiFi?



-- 
 

Now in 23 countries
Download Zomato: iOS 
 · Android 
 · 
Windows 


This email is intended only for the person or the entity to whom it is 
addressed. If you are not the intended recipient, please delete this email 
and contact the sender.

-- 
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/43accfdc-a6e2-425a-bb0e-e7cc1775790f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.