[android-developers] Null Pointer Exception In Method Boolean.Org.Json.Jsonobject Do in background async task

2016-06-22 Thread abeer . shlby
I designed app to make order for pizza food restaurant
I show userid,menu id ,address,longtiude,latitude then press on button make 
order
Error show after I press button and found in async task doin background
It give me fatal exception error 
An error occurred while executing doInBackground()
and it show to me two lines have proplem
AddNewOrder.doInBackground(Summary.java:113)
AddNewOrder.doInBackground(Summary.java:77)
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 
'boolean org.json.JSONObject.getBoolean(java.lang.String)' on a null object 
reference
package com.pizza_final_project_app.pizza_final_project;

import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.AsyncTask;
import android.preference.PreferenceManager;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;
import org.json.JSONException;
import org.json.JSONObject;

import java.util.ArrayList;
import java.util.List;

public class Summary extends Activity {
SharedPreferences preferences;
private ProgressDialog pDialog;
//JSONParser jsonParser = new JSONParser();
boolean errorFound;
TextView textaddress;
TextView textlongtiude;
TextView textlatitude;
TextView text2;
TextView textuser;
Button btnorder;
private static final String TAG_SUCCESS = "success";
private static final String TAG = Summary.class.getSimpleName();

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_summary);
text2=(TextView)findViewById(R.id.textView3);
textaddress=(TextView)findViewById(R.id.textaddress);
textuser=(TextView)findViewById(R.id.textView4);
textlongtiude=(TextView)findViewById(R.id.textlongtiude);
textlatitude=(TextView)findViewById(R.id.textlatitude);
Intent i = getIntent();
String id = i.getStringExtra("Data4");
String address = i.getStringExtra("Data8");
String longtiude = i.getStringExtra("Data9");
String latitude = i.getStringExtra("Data10");
text2.setText(id);
textaddress.setText(address);
textlongtiude.setText(longtiude);
textlatitude.setText(latitude);
preferences= 
PreferenceManager.getDefaultSharedPreferences(getApplicationContext());

String email=preferences.getString("email","");
textuser.setText(email);
pDialog = new ProgressDialog(this);
pDialog.setCancelable(false);
btnorder=(Button)findViewById(R.id.button2);
btnorder.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v)
{
addOrder(textuser.getText().toString().trim(), 
text2.getText().toString().trim(),
textaddress.getText().toString().trim(), 
textlongtiude.getText().toString().trim(),
textlatitude.getText().toString().trim());

}
});


}
//line 77
class AddNewOrder extends AsyncTask {

@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(Summary.this);
pDialog.setMessage("Making Order...");
pDialog.setIndeterminate(false);
pDialog.setCancelable(true);
pDialog.show();
}

protected String doInBackground(String... args) {
final JSONParser jsonParser = new JSONParser();
// Building Parameters
List params = new ArrayList();
params.add(new BasicNameValuePair("userID", args[0]));
params.add(new BasicNameValuePair("menuID", args[1]));
params.add(new BasicNameValuePair("address", args[2]));
params.add(new BasicNameValuePair("longitude", args[3]));
params.add(new BasicNameValuePair("latitude", args[4]));


JSONObject jObj = jsonParser.makeHttpRequest(AppConfig.URL_Order,
"POST", params);

try {
//Line 113
boolean error = jObj.getBoolean("error"); 
if (!error) {

errorFound=false;
} else {
errorFound=true;

}
} catch (JSONException e) {
e.printStackTrace();
}

return null;
}
protected void onPostExecute(String file_url) {
if (pDialog.isShowing()) {
pDialog.dismiss();
if (!errorFound){
Toast.makeText(getApplicationContext(), "User successfully registered. Try 
login now!", Toast.LENGTH_LONG).show();


Intent intent = new Intent(
Summary.this,
FinalResult.class);
startActivity(intent);
finish();
}
else{
Toast.makeText(getApplicationContext(), "An Error occoured!", 
Toast.LENGTH_LONG).show();

}
}
}

}
*/
private void addOrder(final String userID, final String menuID, final 
String address,
final String longitude, final String latitude) {

new AddNewOrder().execute(userID, menuID, address, longitude, latitude);

}

}



Class AppConfig
package com.pizza_final_project_app.pizza_final_project;

public class AppConfig {

public static String URL_Order = "
http://amit-learning.com/myPizza/Api_v2.php?functi... 
";

json parser
package com.pizza_final_project_app.pizza_final_project;


[android-developers] Need a BA with Pharma Experience

2016-06-22 Thread Jadhav Ashok
*Need a BA with Pharma Experience*

*New Haven, CT.*

*NEED VISA COPY ALSO for H1-B*




   - 7+ Yrs of Business Analysis Exp
   - Must have Pharma Exp
   - Must have MDM Exp

-- 
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/CAMcGdG%2B09urwCfKMvnL1xOhvVweQqqPHSbpPkpPTFjUB%2BfCNeA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Problem hiding the title bar

2016-06-22 Thread ERPMusicVideos
Hi, dear people :)

I'm having some trouble here. I've been trying to hide the title bar (which 
says the name of the app) and also maybe the bar which has the clock, 
battery, signal, icons etc. The bottom bar with back and home should stay. 
I've tried like 10-15 different tutorials but I can't seem to get rid of 
it. Tried to change the theme or whatever it was to NoTitle, didn't do 
anything. Also tried many other things. I can't figure out what I'm doing 
wrong. I'm a newbie, must mention that though. The problem might be 
something really easy, yet hard to spot for me.

Can anyone check my code and see what's wrong? I'd really appreciate your 
help. Here's a link to my Android Studio project (couldn't upload here 
since size limits):

http://www97.zippyshare.com/v/uAO4Xxny/file.html

Thank you in advance, my greatest appreciations if anyone's willing to help 
& happy holidays in case your country celebrates anything at this time :)

Greetings!

-- 
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/6e2656ba-a635-454f-a12d-9194d7f17c1e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hiring for SAP HR Consultant | Los Angeles, CA || 3 + Months

2016-06-22 Thread USIT Recruiter
Hi

Please lookup the below position and if you feel comfortable ,then please
send me your updated resume



Position: SAP HR Consultant


Location: Los Angeles, CA

Duration: 3 + Months

Customer: HCL America




I am searching for an SAP Consultant that is specialized in SAP Payroll and
Time. This is a 3 + month role for immediate start.




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


[android-developers] Looking for WebSphere Portal Admin in Saint Louis, Missouri

2016-06-22 Thread SALMA BHAT
Hi Partners,

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

*Skill Set*

WebSphere Portal Admin

*Work Location*

Saint Louis, Missouri

*Special Instructions*

NA



*Job Description*


Position: WebSphere Portal Admin
Location: Saint Louis, Missouri


Main Accountabilities
• Supporting WebSphere Portal, Web Content Management, WebSphere
Application Server
• Designing/Creating new portal pages, Adding/Configuring portlets, Content
syndication from one environment to another, User provisioning
• Applying fixes/fixpacks, Upgrades/Migrations based on the need/requirement
• Support WebSphere Portal deployments from development to pre-production
and production environments
• Troubleshooting performance problems considering infrastructure, database
and other portal interfaces
• Supporting production environment during non-business hours
• Installing/Configuring/Supporting Webservers - Apache, IHS
• Technical Support to application developers
• Documenting all the changes/issues/resolutions
Knowledge, Skills and Experience
• 6-8 years WebSphere Portal experience
• Strong expertise performing WebSphere Portal administration in a cluster
environment on Linux
• Proven experience installing, upgrading and supporting WebSphere portal
with Oracle RDBMS as a backend database and Apache/IHS as frontend
webserver.
• Good understanding of web analytics
• Must have completed at least 2 upgrades/migrations
• Experience with xmlaccess, wsadmin, jacl, jython, perl, and shell
scripting
• Fluent in English
• Knowledge in other supporting products such as Splunk, Omnifind,
SVN/Maven/Artifactory is preferred
WebSphere Portal Administration certification is preferred


Naseer
Desk : 609-853-0818 Ext: 2184
naseer.ah...@nityo.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/CAJ0KNK9VPwuHgX5i27nwTGMB-GoRgB1koV4Zod74x6L8Bn2ZRw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How to develop an Android SDK in Android Studio

2016-06-22 Thread Del Merritt
*Q:* What are the steps and project layout requirements in Android Studio 
to develop and maintain an distributable SDK that is itself not OSS?

*Details:*

There's lots of good info here and at stackoverflow (where I've posted this 
question as well), but none of it seems to address my specific situation. 
Which is:

   - A large body of legacy C/C++ code that has it's own legacy build 
   system, which happens to be cross-compiler friendly
   - A working JNI configuration of glue, which when combined with the 
   above, results in
   - Our "SDK", which presents as an .aar file; it is not open source, and 
   thus the end user/developer cannot (re)build the SDK
   - A Sample Application, which we will distribute with source and can be 
   used as a functional example of how to use our SDK
   
We started all of this in the days of Eclipse, before there was an Android 
Studio. Then and today the build process has a bunch of manual steps; we 
are currently using Android Studio 2.1.2. The goals are:

   - Generate a black-box SDK suitable for depolyment to end user 
   developers along with the sample code
   - In house, be able to debug both the SDK and sample code with a minimum 
   of fuss
   
The current manual steps look like this:

   1. Build the legacy code, generating a .a that currently is ARM specific 
   (still need to add x86 and someday maybe mips support, if anyone is using 
   that...)
   2. Run ndk-build (we currently hard code the use of NDK r9d) that knows 
   where to find the .a from step 1 and results in a .so suitable for JNI
   3. Copy the .so to the SDK Android Studio project's 
   src/main/jniLibs/armeabi
   4. Do a "Build:Rebuild Project", generating a .aar file
   5. Copy the .aar to the Sample code project's libname-debug/ directory
   6. Do a "Build:Rebuild Project" and/or "Build:Build APK" and debug on 
   our various devices as necessary
   
I accept that I may be stuck with manually doing step 1 forever - that's 
the price of "legacy" - and perhaps step 2. But it would be really nice to 
be able to improve steps 3-6. In so doing, I want any deliverable Gradle 
files to work for our in-house developers who *can* see inside the SDK as 
well as our end-user developers who *cannot* see inside the SDK.

TIA for any pointers to existing topics I missed; the search terms of 
"SDK", "developer" and "gradle" all return lots of results, of course, 
which makes it harder to find the needle in the haystack...

-- 
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/7db3cbd0-a7f2-450e-a798-5a0d292ab09f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] How to force an update of an App

2016-06-22 Thread Marina Cuello
Tell them to mark your app as auto-update and then never add a new
permission on your manifest.
https://support.google.com/googleplay/answer/113412?hl=en

Marina

On Wed, Jun 22, 2016 at 9:47 AM,  wrote:

> Hi Dev team,
>
> We have a Mobile Capture app published in Play Store. Our challenge is to
> force the update and installation silently and transparent to the Mobile
> User. The application is going to be used by Street Vendors in a developing
> country, and we would like them to have any manual interaction during the
> app update process.
>
> regads,
>
> --
> 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/c5c290c3-733a-4dc6-bf4c-99e4a823e341%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/CACaNmX3tBmz_cpgwRKrvHaiEDFi3EJACHL9NtRg%2B39jzbd_j-g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Camera crashes when launched with ACTION_IMAGE_CAPTURE

2016-06-22 Thread Yeral Yamil
I'm having the same issue. Did you find a way to solve it?

On Monday, October 5, 2015 at 6:56:56 PM UTC-4, Deepak Mishra wrote:
>
> My app is using the following code to launch the camera app to capture an 
> image and return a bitmap :
> Intent intent = new 
> Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
> intent.putExtra("return-data", true); 
> getActivity().startActivityForResult(intent, 
> IntentExtraConstants.WRITE_REVIEW_PICTURE_RESULT);
>
>
> It worked fine on all devices before 5.0. But on some devices, camera is 
> launched; but as soon as I capture the image, camera app crashes with the 
> following logs :
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: FATAL EXCEPTION: main
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: Process: 
> com.google.android.GoogleCamera, PID: 20473
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: 
> java.lang.NullPointerException
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> com.google.common.base.Preconditions.checkNotNull(Preconditions.java:213)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> com.google.common.base.Optional.of(Optional.java:85)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> com.android.camera.captureintent.state.StateSavingPicture.onEnter(StateSavingPicture.java:77)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> com.android.camera.captureintent.stateful.StateMachineImpl.jumpToState(StateMachineImpl.java:62)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> com.android.camera.captureintent.stateful.StateMachineImpl.processEvent(StateMachineImpl.java:110)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> com.android.camera.captureintent.state.StateReviewingPicture$1.onSessionPictureDataUpdate(StateReviewingPicture.java:239)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> com.android.camera.session.CaptureSessionManagerImpl$SessionNotifierImpl$10.run(CaptureSessionManagerImpl.java:235)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> android.os.Handler.handleCallback(Handler.java:739)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> android.os.Handler.dispatchMessage(Handler.java:95)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> android.os.Looper.loop(Looper.java:148)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> android.app.ActivityThread.main(ActivityThread.java:5417)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> java.lang.reflect.Method.invoke(Native Method)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
>
> 10-05 17:12:12.058 20473-20473/? E/AndroidRuntime: at 
> com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
>
> 10-05 17:12:12.060 855-2948/? W/ActivityManager:   Force finishing 
> activity com.google.android.GoogleCamera/com.android.camera.CaptureActivity
>
>
>
> This crash is happening on Nexus 6 (Android 6.0) but not on Nexus 9 
> (Android 6.0). Camera app version is same on both devices (2.7.008).
>
> This crash is also happening on some Android 5.0 devices (Nexus 5), but 
> not on 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/97378bb3-2d76-4895-a001-bbce8f296ba2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need for Senior Support Engineer || Jacksonville, Florida (ASAP)

2016-06-22 Thread Dev Singh
*Hi,*



*Role : Senior Support Engineer*

*Work Location:* Jacksonville, Florida



*Skill:-*

· ITIL V3 Foundation,

· Shell scripting

· Python

· Perl

· SQL

· Java
Financial domain knowledge and experience of L2 Production Support

Thanks & Regards

*Dev Singh*


Phone: 609-853-0818 Extn: 2112

*Email*: de...@nityo.com 

   dev09...@gmail.com 

*Hangout: **devs09...@gmail.com *

*Skype : **dev.singh526*

www.nityo.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/CAP0s8vs-UKJHmj3PNiFTPQzu_3KYM%3Dedgcy6cb6oL4swcUYfYA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Looking for Mortgage J2EE in Charlotte, NC, USA

2016-06-22 Thread SALMA BHAT
Hi Partners

Please share local profiles as rate is not more than $50/hr.  only
with Mortgage
experience

*naseer.ah...@nityo.com *


*Skill Set*

Mortgage J2EE

*Work Location*

Charlotte, NC, USA

*Special Instructions*

NA



*Job Description*



Technical Analyst Job Description

The Technical Analyst is primarily responsible for interpreting the
functional requirements of a project into high/mid level technical designs
that will be consumed by the development teams. A major focus of the
Technical Analyst is working with vendors and Ally developers to create
technical specifications for system integrations at the web service level.
The Technical Analyst participates in projects from the discovery phase
throughout development and testing phases of the project.

Domain knowledge in Mortgage area is preferable.

Primary responsibilities and deliverables:
· Create mid level technical designs (ex: System Integration Diagrams,
System Process Flows, Sequence Diagrams, web service level Data Maps)
· Provide technical impact analysis for change requests, new applications,
and enhancements
· Review BRD and participate in JAR sessions to gather and clarify business
requirements, remove ambiguity
· Participate in JAD sessions to define vendor system integrations, and
facilitate clear understanding between vendor and Ally development teams
· Work with Architecture, Security, Business, and other Technology groups
as needed to define solutions
· Ensure Technical Analyst deliverables conform to all compliance and
security policies and procedures.
· Review and provide input to Systems Requirements Document (SRS), UI
Functional Spec (FUI Spec), and Architectural Design Document (ADD)
· Support through Development, Testing, and Deployment phases of the project
· Proactive, regular communications with business, technology partners, and
management to keep informed of status, changes, or issues
· Ensure Technical Analyst deliverables are completed according to defined
schedules and requirements

Qualifications:
· Extensive experience designing SOA services (SOAP & REST) and middleware
integration for large distributed enterprise applications, especially for
Bank or Financial industry. Experience of at least 2 years in service
design is a minimum requirement.
· Excellent analytical skills - especially when it comes to determining the
impact of requirements on system and service design.
· Experience working with UML Sequence Diagrams and in capturing interface
design as data maps.
· Hands-on programming experience in at least one object oriented
programming language is preferred.
· Experience with JSON, REST, XML, JAVA are preferred
· Experience working with business personnel (non - technical) in gathering
business requirements, goals, removing ambiguity and translating these into
system interface requirements for an IT system.
· Ability to explain technical issues and present proposed solutions
clearly in both technical and non-technical terms
· Experience working with onshore/offshore staffing model, flexible and
comfortable in a fast changing environment
· Highly organized and detail oriented, Excellent communication skills

-- 
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/CAJ0KNK9L5sY2TOTJqYgGgNhst1qONgHwUPc5%2BY9Sioes%3D%2BXJdA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Witch Laptop to buy

2016-06-22 Thread koder Blake
Get fastest, most powerful you can because java code is sooo slow. My actual 
computer is a 1.5 ghz dual core with 4 gb of ram and it won't run an android 
emulator without slowing down everything and it often crashes. Also check all 
the specs before buying. There are laptop very impaired like 6gb ram and 1.4 
ghz single core cpu. Have a tech savvy friend accompany you, it will be better.

-- 
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/01770713-f854-4a36-8a77-9a8e8ddf4fc9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Linux Administrator - Allentown, PA - Only locals

2016-06-22 Thread Jadhav Ashok
*Linux Administrator*
*Allentown, PA*
*Market rate*
*Only locals.  Immediate closure. *


Work with Application Migration Team to configure, test and troubleshoot
applications in Amazon Web Services as client is migrating 100+ workloads
to Amazon.
Linux -- MUST
PERL Scripting – HIGHLY DESIRED
Database Skills (SQL and / or Oracle) – MODERATE NEED
C# Coding – BENEFICIAL, BUT LOW NEED

-- 
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/CAMcGdGLfd0z3d2%3DhwyK%3DKf93s-AnicGCs9Vu9LA2C9d%2BUsR%3D1Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hi i am satish, i want code for videoviews in recycler , list of videos are playing in one recycler , how to do this one ,plz send me the code

2016-06-22 Thread koder Blake
Nothing worth it comes that way in this world. Google it first.

-- 
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/72f0449b-7792-41a6-a62d-ae8dc241ca72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgently looking for Test Data Management in Cincinnati, Ohio with infos

2016-06-22 Thread SALMA BHAT
Hi Partners,

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



*Skill Set*

Test Data Management

*Work Location*

Cincinnati, Ohio

*Special Instructions*

NA



*Job Description*



Note : We appreciate not to see any rejects at screening stage due to poor
quality.

Role Test Lead
Open Positions 1
Experience 5+Yrs
Skill Test Data Management
Duration 1 year
Location Cincinnati, Ohio
Approx. Start date 04th July 14


Detailed JD Bottom-line responsibility for TDM deliverables Coordination
with QA and other teams for TDM needs Transition plan and execution TDM
strategy and implementation Weekly status reporting Analyze physical data
model and data relationships for TDM Offshore coordination and review of
all deliverables Data validation post data refresh TDM tool evaluation, POC
and implementation TDM script development and execution for gold copy
creation and environment refresh Data validation post data refresh Physical
data model and data relationship analysis TDM tool usage

-- 
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/CAJ0KNK-23Eg4gDhmwMQKhGDo-wp0qNCcw%3DcWVU8aQ%2B%3DenXWfGQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Witch Laptop to buy

2016-06-22 Thread koder Blake
Wow trev! An old machine? I am still dreaming of such a setup.

-- 
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/b2865693-5c1e-498d-85ca-e2aa0a185477%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How to force an update of an App

2016-06-22 Thread pmiguel142001
Hi Dev team, 

We have a Mobile Capture app published in Play Store. Our challenge is to 
force the update and installation silently and transparent to the Mobile 
User. The application is going to be used by Street Vendors in a developing 
country, and we would like them to have any manual interaction during the 
app update process. 

regads, 

-- 
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/c5c290c3-733a-4dc6-bf4c-99e4a823e341%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] AsyncTask take forever after the tablet goes in Save Mode

2016-06-22 Thread Sylvain Tremblay
Hello All,

I wonder if some one did experience the same as me. I did build an 
application that makes Async call (for HTTPS and HTTP) request and
everything is fine while I am using the application. But when I leave my 
tablet to go in Save Mode then I wake-up my tablet, all my Async
call take forever to be executed (some time up to 15-20 second before the  
doInBackground() 

  
get call.

Does any one experience that problem? If so, how did you fix it?

Thanks,

Sylvain

-- 
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/4612c003-60f3-4faa-ad2c-e43ac016d968%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Hi i am satish, i want code for videoviews in recycler , list of videos are playing in one recycler , how to do this one ,plz send me the code

2016-06-22 Thread Trevor Page
No.
On 22 Jun 2016 13:04,  wrote:

>
> --
> 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/212f0a05-55ab-4202-99ab-00b3d7824b8e%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/CAG8Y82pZUg1u59MYv1Q%3DdTfgrwifKUXUJhwOAKNHC1VDwzqhew%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hi i am satish, i want code for videoviews in recycler , list of videos are playing in one recycler , how to do this one ,plz send me the code

2016-06-22 Thread adigarla . satheesh401


-- 
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/212f0a05-55ab-4202-99ab-00b3d7824b8e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
package com.example.sandroid.dance.Controllers;

import android.app.Activity;
import android.graphics.Rect;
import android.media.MediaPlayer;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.ProgressBar;

import com.example.sandroid.dance.R;

import java.lang.ref.WeakReference;
import java.util.Arrays;
import java.util.List;

import butterknife.Bind;
import butterknife.ButterKnife;

/**
 * Created by Ahmed on 12/15/2015.
 */
public class Adapter extends RecyclerView.Adapter {
List videos = Arrays.asList(
"http://techslides.com/demos/sample-videos/small.mp4;,
"http://download.wavetlan.com/SVV/Media/HTTP/H264/Other_Media/H264_test8_voiceclip_mp4_480x320.mp4;,
"http://download.wavetlan.com/SVV/Media/HTTP/MP4/ConvertedFiles/Media-Convert/Unsupported/dw11222.mp4;,
"http://download.wavetlan.com/SVV/Media/HTTP/MP4/ConvertedFiles/Media-Convert/Unsupported/test7.mp4;,
"http://techslides.com/demos/sample-videos/small.mp4;,
"http://download.wavetlan.com/SVV/Media/HTTP/MP4/ConvertedFiles/Media-Convert/Unsupported/test7.mp4;,
"http://download.wavetlan.com/SVV/Media/HTTP/MP4/ConvertedFiles/Media-Convert/Unsupported/test7.mp4;,
"http://techslides.com/demos/sample-videos/small.mp4;
);
WeakReference activityWeakReference;

public Adapter(Activity activity) {
this.activityWeakReference = new WeakReference<>(activity);
}

private Activity getActivity() {
return activityWeakReference.get();
}

@Override
public VideoViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()) .inflate(R.layout.videos_list_item_video, parent, false);


//try{
//holder.mVideoView.setMediaController(mediaControls);
//holder.mVideoView.setVideoURI(Uri.parse("android.resource://" + context.getPackageName() + "/" + R.raw.kitkat));
//} catch (Exception e){
//Log.e("Error", e.getMessage());
//e.printStackTrace();
//}
//holder.mVideoView.requestFocus();
//holder.mVideoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
//@Override
//public void onPrepared(MediaPlayer mp) {
//progressDialog.dismiss();
//holder.mVideoView.start();
//}
//});









return new VideoViewHolder(view);
}

@Override
public void onBindViewHolder(VideoViewHolder holder, int position) {
holder.videoUrl = videos.get(position);
holder.imageLoaderProgressBar.setVisibility(View.INVISIBLE);
holder.videoImageView.setVisibility(View.VISIBLE);
}

@Override
public void onViewRecycled(VideoViewHolder holder) {
if (holder == currentVideoViewHolder) {
currentVideoViewHolder = null;
holder.stopVideo();
}
holder.videoView.stopPlayback();
super.onViewRecycled(holder);

}

@Override
public int getItemCount() {
return videos.size();
}

public void onScrolled(RecyclerView recyclerView) {
if (currentVideoViewHolder != null) {
currentVideoViewHolder.onScrolled(recyclerView);
}
}

VideoViewHolder currentVideoViewHolder;

class VideoViewHolder extends RecyclerView.ViewHolder {
@Bind(R.id.video_play_img_btn)
ImageView videoPlayImageButton;
@Bind(R.id.lyt_image_loader_progress_bar)
ProgressBar imageLoaderProgressBar;
@Bind(R.id.video_feed_item_video)
CustomTextureVideoView videoView;
@Bind(R.id.video_feed_item_video_image)
ImageView videoImageView;

String videoUrl;

public String getVideoUrl() {
return videoUrl;
}

public VideoViewHolder(View view) {
super(view);
ButterKnife.bind(this, view);
videoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
@Override
public void onPrepared(final MediaPlayer mp) {
Log.v("Video", "onPrepared" + videoView.getVideoPath());
   

[android-developers] Share Via Copy To Clipboard Option Missing In Gallery ?????

2016-06-22 Thread stoney roberts
Hello 
I searched the forums but was unable to find a topic for this annoying 
issue i am facing.
I have used android and iOS devices and my last android Galaxy Note 3 as 
well as all my iOS devices have all had a COPY TO CLIPBOARD option in the 
gallery app. Well i have just upgraded my device to a new android phone 
running marshmallow 6.0.1 and when i am in the gallery app viewing my 
photos and want to copy one to the clipboard it is no longer there! When i 
click the share button i get everything else but that.. Sure i can just 
click messages, email , or something else but sometimes i rather copy my 
image to the clipboard and write an email first and then having the image 
on the clipboard already i can just paste it in the email and then i can 
turn around and with it kept on the clipboard can paste it in a text 
message or internet browser and it would remain on the clipboard until i 
copy something else.
Why has this feature been left out on Marshmallow?
This seemingly easy little feature i was so used to having on all my 
devices is missing now and driving my crazy!!! I can only hope some of you 
awesome developers on here will see a need for this as well and bring it 
back in an update Please

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/5c6ce3e1-c507-49d0-8fdd-740efe327432%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Google Player Development Account

2016-06-22 Thread sardar khan
its a one time fees

On Wed, Jun 22, 2016 at 1:19 PM, azhar bhatti 
wrote:

> Dear Friends,
>
> The $25 for registration , is a one time fees for any number of apps i
> make and post or is it for one app?
>
> Any reply given can be high appreciated.
>
>
> Regards
>
> Azhar
>
> --
> 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/830e59ea-6e14-42fa-af7f-8b4ecd36a1fb%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/CABHzXAScTXhHGYvaXiPyRjhpNa7yTp6k5RokRa8_NSqJ3qg4uw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Google Player Development Account

2016-06-22 Thread azhar bhatti
Dear Friends,

The $25 for registration , is a one time fees for any number of apps i make 
and post or is it for one app?

Any reply given can be high appreciated.


Regards

Azhar

-- 
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/830e59ea-6e14-42fa-af7f-8b4ecd36a1fb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: APK that is not zip aligned

2016-06-22 Thread Pasan Eramusugoda
Hi All,

I have resolved the issue.

What I did was simply run the zipalign twice. Mean you need to run zipalign 
again for firstly created output. 

On Wednesday, June 22, 2016 at 8:55:57 AM UTC+5:30, Pasan Eramusugoda wrote:
>
> Hi All,
>
> I'm facing an issue as mention in subject (more on attached image). I have 
> tried to manually zipalign but failed.
> Plz help me out on this.
>
> Note: There are two apk which having the same issue and was working fine 
> day before yesterday.
>
> For more information:
> I'm using the latest of android studio (v2.2 preview 3).
> Compile SDK version 24
> Build tools version 24.0.0
> Target SDK version 24
>

-- 
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/26c24e85-0179-492d-966f-0b8251df5fa9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] please guide me to fix this problem

2016-06-22 Thread niraj singh
i download android ANDROID STUDIO v2.1.2   during installation it failed to 
download ANDROID VIRTUAL DEVICE i had already checked the box to download 
AVD but still it shows an error message * "unable to create a virtual 
device:missing system image required for an avd setup"*

*now hoe shall i download the  avd.*


*kindly mail me if u guys have any solution *

-- 
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/034238c1-bdad-4551-bdb9-a3ccb8a12fec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: APK that is not zip aligned

2016-06-22 Thread Jonathan S
Known Issue.

On Tuesday, June 21, 2016 at 11:25:57 PM UTC-4, Pasan Eramusugoda wrote:
>
> Hi All,
>
> I'm facing an issue as mention in subject (more on attached image). I have 
> tried to manually zipalign but failed.
> Plz help me out on this.
>
> Note: There are two apk which having the same issue and was working fine 
> day before yesterday.
>
> For more information:
> I'm using the latest of android studio (v2.2 preview 3).
> Compile SDK version 24
> Build tools version 24.0.0
> Target SDK version 24
>

-- 
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/fc6d2c21-a423-4e5d-865a-3915e1759111%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Refactor com to country domain ke co

2016-06-22 Thread DO
I am unable to see how to refactor com to have two folders ke co from an 
existing project. Kindly assist me.

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/92831b00-116d-4954-8473-d43053a181f9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] using REQUEST_IGNORE_BATTERY_OPTIMIZATIONS without getting suspended

2016-06-22 Thread Contact Test
Is it possible to use REQUEST_IGNORE_BATTERY_OPTIMIZATIONS 

 without 
your app being suspended even though you have valid reasons which comply 
with the guidelines?
>From what I've read, all apps that request this permission are 
insta-banned, and google generally ignores all appeals so it's pretty much 
impossible to even use this permission.

Any help/guidance appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/8e015428-76df-4f17-b741-c45a404f726b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.