Re: [android-developers] Concept of building a multiview phone application

2016-04-14 Thread Sašo Sabotin
It is a sample layout which I can choose at the project creation.

Dne četrtek, 14. april 2016 20.23.33 UTC+2 je oseba TreKing napisala:
>
> On Thu, Apr 14, 2016 at 12:26 AM, Sašo Sabotin  > wrote:
>
>> Is that a Tabbed activity, where I just put the tabs to the bottom and 
>> change their layout?
>
>
> Not sure what you mean by "Tabbed" activity.
>
> Have a look at the following:
>
> http://developer.android.com/intl/in/training/implementing-navigation/lateral.html
>
> http://developer.android.com/intl/in/reference/android/support/design/widget/TabLayout.html
> https://www.google.com/design/spec/components/bottom-navigation.html
>
>
> -
> TreKing  - Chicago 
> transit tracking app for Android-powered devices
>

-- 
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/66829e40-d89c-4732-8542-8a16ff56107c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How do I make my custom video app not exit when it's been idle for a while?

2016-04-14 Thread David Karr
I've assembled a custom video recorder app based on a common sample from 
Google.  You can see the entire source at 
https://github.com/davidmichaelkarr/android-Camera2Video/tree/refinements .

Except for an annoyance I recently posted about here (writes zero length 
file in addition to valid files), it works pretty well, except for the fact 
that when the app sits idle for a minute or so, it seems like it just goes 
away.

I imagine there's an idle timeout, perhaps related to the overall power 
management on the phone.

For this particular app, when it's running, I want it to never time out.  
What's the best way to make that happen?

-- 
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/f30e1598-6305-4ec4-bdcd-d3bf5d844b5a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Undocumented screen tags needed in Android Manifest to ensure app does not get filtered by default on Google Play Store for LG G3 (Clash of Clans affected too)?!

2016-04-14 Thread Chuck Moyes


I have a user with an LG G3 running Android 5 Lollipop whose Google Play 
store claims that my app is not compatible with his device, and so he 
cannot download the app from the Google Play Store.

As you can see here, the LG G3 family of devices are and were all 
compatible with my APK:



I did some digging, apparently LG G3 users are also having 
compatibility/filtering issues with Clash of Clans.

It turns out (and I kid you not) the device has an unorthodox screen 
resolution and undocumented screen density "640" that ostensibly is causing 
it to get filtered even though the Google Play Store UI has it listed as 
compatible:
http://stackoverflow.com/questions/25221643/app-not-visible-on-google-play-for-qhd-lg-g3

It's not in the documented list, and it's "blacklisted by default":
http://developer.android.com/guide/practices/screens_support.html

>From the aforementioned SO post, you have to manually add the screen 
density to the AndroidManifest using the compatible-screens tag 
(previously, my "vanilla" AndroidManifest did not have supports-screens 
tags and it also did not have compatible-screens tags).

What IS this crap?!

So I came up with what should be the most "permissive" screen resolution 
configuration possible (because my app is a 3D game that is actually 
resolution-independent, and so it should be able to run on any 
size/density/resolution screen):






















































I did this, going against Google's recommendation (I actually agree with 
Google's recommendation) because I really need my app to run on LG G3 
devices:

*Caution:* Normally, *you should not use this manifest element*. Using this 
> element can dramatically reduce the potential user base for your 
> application, by not allowing users to install your application if they have 
> a device with a screen configuration that you have not listed. You should 
> use it only as a last resort, when the application absolutely does not work 
> with specific screen configurations. Instead of using this element, you 
> should follow the guide to Supporting Multiple Screens 
>  to 
> provide scalable support for multiple screens using alternative layouts and 
> bitmaps for different screen sizes and densities.
>

However, when I upload the new APK to the Google Play Store, I now see that 
some (by some, I mean hundreds) devices are getting filtered (with no 
specified DPI):



I even tried adding screen tags for each screenSize without any 
screenDensity (e.g. ) to 
compatible-screens, despite my Android Studio IDE complaining that these 
tags needed to have screenDensity, but it did not work.

How can I distribute my app to LG G3 users using Google Play Store -- 
without filtering _other_ devices without specific screen densities?

In my opinion, there should not be undocumented screenDensity tags that are 
required -- and a permissive configuration shouldn't blacklist devices by 
default -- in other words, I should be able to distribute my app with a 
vanilla manifest that does not contain any special screen-related tags, and 
my app should run on all screen resolutions/sizes by default. Moreover, 
when Google Play Store says a device is compatible in the UI, it should not 
get filtered. These behaviors are creating real headaches for developers 
like Clash of Clans and myself.

-- 
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/cc4b5741-b2ef-4bdd-aa1e-d557b9729c6d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Avoid having fullscreen SearchView/Keyboard on landscape

2016-04-14 Thread Alexander Poets
Hey guys,

as the title suggests I'd like to get rid of the default fullscreen 
keyboard which appears when editing text in the landscape mode. Therefore I 
subclassed SearchView and overrode the onCreateInputConnection method like 
this:
public class APSearchView extends SearchView {

public APSearchView(Context context) {
super(context);
setIconifiedByDefault(false);
}

@Override
public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
outAttrs.imeOptions |= EditorInfo.IME_ACTION_SEARCH | 
EditorInfo.IME_FLAG_NO_EXTRACT_UI | EditorInfo.IME_FLAG_NO_FULLSCREEN;
return super.onCreateInputConnection(outAttrs);
}
}
The documentation 
 states 
you prevent the fullscreen ("extract mode") being triggered by setting the 
NoExtractUi flag in the imeOptions attribute. Regrettably this approach 
doesn't seem to work (using Marshmallow). Furthermore I tried to set the 
flag on an instance of SearchView directly as follows:
mSearchView = (SearchView)menu.findItem(R.id.search).getActionView();
mSearchView.setImeOptions(mSearchView.getImeOptions() | 
EditorInfo.IME_ACTION_SEARCH | EditorInfo.IME_FLAG_NO_EXTRACT_UI | 
EditorInfo.IME_FLAG_NO_FULLSCREEN);
This approach didn't work either. :( By now I'm pretty clueless about this 
usually easy-to-solve problem ... Does anyone of you know what else to do? 
I really appreciate any help you can provide!! :)

Yours sincerely,

Alex

-- 
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/3cca8a16-a535-45d9-8768-4ca41d0a0512%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Problem with installing android adt on eclipse

2016-04-14 Thread Sanil Khurana


i recently downloaded the android sdk but when i try to create a new 
android project in eclipse , it always shows the same error

[2016-04-15 01:22:40 - HelloWorld3] 
C:\Users\Admin\workspace\HelloWorld3\res\values\styles.xml:7: error: Error 
retrieving parent for item: No resource found that matches the given name 
'Theme.AppCompat.Light'.[2016-04-15 01:22:40 - HelloWorld3] [2016-04-15 
01:22:40 - HelloWorld3] 
C:\Users\Admin\workspace\HelloWorld3\res\values-v11\styles.xml:7: error: Error 
retrieving parent for item: No resource found that matches the given name 
'Theme.AppCompat.Light'.[2016-04-15 01:22:40 - HelloWorld3] [2016-04-15 
01:22:40 - HelloWorld3] 
C:\Users\Admin\workspace\HelloWorld3\res\values-v14\styles.xml:8: error: Error 
retrieving parent for item: No resource found that matches the given name 
'Theme.AppCompat.Light.DarkActionBar'.[2016-04-15 01:22:40 - HelloWorld3] 

the project is not created. i was using eclipse luna before, i reinstalled 
eclipse and now i have mars 2. i also deleted the latest packages from SDK 
manager. these are the only solutions i have found

another thing that i noticed is that eclipse is not working as it should 
after installing android sdk. for example the icon doesnt change. in the 
welcome page after installing sdk, it does not give me the option to choose 
from existing SDKs. when i click File -> New , there is no android 
application project, and i have to select project then click on android and 
then android application project. can someone pls help ??

-- 
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/c8df6cfb-e01e-4f06-8060-ad17a1a99dec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Google Group - C2C Vendors - Sales

2016-04-14 Thread Ankush Chaudhary
C2C Vendors - Sales - Join - https://lnkd.in/bNZvRfp

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


[android-developers] Show Google Play Games popup where user can edit his Gamer ID

2016-04-14 Thread TheJakpok
Hi, is it possible to show the edit profile UI in my app using 
GooglePlayGames API? I mean this native UI which I attached at the bottom 
of message. I can show it in default Google Play Games app but it looks 
like a part of GPG API. If so, which method I should call to open this 
window?

Regards,
Jakpok





-- 
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/4b504376-c485-45f8-9fd4-e9182b73f0a7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Concept of building a multiview phone application

2016-04-14 Thread TreKing
On Thu, Apr 14, 2016 at 12:26 AM, Sašo Sabotin  wrote:

> Is that a Tabbed activity, where I just put the tabs to the bottom and
> change their layout?


Not sure what you mean by "Tabbed" activity.

Have a look at the following:
http://developer.android.com/intl/in/training/implementing-navigation/lateral.html
http://developer.android.com/intl/in/reference/android/support/design/widget/TabLayout.html
https://www.google.com/design/spec/components/bottom-navigation.html

-
TreKing  - Chicago
transit tracking app for Android-powered devices

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


Re: [android-developers] How can my app know if I open Facebook?

2016-04-14 Thread TreKing
On Mon, Apr 11, 2016 at 8:56 AM, Vlad Pintea  wrote:

> Basically, for starters, I need a function or something similar for my app
> to recognize if I open applications on my device (the most important one
> being Facebook). For example, once I open Facebook, the app should send me
> a message which tells me, "Facebook, Opened".
>
> I know I first need to use a service, so I can put the app in background
> and open Facebook, but I have no idea where to start from.
>
> Can anyone suggest me some tutorials or even an idea on where to begin?
>
I don't think this is possible (at least not anymore), but you could look
at:

http://developer.android.com/intl/in/reference/android/app/ActivityManager.html
http://developer.android.com/intl/in/reference/android/content/pm/PackageManager.html

If such a thing were possible, it'd be in one of those.

-
TreKing  - Chicago
transit tracking app for Android-powered devices

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


[android-developers] Very Urgent ::::::::::Microsoft SCCM Admin , Remote Project .....Positions – 10

2016-04-14 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: Microsoft SCCM Admin *

*Requirement*
This position will be primarily responsible for the management of the
Microsoft System Center Configuration Manager (SCCM) environment in the End
User Computing Services group. Responsibilities include assessing and
remediating client health issues, software deployment, patching and acting
as an escalation point or SME for complex technical issues or
troubleshooting. This includes analyzing repetitive and troublesome issues
to determine trends, opportunities for proactive action, and
recommendations for continuous improvement. Candidate must be ready to work
in 24x7 shift based Windows Admin patch maintenance and security compliance
support work. Candidate must have expertise is server patch maintenance
tools SCCM and Shavlik. Should have experience in working with Different
versions Of Windows Server operating systems. The Windows administrator
needs to be a work independently with various application teams for
implementing security and maintenance compliance on servers. Effective
communication with the IS Application teams is critical to achieving
success with this position.

The Windows administrator’s responsibilities will include configuration,
maintenance, support, troubleshooting, issue remediation for GPO, Security
patches and MSB of all production and test Windows servers.  Maintaining
the highest availability of all systems is of utmost priority. Period /
scheduled after hours support of these systems is required.



*Required Qualifications:*



• Bachelor’s Degree in Computer Science or Information Systems
• Strong analytical skills with the ability to troubleshoot issues and
facilitate improvements based on root cause analysis
• 6+ years of relevant SCCM work experience.
• 2+ years in a lead/senior engineering role
• 3+ years direct experience with Active Directory relating to Group Policy
and end point management.
• Competent in SQL to develop queries and reports as needed.
• Self-starter with the ability to manage projects and other tasks under
minimal supervision.
• Must be a team player, with exceptional communication skills, willing to
work with others in the group and the rest of the IT organization
• Ability to identify and implement initiatives to improve the IT
environment.
• Strong troubleshooting skills and ability to diagnose problems across
multiple disciplines.
• Experience with Power Shell and VBscript
• Expert in handling mix mode Windows 2000, Windows 2003, Windows 2008,
Windows 2012 environment from server Administrator perspective.

• Knowledge on Active directory, GPO, Domain users, Administrating users
and groups and given appropriate permissions and privilege to access.

• Experience in creating and implementing new GPO for various domains.

• Experience in Server hardening, security permissions, User rights
assignments on windows 2003 and windows 2008 servers.

• Experience in Active directory in windows 2003 and 2008 servers.

• Well understanding about the PCI /SOX PHI compliance concepts.

• Expert Knowledge of Security patches installation process on server
environment.

• Vulnerability management and remediation on Windows servers.

• Good Knowledge of third party vendor applications such as Web and JAVA
applications.

• Familiarity with VMware concepts and how they apply to a highly
virtualized environment



*Additional Desired Qualifications:*
• Prior experience in multiple IT disciplines (Networking, Hardware and
Windows Server OS).
• Experience with application packaging and distribution







*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

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


[android-developers] Woudl it be interesting to know whether a repackaged app's code is modified?

2016-04-14 Thread Lisa
Hi all,

I just wonder: would it be interesting to know whether a repackaged app's 
CODE is modified?

Say, attacker repackaged an app. but he just replaced its icon with a new 
one but did not modified its code. 

Then, for* a user's point pf view*, whether it would be useful to 
specifically know this app's code is modified? or just know the app is 
repackaged is enough (does not concern about the code being modified or 
not)? This is a more HCI question. 

I am just curious about user's point of view: (1) know the app is 
repackaged; or (2) not only know the app is repackage but also know the 
app's code is modified (since some reapckaged app's code is not modified). 

Whether (2) is useful? 

Thanks!

Lisa







 

-- 
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/30815fd0-c8d8-4704-8641-640485185a7a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Android Studio is Too Slow

2016-04-14 Thread Siamak Sarmady
Android Studio 2 does not work with JDK7. Would give me lots of strange 
errors.

-- 
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/9e9de474-be0f-4345-b57e-8fa19d36d6e6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Hotlist of Technocraft Solutions

2016-04-14 Thread Tapan Kushwaha
Hello,

Greetings!



This is with reference to the Updated Hot-List of “Technocraft Solutions”
consultants, who are actively looking for a new contract opportunity;
Please let me know if you have any suitable requirement for our active
consultants. Also please send me your Job Requirements at
*ta...@technocraftsol.com*  or you can reach me
at 614-664-7644







*S.NO* 

*Name*

*Technology*

*Location*

*Experience*

*Relocation*

*1*

*Prathima*

*Performance Tester*

*Dublin, CA*

*8+*

*Dublin or Bay Area, CA*

*2*

*Pragnesh*

*Business Analyst*

*Houston, TX*

*8+*

*Yes*

*3*

*Shravya*

*Busiess Analyst*

*Houston, TX*

*8+*

*Yes*

*4*

*Pooja*

*Business Analyst*

*Charlotte, NC*

*7+*

*Only NC*

*5*

*Shradha*

*Sr. ETL Developer*

*Dallas, TX*

*11+*

*Only Dallas*

*6*

*Mayu*

*ETL Informatica*

*Plattsburgh, NY*

*7.5*

*Yes*

*7*

*Deepak*

*Informatica*

*Austin, TX*

*8*

*Yes*

*8*

*Saurin*

*ETL Informatica*

*Birmingham, IL*

*8+*

*Yes*

*9*

*Arjun*

*ETL Informatica*

*Auburn Hills, MI*

*8+*

*Yes*

*10*

*Nikitha*

*Informatica*

*Dallas, TX*

*7+*

*Yes*

*11*

*Krunal*

*ETL Informatica*

*Cary, NC*

*7+*

*Yes*

*12*

*Mrunali*

*Informatica*

*Irvine, CA*

*7+*

*CA, TX, FL, NC, AZ*

*13*

*Harish*

*Informatica*

*Chicago,IL*

*7+*

*Open*

*14*

*Arti*

*QA Automation Engineer*

*CA*

*7+*

*Open*

*15*

*Sundari*

*Sr. QA Analyst*

*Dallas, TX*

*7+*

*Dallas, TX*

*16*

*Sowmya*

*PL/SQL*

*Dallas, TX*

*8+*

*Yes*

*17*

*Rama*

*PL/SQL*

*Tamha, FL*

*7+*

*Yes*

*18*

*Ami*

*SQL/BI Developer*

*Piscataway, NJ*

*7+*

* Open*

*19*

*Anusha*

*MS SQL Server SSIS/SSRS*

*Houston, TX*

*7+*

*Yes*

*20*

*Gunnemouni*

*MS SQL Server SSIS/SSRS*

*Dallas, TX*

*7+*

*Yes*

*21*

*Sree Shravya*

*SQL SERVER / MSBI*

*Houston, TX*

*8+*

*Yes*

*22*

*Merilena*

*Service NOW*

*Dallas, TX*

*7+*

*Yes*

*23*

*Kumar*

*Java*

*Dallas, TX*

*7+*

*Yes*

*24*

*Nil*

*Oracle DBA*

*MD*

*6+*

*Yes*

*25*

*Gaurav*

*Peoplesoft Admin*

*Watertown, MA*

*11+*

*Prefer TX*



Looking forward to do Business with you.



Thanks,



*TAPAN*

*Business Development Manager*

*Technocraft Solutions LLC*

7000 parkwood Blvd, Ste#200G

Frisco,TX,75034

Email: ta...@technocraftsol.com

www.technocraftsol.com

www.xdimensiontech.com

Partner with XDimension Technology

Yahoo Id:Tapan_technocraft

Gmail Id: Tapan.technocraft

Contact: 614-664-7644

Fax: 866-360-3962

-- 
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/CA%2BRjhA_W%3D-s1v%3DRp83Tx7d2twLNYyRckMshN8P7j_Zbj%3Dun%2BZg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Req:::::::::::::IBM MDM Architect,Louisville , KY , 8+ Months

2016-04-14 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: IBM MDM Architect*

*Location: Louisville , KY*

*Contract: 8+ Months *



*Requirement:*

*Role Description  *

· IBM MDM Arch

*Competencies   *

· IBM Master Data Management



*Experience (Years)  *

· 8-10



*Essential Skills *

· IBM MDM



*Desirable Skills *

· Arch exp



*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

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


[android-developers] Re: Custom view for Tablayout's items

2016-04-14 Thread Sašo Sabotin
The question is: How can I see that tap effect to be visible also when I 
click on the image?

-- 
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/6739f352-5408-4419-8606-73ccdf7e6185%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Groups for C2C Vendors - Sales

2016-04-14 Thread Ankush Chaudhary
C2C Vendors - Sales - Join - https://lnkd.in/bNZvRfp

-- 
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/CAEUFWB_m0My%2BF%3D1X2GH%3DSTfuMeZ1F8sbWMah28orOCq_biJOgQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Req:::::::::::::SAP Basis Lead, Montvale, NJ , 12+ Months

2016-04-14 Thread sudhanshu pandey
*Hi There,*

*I am technical recruiter and I am looking for Relevant consultant for
below job description, if interested please let me know the hourly rate you
are looking for below mention job position.*

*Job Title: SAP Basis Lead*

*Location: Montvale, NJ *

*Contract: 12+ Months *



*Requirement:*

· SAP BASIS : Systems Management ...

· SAP BASIS : Systems Management - ABAP Systems



*Experience (Years)*

· 10 & Above



*Essential Skills *

· SAP Basis



*Desirable Skills *

· SAP Basis



*Thanks & Regards,*
--



Nityo Infotech Corp.
666 Plainsboro Road,

Suite 1285

Plainsboro, NJ 08536



*Sudhanshu Pandey Sr. Technical Recruiter*

Desk : 609-853-0818 X 2126
Fax :   609 7995746

*sudhansh...@nityo.com   *
*www.nityo.com *
*Gtalk : sudhanshu.intime*

-- 
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/CAEZkQ%2Bjvv%3DQQ03b_gRxN4y8gh65NBLAw2tBqMK6%2BaLpkaqX3Ow%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Custom view for Tablayout's items

2016-04-14 Thread Sašo Sabotin
Hi everyone!

I created a custom view for TabLayout items, where I have a pictured and 
the text below it (ImageButton + TextView). Original tabs have only text 
and when you tap on one tab, you can see some fade effect by default in 
gray color which gives you the feeling that you tapped on the tab. Since I 
made the custom view for tabs, the fade effect is still there, but only 
when I click somewhere around the picture layer and not when I hit the 
picture layer. The fragment is switched because I made the click event that 
switches to proper fragment, because by default the switch wasn't working 
while clicking on imageButton.

Thank you in advance!

-- 
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/93e93844-ce56-43f1-967a-6407446fb804%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent req for Core Java/Oracle Developer @ Weehawken, NJ

2016-04-14 Thread Shaik Sadiq
Hi,

Hope you are doing well !!!

I have an urgent requirement for a *Core Java/Oracle Developer..* Please
let me know if you have any consultants and get back to me with their
updated resume in .doc format immediately. Given below is the job
description.



*Job Title: Core Java/Oracle Developer*

Location: Weehawken, NJ

Duration: 6+ Month

Visa Status: USC/ GC/ H1B



*MUST and Mandatory Skills:*

- JDBC, Multithreading, XML, JAXB

- PL SQL, oracle performance tuning

- Good communication





*Sadiq Shaik*

ASAP Solutions Group LLC,

678-221-4992 (ext) 217
ssh...@myasap.com 

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


Re: [android-developers] Can't install my apps from Play Store (Error Code: -505)??

2016-04-14 Thread Brett Stuart

Found a way around,

I had to change 




To




Thats it.

Hope this helps someone.





On Thursday, 14 April 2016 09:11:40 UTC+2, Brett Stuart wrote:
>
>
> Thanks for your reply, 
> I will have a look at the logcat, 
> The thing I'm not understanding is that installing from the Play Store I 
> can install only one of any of the 8 apps.
> For example: if I install app A from PS then delete it, and install it 
> again it works fine, but if I install app A and then also try to install 
> app B or C it 
> gives me the error.
> If it was a user issue, shouldn't app A not install a second time from PS 
> after I uninstall it? 
> When using Android Studio they all work fine I can run and install all 8 
> apps on the same device but the error only happens when installing from the 
> PS.
> This only started from Lollipop.
> Please guide me if I'm not clear.
>
>
>
> On Wednesday, 13 April 2016 17:29:30 UTC+2, Marina Cuello wrote:
>>
>> Just a wild guess... Starting from Lollipop you get the multiple user 
>> accounts.
>> If you have several users on the device (including Guest user) and run an 
>> app from Android Studio, it installs on every user's "sandbox". 
>> But... if you delete the app by hand on with some user, it STILL exists 
>> on the other users' account. That could give you a confusing error message 
>> when installing the Release version.
>> Anyway, check on the logcat to see if you can get more info about your 
>> specific error.
>>
>> Marina
>>
>>
>> On Wed, Apr 13, 2016 at 9:17 AM, Brett Stuart  
>> wrote:
>>
>>> I have one application I duplicate with different customer's logos etc. 
>>>
>>> I cant find any duplicate package names in any of the apps, all are 
>>> unique.
>>> I have eight of these apps and it allows me to install one only, and the 
>>> rest I get the error.
>>>
>>> Strange thing that it works on KitKat but not Lollipop+ when I download 
>>> from the playstore.
>>>
>>> I've searched for any reference to "Error Code: -505" but not getting 
>>> much.
>>>
>>> Has anyone else experienced this since Lollipop?
>>>
>>> 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-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/504d74ca-ac97-4353-a2ad-89f5ea65a11a%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/6cdd3c79-9fc5-45ee-9865-8ea4231a3f5f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: WebView

2016-04-14 Thread TwoPlayers
ok tanks!!

Em quinta-feira, 14 de abril de 2016 05:52:02 UTC-3, Matthew Delong 
escreveu:
>
> i used this page to assist on making a site within webview and worked 
> really well. Hope it helps
>
> https://developer.chrome.com/multidevice/webview/gettingstarted
>
> On Thursday, April 14, 2016 at 3:29:37 AM UTC+1, TwoPlayers wrote:
>>
>> I'm using webview to make an app for my website, this app enters the URL, 
>> plus the upload system does not work I click anything happens I need help 
>> please! I'll leave the code I used below, thanks!
>>
>> String url ="http://www.SiteHere.cf;;
>> WebView view=(WebView) this.findViewById(R.id.webView);
>> view.getSettings().setJavaScriptEnabled(true);
>> view.loadUrl(url);
>>
>>
>>

-- 
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/cc9abce5-7c79-4a20-9045-983d3fc71603%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Is this a Gradle Update Requirement?

2016-04-14 Thread Vinícius Filenga
SOLVED: It was all related to Gradle version. Just had to update it.

On Wednesday, April 13, 2016 at 11:33:57 AM UTC-3, Vinícius Filenga wrote:
>
> Hello guys,
>
> What is the easiest way to read the messages completely (you can see that 
> some are cut) and to track these errors in the source code?
>
> Just to clarify, this is an app I need only change the address and 
> authentication data from a web service that it consumes, and generate the 
> apk again. However, when trying to compile in debug mode to test on the 
> emulator, these errors prevent me to carry on.
>
>
>
> Thank you in advance!
>

-- 
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/bb2901ab-4691-4aa1-b432-0dd5328b7457%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: webview adds extra horizontal space in the screen

2016-04-14 Thread Tasneem Bohra
Hello Wendel, 
I am still facing this issue for device lower than L. 

On Saturday, 16 October 2010 02:59:15 UTC+5:30, Wendel Assis wrote:
>
> Hi all,
>
> I'm using webview to display local html content. The text fits the 
> screen width, but the user is able to navigate horizontally where there is 
> only blank space left. However, there is no content to be shown as 
> everything fits the screen size. Does anyone know how can I avoid this 
> behavior? I mean, if all content is being show, how can I disable 
> horizontal navigation.
>
> Regards,
> Wendel
>

-- 
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/2223cb1b-b9ac-47d5-ad39-c7bab5fb8713%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] How to block an automatic toast when i connect to a wi-fi on Android?

2016-04-14 Thread seonho lee
Hi guys

I always show an automatic toast  when i connect to a Wi-fi.
Is it possible to avoid this auto toast programmatically?

-- 
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/9431e533-019c-4448-879f-b7f959883606%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: WebView

2016-04-14 Thread Matthew Delong
i used this page to assist on making a site within webview and worked 
really well. Hope it helps

https://developer.chrome.com/multidevice/webview/gettingstarted

On Thursday, April 14, 2016 at 3:29:37 AM UTC+1, TwoPlayers wrote:
>
> I'm using webview to make an app for my website, this app enters the URL, 
> plus the upload system does not work I click anything happens I need help 
> please! I'll leave the code I used below, thanks!
>
> String url ="http://www.SiteHere.cf;;
> WebView view=(WebView) this.findViewById(R.id.webView);
> view.getSettings().setJavaScriptEnabled(true);
> view.loadUrl(url);
>
>
>

-- 
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/48795fe1-7a03-48b3-b11d-bdb6c2a0660c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Play Store Feedback ranking

2016-04-14 Thread Mario Barretta
Hello, 

Does anyone can help me to understand what is the standard by which google 
sorts the reviews received by an application in the Play Store? 

I can not understand what filters have been used since we have received a 
bad review with less helpful and oldest of the successive but it remains 
fixed always in the first position. 

Thanks to anyone who will help me

-- 
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/23becc51-4f9e-4b6a-af2a-1a1d45a5b50d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] ANdroid Marshmallow - Webview App crash

2016-04-14 Thread Ditto Nadar
Hi,

Need to know, why does the web view APP gets crashed in Marshmalow 6.0.1, 
it was supposed to be having a patch for the same problem. the APP crashing 
problem has still not stopped.

Please let me know the solution for the same as a developer what I can do 
to get a solution to this problem.

-- 
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/b7c991d7-58a5-453c-a00b-d9a94071f076%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Can't install my apps from Play Store (Error Code: -505)??

2016-04-14 Thread Brett Stuart

Thanks for your reply, 
I will have a look at the logcat, 
The thing I'm not understanding is that installing from the Play Store I 
can install only one of any of the 8 apps.
For example: if I install app A from PS then delete it, and install it 
again it works fine, but if I install app A and then also try to install 
app B or C it 
gives me the error.
If it was a user issue, shouldn't app A not install a second time from PS 
after I uninstall it? 
When using Android Studio they all work fine I can run and install all 8 
apps on the same device but the error only happens when installing from the 
PS.
This only started from Lollipop.
Please guide me if I'm not clear.



On Wednesday, 13 April 2016 17:29:30 UTC+2, Marina Cuello wrote:
>
> Just a wild guess... Starting from Lollipop you get the multiple user 
> accounts.
> If you have several users on the device (including Guest user) and run an 
> app from Android Studio, it installs on every user's "sandbox". 
> But... if you delete the app by hand on with some user, it STILL exists on 
> the other users' account. That could give you a confusing error message 
> when installing the Release version.
> Anyway, check on the logcat to see if you can get more info about your 
> specific error.
>
> Marina
>
>
> On Wed, Apr 13, 2016 at 9:17 AM, Brett Stuart  > wrote:
>
>> I have one application I duplicate with different customer's logos etc. 
>>
>> I cant find any duplicate package names in any of the apps, all are 
>> unique.
>> I have eight of these apps and it allows me to install one only, and the 
>> rest I get the error.
>>
>> Strange thing that it works on KitKat but not Lollipop+ when I download 
>> from the playstore.
>>
>> I've searched for any reference to "Error Code: -505" but not getting 
>> much.
>>
>> Has anyone else experienced this since Lollipop?
>>
>> 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-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/504d74ca-ac97-4353-a2ad-89f5ea65a11a%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/d6889a99-54ff-4fbb-87d3-001b8c495a4a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.