Re: [android-developers] Missing something when sizing images to support different screens

2016-07-01 Thread Mark Phillips
Can you post your layout files? Are you using dips in your layout files?

Mark
On Jul 1, 2016 7:02 PM, "Bob B."  wrote:

> I have been reading over this information, forums, developer site, etc.
> for the past week and still have been unsuccessful in fully understanding
> how to size images such that things appear acceptable on different sized
> devices.  Certainly there is something I am missing, as this can't be that
> difficult, can it?  If someone could please point me in the right
> direction, I would be ever so grateful.
>
> I am using qualifiers on the drawable and layout folders in an attempt to
> handle the various screen sizes and densities.
>
> I have created drawable-ldpi, drawable-mdpi, drawable-hdpi, and
> drawable-xhdpi
> I have created layout-w320dp, layout-w480dp, layout-w600dp, and
> layout-w720dp
>
> I have placed a copy of the layout I am dealing with in each of the layout
> folders so I can adjust each as needed.
>
> I have placed my graphics that I am testing with in their respective
> drawable folder.
>
> I initially designed my app using a Galaxy Tab 10" and scaled my graphics
> (png) files in GIMP with a dpi of 320 and sized to fit how I wanted them to
> look in the 10" environment.
>
> I then took the original graphic (unmodified) that was used for the
> previously mentioned image and made the mdpi version by changing the dpi to
> 160 and setting the pixel width/height to 1/2 of the previously mentioned
> image.
>
> For the rest, I followed the information from the design guide of...
>
> ldpi = .75 of the mdpi
> hdpi = 1.5 of the mdpi
> With the first image created being the xhdpi
>
> Question 1:  Should you scale all images such that the following are true,
> regardless of the dimensions of each image?
>
> - ldpi images should always be 120dpi
> - mdpi images should always be 160dpi
> - hdpi images should always be 240dpi
> - xhdpi images should always be 320dpi
>
> Here is an example of what I have done and what specifically is not
> working.
>
> I have a logo that is 400 x 400 and has a dpi of 320.  This image looks
> beautiful on my tablet and the image file resides in the xhdpi folder
> I then took a copy of this image and scaled it to 200 x 200 with a dpi of
> 160 for my mdpi version and placed the file in the mdpi folder.
> When viewing a 10" device in Android Studio, it looks great
> When viewing a phone 3-4" device in Android Studio, the logo in HUGE!
>
> My goal is basically this.
>
> If I have an image that takes up exactly 1/4 of my screen on a tablet in
> the lower left corner, I want that image to take up the same 1/4 of the
> screen on the smaller devices, not be huge, taking up pretty much the
> entire screen.
>
> Question 2:  I thought Android was supposed to down-sample the images of
> larger than what was needed so it would essentially scale things down for
> me, with a better goal of providing assets that are close to where they
> should be, which is what I am attempting to do.  Is this not the case?
>
> There has to be some formula / step that I am simply missing here so if
> anyone could shed some light on this for me, I would greatly appreciate it.
>
> Thank you all!
>
> Bob
>
>
> --
> 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/390111ec-3b70-4668-8d35-a688a974fe26%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/CAEqej2NJASgA7qZ0iEgyrFqDFCuDEiOwciOm0qatp8sp_9yxRg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Wi-Fi Direct without connections

2016-07-01 Thread andywumengfei
Recently I'm doing a project about broadcast my location infos (latitude, 
longitude, bearing and speed) from gps module in smartphone, then ppls or 
drivers who are closer to each other could get the distance and avoid the 
collision(Actually part of the VANET). I wanna use the Wi-Fi Direct to 
broadcast these infos without establishing connections among the devices. 
Just fill the infos into the name of Wi-Fi Direct ssid. Then a problem 
occurs that the delay is really long. When I switched on the Wifi Direct of 
one device, another one could find it after about 1 second. However it’s 
not enough when comes to the vehicular network. This problem became more 
terrible when changing the device name periodically. If anyone can tell me 
whether this method is feasible to do the collision avoidance job or not? 
If there are some better ways using android smartphones? Thanks a lot!

-- 
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/ddec455a-4cd2-49da-80d1-5717b576e5eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Missing something when sizing images to support different screens

2016-07-01 Thread Bob B.
I have been reading over this information, forums, developer site, etc. for 
the past week and still have been unsuccessful in fully understanding how 
to size images such that things appear acceptable on different sized 
devices.  Certainly there is something I am missing, as this can't be that 
difficult, can it?  If someone could please point me in the right 
direction, I would be ever so grateful.

I am using qualifiers on the drawable and layout folders in an attempt to 
handle the various screen sizes and densities.

I have created drawable-ldpi, drawable-mdpi, drawable-hdpi, and 
drawable-xhdpi
I have created layout-w320dp, layout-w480dp, layout-w600dp, and 
layout-w720dp

I have placed a copy of the layout I am dealing with in each of the layout 
folders so I can adjust each as needed.

I have placed my graphics that I am testing with in their respective 
drawable folder.  

I initially designed my app using a Galaxy Tab 10" and scaled my graphics 
(png) files in GIMP with a dpi of 320 and sized to fit how I wanted them to 
look in the 10" environment.

I then took the original graphic (unmodified) that was used for the 
previously mentioned image and made the mdpi version by changing the dpi to 
160 and setting the pixel width/height to 1/2 of the previously mentioned 
image.

For the rest, I followed the information from the design guide of...

ldpi = .75 of the mdpi
hdpi = 1.5 of the mdpi
With the first image created being the xhdpi

Question 1:  Should you scale all images such that the following are true, 
regardless of the dimensions of each image?

- ldpi images should always be 120dpi
- mdpi images should always be 160dpi
- hdpi images should always be 240dpi
- xhdpi images should always be 320dpi 

Here is an example of what I have done and what specifically is not working.

I have a logo that is 400 x 400 and has a dpi of 320.  This image looks 
beautiful on my tablet and the image file resides in the xhdpi folder
I then took a copy of this image and scaled it to 200 x 200 with a dpi of 
160 for my mdpi version and placed the file in the mdpi folder.
When viewing a 10" device in Android Studio, it looks great
When viewing a phone 3-4" device in Android Studio, the logo in HUGE!

My goal is basically this.

If I have an image that takes up exactly 1/4 of my screen on a tablet in 
the lower left corner, I want that image to take up the same 1/4 of the 
screen on the smaller devices, not be huge, taking up pretty much the 
entire screen.

Question 2:  I thought Android was supposed to down-sample the images of 
larger than what was needed so it would essentially scale things down for 
me, with a better goal of providing assets that are close to where they 
should be, which is what I am attempting to do.  Is this not the case?

There has to be some formula / step that I am simply missing here so if 
anyone could shed some light on this for me, I would greatly appreciate it.

Thank you all!

Bob


-- 
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/390111ec-3b70-4668-8d35-a688a974fe26%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] cant see the application in my phone

2016-07-01 Thread Nadav Babin
hi i developed application and uploaded it to google store, but when i 
installed the application i dont see the icon or my app in my phone.
is anyone know how to solve 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/eae79ab6-4bab-4229-8f4d-207ed022c4e9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Space Ball

2016-07-01 Thread Tritico


"Space Ball" is brilliant, bright game that put you into the beautiful 
scenery of open space. Astounding 3 -d effects, many traps and obstacles 
will keep you busy for hours of playing. You want to know how to play?! 
Just jump from platform to platform avoiding any mysterious obstacles 
straight ahead to the finish line. Changing world and flash situations will 
improve your speed and reflexes. Use your brain and make new strategies to 
get to the end of the level but keep in mind that with new level the heat 
will be raising. So control the Power Ball^^ and jump  to new heights. In 
the future, will create new worlds where you can test your skills.


https://play.google.com/store/apps/details?id=com.SpaceBa11


https://www.youtube.com/watch?v=cG3IYfuRHJQ=youtu.be




















-- 
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/c06feb09-829d-4ed8-a822-fa94919eaf43%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SharePoint Developer in Alpharetta, GA

2016-07-01 Thread vin


Hello!!!

We have an immediate contract opportunity for* SharePoint Developer* in 
*Alpharetta, 
GA*. Please find the details below.

If this interests you, please send your updated resume to vin *@atriait.com* 


 

*Location: Alpharetta, GA*

*Duration: 6-12 months*

 

*Required Skills:*

1. Good Impressive Communication Skills

2. Good Technical Hands On Experience in SP 2013 and Angular JS / Backbone 
JS or any Client Side Frameworks

3. Experience working with the JavaScript Object Model (JSOM) and Rest API 
features in SharePoint.  AngularJS and Bootstrap experience.

 

-- 
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/fba668ce-8110-4c22-b224-e4d716209406%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent Noob Question, Android Debugging

2016-07-01 Thread 'Anh Tuan Ha' via Android Developers
Hi, 

I am trying to get android.processing working with my 
smartwatch(moto360v1). First of all I do get in the state where Host and 
Destination are Connected. But when I open processing, it crashes down and 
Host gets disconnected.


this is the terminal skript

Tuan404notfound:~ anhtuanha$ adb forward tcp: localabstract:/adb-hub
Tuan404notfound:~ anhtuanha$ adb connect localhost:
connected to localhost:
Tuan404notfound:~ anhtuanha$ adb forward tcp: 
localabstract:/adb-hub

[android-developers] Phone than F2F Interview: Big Data Engineer || Chicago IL

2016-07-01 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

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



*POSITION: Big Data Engineer*

* INTERVIEW: Phone than F2F Interview*

*LOCATION: Chicago IL*

*DURATION:6 MONTHS*

*START :ASAP*





*Job Overview:*



Our  client is looking Java Software Engineers for their downtown Chicago
location. The development environment is server-side Java 7/8, with an
emphasis on distributed big-data processing (Hadoop/MapReduce) and cloud
deployment (AWS, Docker, Puppet).  There is some exposure to alternate JVM
languages such as Scala and Groovy.



Qualifications:

• Advanced object-oriented design skills, exposure to modern
design patterns.

• Knowledge of algorithms and data structures.

• Effective unit testing with JUnit and mock objects.

• Experience of persistence with relational and NoSQL data
stores.

• Familiar with Eclipse, Maven, GIT and CI servers (e.g.
Jenkins/Hudson, GO, Bamboo) Experience building REST web service clients
and servers.

• Excellent verbal and written communication skills.

• Comfortable and productive in an Agile team environment.

• Experience working with UNIX/Linux: RHEL, Debian, Ubuntu.



Advantageous:

• Experience designing and developing Map/Reduce applications
with Hadoop or Amazon EMR.

• Performance analysis and optimization of complex distributed
applications.

• Familiar with structured code reviews, e.g Gerrit, FishEye,
Crucible

• General AWS services experience with EC2 deployment services
such: as IAM, SWF, SNS, SQS, RDS, RedShift, Storm, akka, zookeeper, spark,
sqoop, flume)

• Automated deployment with Chef, Puppet, Docker.

• Experience with code hygiene tools such as CheckStyle, PMD,
JaCoC



Thanks,


-- 



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

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

Reipen Avenue # 255 Jersey City, NJ 07306 |

n...@apetan.com | www.apetan.com  |

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


[android-developers] RE: ENEXUS INC HOTLIST

2016-07-01 Thread Steve A
*Hi **,*
*Please let me know If you have any Corp-Corp positions available for my
Candidates. Please Send me Corp-Corp*  *Requirements to  **
  steve.aus...@enexusinc.com *

*S.NO *

*CONSULTANT NAME*

*SKILL*

*EXP*

*AVAILABLE*

*LOCATION*

*RELOCATION*















*1*

*SANTHOSH*

*.NET /SHAREPOINT ARCHITECT*

*15+ Years*

*Immediate*

*NY*

*OPEN*

*2*
*MADHU K* *SR INFORMATICA DEVELOEPR*

*8+ Years*

*Immediate*
*CA*

*Open*

*3*

*Meghan*

*Sr .NET DEVELOER*

*9+ Years*

*Immediate*

*NY*

*Open*

*4*

*M S*

*IIS WEB ADMIN  /DEV-OPS ENGINEER*

*8 Years*

*Immediately*

* AZ*

*Open*

*5*

*LAKSHMIKANTH*

*LEAD PERFORMANCE TESTER*

*12+Years*

*Immediately*

*IL*

*Open*

*6*

*SADHANA*

*SR INFORMATICA DEVELOPER/ IDQ DEVELOPER*

*8+ Years*

*Immediately*

*FL*

*Open*

*7*

*YATHESH*

*TERADATA ARCHITECT*

*13 Years*

*Immediately*

*GA*

*Open*

*8*

*MADHU*

*TABLEAU DEVELOPER*

*8+ YEARS*

*Immediately*

*CA*

*Open*

*9*

*ALEKYA*

*SALESFORCE DEVELOPER*

*8+ Years*

*Immediately*

*IL*

*Open*

*10*

*Surender*

*UI/UX Developer*

*8+ Years*

*Immediately*

*WI*

*Open*



*Email is the Best way to reach me*

*Steve Austin*




*E-Nexus Inc Email: steve.aus...@enexusinc.com 
Phone : 810-633-0007 24520 Meadowbrook Road,Suite # 250, Novi, MI 48375 Web
: www.enexusinc.co m*

-- 
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/CAAgwauH%3DLio-4c1PDkFayurM5aKHP%2BB6kvcAWaZW_SAVsWyLmg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] External menu sandwich button?

2016-07-01 Thread theodolite3
Hi,

Is there an easy way to have menu sandwich button outside actionbar or do i 
have to create it from scratch on my own? I want it to look the same as 
usual actionbar's sandwich button. It should turn into arrow when 
DrawerLayout is being opened. Is there some class like MenuButton in API, 
which would have method like 'turnToArrow' or should I do everything by 
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/a3edcccf-4c5f-43af-be63-93e0003ca31a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] AW: Access Problem External SD-Card Android 6.01

2016-07-01 Thread Susanne Kalliany
Hello,

Thanks a lot for your reply, but all permissions are already set to read/write 
sd-card.

But the permissions are for the built-in sd card (via 
System.getenv("EXTERNAL_STORAGE")) only.
I still cannot access the removeable sd-card (in the slot) from within my 
application written in Java.

Greetings from Austria,
Susanne

DI. Susanne KALLIANY - 
susanne.kalli...@tefis.at
TeFiS - www.tefis.at
Technische und forstliche Informationssysteme (Forstliche Software, GIS)
+43 (0)664 1424269
A-1040 Wien, Schaumburgergasse 11/13



Von: Paolo Turatti [mailto:paolo.tura...@gmail.com]
Gesendet: Freitag, 01. Juli 2016 15:42
An: Android Developers
Cc: Susanne Kalliany; rai...@kalliany.at
Betreff: Re: Access Problem External SD-Card Android 6.01

Hello, did you check your app permissions?
In Android 6 many things have changed on permissions, go under android 
settings, applications, select you app, select rights, give the applications 
the right to read and write external storage, then on the top right corner, all 
permissions.
Open you app again and check if it is working.

Il giorno lunedì 20 giugno 2016 19:38:15 UTC+2, Susanne ha scritto:
I am very deperate: After my Samsung Galaxy Note 4 updated to Android 6.0.1., 
my application (written in Java - Android Studio and running since Android 3.3) 
no longer can access data on the external sd-card.

I manage to address internal sd-card via  "System.getenv("EXTERNAL_STORAGE")" 
but alas on the web so far I found no path working with the external sd-card.

Of course I have no problem to read/write external sd-card via file-explorer.

I would be very grateful for any help,
thanks a lot in advance
Susanne


-- 
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/21ADF1AF06B92E469E2785276D624C5A3D77F55D%40Exchange02.w4ymail.local.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Phone/Skype Interview:ServiceNow- Remote- Healthcare Exp|REmote

2016-07-01 Thread Neha Kumari
*Hello,*

*GREETINGS !!*

*This is Neha from Apetan consulting,*

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



*POSITION: ServiceNow Developer-Healthcare Exp*

* INTERVIEW: Phone/Skype Interview*

*LOCATION: Remote*

*START :ASAP*





*Job Overview:*





*Location : Remote ,Denver, CO.. Nashville, TN.. or Malvern, PA?*



Currently we are searching for mutliple ServiceNow Developer to fulfill a
contract opportunity within one of our large, national healthcare customers!



The primary goal for this position will be to assist in ongoing development
of ServiceNow. The Developer will provide tools and resources necessary for
implementation of processes utilizing industry best practices including but
not limited to Service Management, Incident Management, Change Management,
Problem management and Configuration Management. This individual will guide
the integration and organizational adoption of ITIL best practices,
standards, policies and controls.



Responsibilities will include:

- Develop ServiceNow workflows to manage and/or automate repeatable tasks
that are manually performed by Server Administration, Network Operations
Center and other customer teams.

- Create ServiceNow views and reports to support process and configuration
management workflows.

- Development within ServiceNow utilizing Scripting, System Definition,
Business Rules, Menus, UI/Forms, Actions, Content Management, Imports,
Transforms, Web Services.

- Utilize SCRUM SDLC methodology to manage workload.

- Other duties as assigned.



Thanks,




-- 



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

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

Reipen Avenue # 255 Jersey City, NJ 07306 |

n...@apetan.com | www.apetan.com  |

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


[android-developers] urgently looking for Sr. Cold Fusion DB2 Consultant || Winston Salem NC || No H1B || Phone interview ||

2016-07-01 Thread Mohammad Wasim
*Hi ,*

*Please let me know if you have anyone for this role .*





*Sr. Cold Fusion - DB2 Consultant*

*Located :: Winston Salem NC *

*Phone interview *

*Long Term*

*No H1B’s*



Requirement:: Need a Sr. level candidate

Technical: Working Knowledge of the following:

• IBM DB2 LUW

• ColdFusion v11

• JavaScript API

• Java - J9

• XML/XSLT



Also needs to adept at understanding business systems logic and
relationship of the system to the business process.

The *target systems support; Order Processing, Distribution and product
development*. The product development is full product lifecycle.
Additionally the system manages the graphic art used to decorate the
garments.



*Experience in the apparel or consumer goods of some kind would be great*.







**

*Thanks,*

*Mohammad Wasim*

*Source InfoTech Inc.*

W: *6096320354*| F: 732-909-2282| Email: *wa...@sourceinfotech.com*
 | Website: *www.sourceinfotech.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/CANdkWrRvh_bF9u5kG%2Bq0b_dzZcLJeGDNS%2BeEts9e3rGGbiBSJQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Can't get rid of the title

2016-07-01 Thread ERPMusicVideos
Hi,
I'm in trouble. Can't get rid of the title when the app is open 
(VideoEnabledWebView)... have tried almost like everything.

Can anyone help me out? I'm a newbie so the problem is probably something 
really simple, yet I haven't managed to fix it in days (2 weeks actually).

http://www59.zippyshare.com/v/BoGp7we1/file.html

I really hope someone has a heart kind enough to help me out :=)

All the best and have a great weekend!

-- 
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/c2f31c2a-6112-41d6-b0ee-91d10484a2ec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] We have a requirement on Payroll Consultant...!! Malvern,PA.

2016-07-01 Thread lisausopera
Hello Partners ,

Please go through the below requirement and share suitable consultants with 
their updated resume, rates and contact details.



Title:  Payroll Consultant-

Location: Malvern, PA

   Rate: $60/Hr



* Specifically a manager who has worked with ADP and has SQL 
experience.

* Someone who has lead an implementation from beginning to end.

* Workday is preferred.

* ADP PCPW is preferred

 

I look forward to hearing from you
--

--
Thanks & Regards,
Lisa
Opera Technologies Inc,
740 Springdale Drive, Suite #204,
Exton, PA 19341
Ph: 610 450 4686
Fax: 610 884 5252
Email: l...@operaus.com
www.operaus.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/2825b32d-69f8-40ef-b7e9-68f2b059333b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] We have a requirement on Payroll Consultant...!! Malvern,PA.

2016-07-01 Thread lisausopera
Hello Partners ,

Please go through the below requirement and share suitable consultants with 
their updated resume, rates and contact details.



Title:  Payroll Consultant-

Location: Malvern, PA

   Rate: $60/Hr



* Specifically a manager who has worked with ADP and has SQL 
experience.

* Someone who has lead an implementation from beginning to end.

* Workday is preferred.

* ADP PCPW is preferred

 

I look forward to hearing from you
--

--
Thanks & Regards,
Lisa
Opera Technologies Inc,
740 Springdale Drive, Suite #204,
Exton, PA 19341
Ph: 610 450 4686
Fax: 610 884 5252
Email: l...@operaus.com
www.operaus.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/a3be3b10-bdc7-4fde-82bc-dadc497320ae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] urgently looking for Siebel Administrator with Siebel OpenUI on IP 2015 is REQUIRED........no h1....Lexington, MA ||

2016-07-01 Thread Mohammad Wasim
*Hi ,*

*Please let me know if you have anyone for this role.*



*Siebel Administrator*

*3+ Month (Contract)*

*Lexington, MA*

*T + S*

*No H1B’s*



*Job Description*

• *5+ Years of Siebel Administration is MUST.*

• Expertise in *Siebel configuration experience is MUST.*

• Experience with *Siebel OpenUI on IP 2015 is REQUIRED.*







**

*Thanks,*

*Mohammad Wasim*

*Source InfoTech Inc.*

W: *6096320354*| F: 732-909-2282| Email: *wa...@sourceinfotech.com*
 | Website: *www.sourceinfotech.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/CANdkWrT8_%3DLQaYJRpitiXxWSYCp2LK6NDygqJa2Sy8Hip1s9YA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Access Problem External SD-Card Android 6.01

2016-07-01 Thread Paolo Turatti
Hello, did you check your app permissions?
In Android 6 many things have changed on permissions, go under android 
settings, applications, select you app, select rights, give the 
applications the right to read and write external storage, then on the top 
right corner, all permissions.
Open you app again and check if it is working.

Il giorno lunedì 20 giugno 2016 19:38:15 UTC+2, Susanne ha scritto:
>
> I am very deperate: After my Samsung Galaxy Note 4 updated to Android 
> 6.0.1., my application (written in Java - Android Studio and running since 
> Android 3.3) no longer can access data on the external sd-card.
>
> I manage to address internal sd-card via  "System.getenv(
> "EXTERNAL_STORAGE")" but alas on the web so far I found no path working 
> with the external sd-card.
>
> Of course I have no problem to read/write external sd-card via 
> file-explorer.
>
> I would be very grateful for any help,
> thanks a lot in advance 
> Susanne 
>
>
>

-- 
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/f8b1fafd-e58c-42f2-8e69-efca9ddf972f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Saving Data on External Storage

2016-07-01 Thread Paolo Turatti
Hello everybody!

I am not able to save data from my appication (in my case video or picture) 
on the external sdcard) I think it is related to the write permission 
introduced with android 4.4.
I am able to write data on the /sdcard whitout problem, but if the device 
has an external sd card i get the "permission denied" error.
How is it possbile to save data on this memories?

Thank you!

-- 
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/407f29c3-c613-4dc2-b7f8-86f18c6e5590%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] hotlist

2016-07-01 Thread mayank sharma
*Hi friends, Please check my updated hotlist & contact me*

*Email: may...@technocraftsol.com  *

*Contact : **614- 664- 7632*



*S.NO* 

*Name*

*Technology*

*Location*

*Experience*

*Relocation*

*1*

*Nayak*

*ETL Developer*

*Birmingham,AL*

*8+*

*Open*

*2*

*Krishna*

*PL SQL Developer*

*Tampa,FL*

*7+*

*Open*

*3*

*Anu*

*SQL Server/SSRS *

*Houston,Tx*

*7+*

*Open*

*4*

*Mayu*

*Informatica Developer*

*Plattsburg,NY*

*8+*

*East Coast*

*5*

*Shruti*

*.Net Developer*

*Dallas,TX*

*8*

*Only Dallas,TX*

*6*

*Reshma*

*Java*

*Plano,Tx*

*8+*

*Open*

*7*

*Rao*

*.Net Developer*

*Hoboken,NJ*

*8*

*Open*

*8*

*Naveen*

*Service Now*

*Auburn Hills,MI*

*7+*

*Open*

*9*

*Raja*

*Tableau*

*Chicago,IL*

*7+*

*Open*

*10*

*Kartik*

*Informatica Developer*

*Peoria ,IL*

*7+*

*Open*

*11*

*Srikanth*

*Sr.Business Analyst*

*Charlotte, NC*

*7+*

*Open*

*12*

*Mani*

*Oracle Apps Techno*

*Sunnyvale,CA*

*7+*

*Open*

*13*

*Sampath*

*Tableau*

*Bloomington,IL*

*7+*

*Open*

-- 
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%2BiLDbd3Z-1aH9digN1ogOVeiqq_eq%2B%2By2HKx3T__74js%3DxVZQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] B2B Lead Generation Services

2016-07-01 Thread sunitha seo


*Hi, DataAngle Technologies *is an ITES and Project Consulting firm 
providing expertise services in Business Process Outsourcing (BPO), Market 
Research, B2B Lead Generation , 
Recruitment and Digital Marketing. We specialize in providing innovative, 
reliable and cost-effective Business Process Outsourcing (BPO) Services to 
customers across the globe for key business processes for both voice and 
non-voice

Contact:   http://www.datangle.net/
# 310, Aditya Trade Center
Ameerpet
Hyderabad – 500 038

-- 
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/c4d80ef9-8174-4fa6-9df2-429f9ad5da82%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Packers and Movers Bangalore

2016-07-01 Thread Busybizz Seo


We Provide Best Packers and Movers Bangalore  
List for Get Free 
Best Quotes, Compare Charges, economize And Time, unit Shifting Services@ 
busybizz.com

 

http://www.busybizz.com/packers-and-movers-bangalore.php

-- 
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/402d900f-03f5-4a43-ac4e-fc8cc32f4f28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Android app visibility for Samsung Galaxy View on Google Play Store

2016-07-01 Thread Gangadhar Reddy
Hello Friends,

Does anyone know how to make android app visible on play store for Samsung 
Galaxy View tablet (18.4 inch) device. 
Please let me know is there any extra permissions are needed to add on 
manifest file.

-- 
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/eeef97d9-396e-4405-aafe-930e57b9dea4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Sending touch events to underlying layer on system alert overlay activity

2016-07-01 Thread galapogos


Hi,

Is it possible to have a partial screen system alert that passes touch 
events that are outside its window to the layer underneath? I'm trying to 
do this but I can't seem to figure out how.


Here's the code where I create the View.


params = new WindowManager.LayoutParams(

WindowManager.LayoutParams.MATCH_PARENT,

WindowManager.LayoutParams.MATCH_PARENT,

WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,

WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,

PixelFormat.TRANSLUCENT);


RelativeLayout mainView = new RelativeLayout(service);

LinearLayout l = new LinearLayout(service);

RelativeLayout.LayoutParams param_one = new 
RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, 
LayoutParams.WRAP_CONTENT);

param_one.width=500;

param_one.height=400;

param_one.leftMargin=200;

param_one.topMargin=354;

l.setTag(first_tag);

l.setOrientation(LinearLayout.VERTICAL);

l.setBackgroundColor(0x00ff);
EditText et = new EditText(service);
et.setBackgroundColor(Color.parseColor("#0b0b0b")); //TODO: not perfect 
color
et.setTextColor(Color.LTGRAY);
et.setWidth(500);
et.setTag(second_tag);
et.setTextSize(20);
LinearLayout.LayoutParams llp = new 
LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, 
LayoutParams.WRAP_CONTENT);
llp.setMargins(20, 30, 20, 1);
et.setLayoutParams(llp);
l.addView(second_test);
mainView.addView(l, param_one);


The system overlay displays fine. However, even though I have set 
FLAG_NOT_FOCUSABLE, touch events outside of the system alert window don't 
seem to be going down to the lower layer. The system over takes up a 
rectangle from screen x,y coordinates 500,354 onwards, but touch events 
above 500 for example don't get registered by the window beneath. How can I 
achieve this?

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