[android-developers] ,Urgent Need Senior Developer Woodland, Texas 6+Months

2017-03-01 Thread sandeep kumar
*Please share profile on sand...@nestarit.com <sand...@nestarit.com>Direct
contact number: (201) 448-1156*

We have new Job opportunity on  Consultant with our client. Please check
with below job description and If you are available please respond me back
with your updated resume and contact details.



VERY URGENT AND IMMEDIATE NEED



Job Title:  Sr. Developer– Spark Expert

Location:  Philadelphia, PA

Duration:  9 months



*Must Have strong spark Exp in candidate*



**PHONE SCREEN/ INTERVIEW THEN IN PERSON INTERVIEW**

Contract till the end of the  year, ongoing beyond December 2017!





 Sr. Developer– Spark Expert

•Java and/or Scala

•Spark / Spark Streaming / Spark SQL Experience

•And any combination of the following:

oMaven Experience

oGIT Experience

oHadoop Experience

oSQL Experience

oKafka Experience

oAWS Experience

oDocker/Kubernetes Experience



--
Warm Regards,
Sandeep kumar (Technical Recruiter)
NESTAR TECHNOLOGIES
Location: Jersey City, NJ
Direct: (201) 448-1156
Email: sand...@nestarit.com
Skype ID: sandeepnesta...@gmail.com
GTalk: sandeepnesta...@gmail.com
www.nestarit.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/CAL9LKr3CK_9_ffpSTdLOUQx1%2BuD5H_%3Dyz97rNWkd6r%3D3qPNZyQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] related to android inbuilt camera

2011-10-24 Thread sandeep kumar
i m creating one camera application,in that i have one button ,when i
pressed that button the inbuilt camera  opens in landscape mode,i want
the orientation of camera to be based on the device orientation.How it
is possible?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Alternative Camera Interfaces

2011-10-24 Thread sandeep kumar
can u tell what exactly u want to do?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Minimize activity on back key press

2011-07-08 Thread sandeep kumar
On Back Key press i want to minimize the application, How can i do
this???

public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {

//Here i want to put minimize code.. pls give me this
statement

return true;
}
return super.onKeyDown(keyCode, event);
}

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to create a Text File

2011-07-08 Thread sandeep kumar
File root = Environment.getExternalStorageDirectory();
File textFile = new File(root, name.txt);

FileWriter writer = new FileWriter(textFile);
BufferedWriter out = new BufferedWriter(writer);
out.write(Your Data);
out.close();


This will create file in SD card

On Jul 6, 10:53 pm, Vishal vishaldab...@gmail.com wrote:
 I am creating an application in Android that will read data from a
 bluetooth rs232 device and transfer the data into a graph. I am not
 going to worry about the bluetooth part yet, but i want to test the
 function of my code and app. I want to create a text file of fake data
 so i could perform this task. First off, How would i create the actual
 text file? How do i write into the Text file? and finally How would i
 read the fake data into my code? I am very new to Android so it
 would be much appreciated if i could get some tutorial on how to do
 this.

 Thank you very much in advance

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en