[android-developers] Software Platform Management Specialist Needed urgently Tampa, FL 12 months contract

2018-01-24 Thread Steve Gibson


*Software Platform Management Specialist*

*Location: Tampa, FL*

*Duration: 12 months (possibility of extension)*

*Interview: Phone*

*Start: As soon as identified*

 

Software Platform Management Specialist

 

REQUIRED SKILLS/EXPERIENCE:

- Must have SCCM 2012 experience (to include both Packages and 
Applications, using task sequences, MDT, and providing third-level support

- Must be familiar with installing/uninstalling software, certifying 
hardware drivers, running test scenarios, and documenting test results

- Excellent verbal and written communication skills

- Experience managing customer expectations and meeting deliverables

- Must have demonstrated dependability/reliability in an IT environment P

 

REFERRED SKILLS/EXPERIENCE:

- Flexera InstallShield packaging experience

- Experience using scripting tools such as PowerShell, Visual Basic, etc.

- Experience using virtual machines

 

 

Email is the best way to reach me.

 

*Thanks & Regards,*

*Steve Gibson*

Manager Bench Sales

*TECH SILICON*

[image: unnamed]

2116 Walsh Ave, Suite #C8, Santa Clara, CA-95050

*Work:408-730-9300 |Cell:210-399-3383*

Fax:408-716-7127 |Email: stevegib...@techsilicon.com

Website: http://techsilicon.com/

[image: E verrify]   [image: wwi-product-good-lrg]

-- 
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/961a6a81-cdb6-400c-ae7b-3d3d9afe5c1f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: getdeviceid() causing invocation target exception

2010-10-13 Thread Gibson
You need this  android.permission.READ_PHONE_STATE

public String getDeviceId ()
Since: API Level 1

Returns the unique device ID, for example, the IMEI for GSM and the
MEID for CDMA phones. Return null if device ID is not available.

Requires Permission: READ_PHONE_STATE


On 10月13日, 下午1时22分, A N K ! T ankit.awasth...@gmail.com wrote:
 hey i am trying to get imei no of the phone..
 for that i am using
 telephonyManagerObject.getDeviceID()
 but it is causing invocationTargetExceptioni am using it in my
 MapActivity class
 what is wrong with it
 --

  A N K ! T..

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


[android-developers] Re: is there any API available to receive the broadcast receiver for app started.

2010-08-09 Thread Gibson
Seems like no.

On 8月9日, 下午2时09分, manoj manojkumar.m...@gmail.com wrote:
 Hi All,

 I have one question.

 I want to receive a broadcast receiver whenever any app is started.

 for example:
 I have an app which has the broadcast receiver which listens for the
 app started event .

 I installed this app on the device.

 Now I have opened the Phone or Contacts app. Now my app which is
 listening for this kind of event(app opened or started) has to be
 invoked.

 can any one tell me the solution?

 Thanks,
 Manoj.

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


[android-developers] Re: How to close toast when application is closed/hidden?

2010-06-02 Thread Gibson
Use http://developer.android.com/reference/android/widget/Toast.html#cancel()
to cancel your toast.


On Jun 1, 1:24 am, BoB ckleinem...@gmail.com wrote:
 Hey,

 This is probably a pretty easy question to answer but I couldn't find
 any answers on my own so:

 I'm writing a little app that uses GPS coordinates and I have a toast
 that pops up and displays my current GPS coordinates (and updates them
 as they change).  It works fine but when I close the app the toast
 remains and covers whatever I do on the homescreen (and continues to
 update the GPS coordinates).

 How do I get it to cancel when I close/hide the application?

 Thanks!

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


[android-developers] Re: How to know the reason that causes the activity destroyed

2010-06-02 Thread Gibson
I guess one of the reason maybe due to the screen orientation changed?


On Jun 3, 6:53 am, Jiang webs...@yahoo.cn wrote:
 One of my Activity is restarted automatically (that is onDestroyed() is 
 called, and then onCreate(xxx) is called as well).

 And I found following matters before Acviity is destroyed:
  - onLowMemory() is not called
  - onConfigurationChanged(xxx) is not called
  - inOnDestroy(), method isFinishing() returns false

 How to know the reason auses the activity destroyed?

 Thanks.
 -Jiang

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


[android-developers] Re: Managing activities from service

2010-06-01 Thread Gibson
I guess you can do like this. Since Activity1 is started right? In
your service just start activity1 and make your activity1 as
singleinstance in AndroidManifest.xml and so Activity1#onNewIntent()
will be called. In onNewIntent to start activity2 and finish
Activity1.

On Jun 1, 6:57 pm, domel szczur...@poczta.fm wrote:
 Hi

 I have a service that listens to the serial port. According to data
 received from serial i switch between particular service states, and
 start particular activities on state transitions. I would like to
 accomplish it in following way: Let's assume there is one active
 Activity1 started from previous state, I call startActivity from
 service to start a new one Activity2, but I want to simulatenously
 destroy Activity1 when Activity2 gets on top of the stack. I tried to
 call finish() in Activity1.onStop but it seems not to work
 (Activity1.onDestroy() doesn't get called). I'd prefer to finish
 Activity1 after Activity2 gets on top in order to avoid blinking.

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


[android-developers] help about new ContactsContract API

2010-04-09 Thread Gibson
Hi,

I try to use following code to insert a new contact into the
ContactsProvider. But I cannot see it in the native Contacts
application. Is there something wrong with my code?

ContentValues values = new ContentValues();
values.put(RawContacts.ACCOUNT_TYPE, );
values.put(RawContacts.ACCOUNT_NAME, );
Uri rawContactUri =
getContentResolver().insert(RawContacts.CONTENT_URI, values);
long rawContactId = ContentUris.parseId(rawContactUri);
values.clear();
values.put(Data.RAW_CONTACT_ID, rawContactId);
values.put(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE);
values.put(StructuredName.DISPLAY_NAME, test);

getContentResolver().insert(Data.CONTENT_URI, values);

BR
Gibson

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

To unsubscribe, reply using remove me as the subject.


[android-developers] Build failure

2009-07-26 Thread Guy Gibson
Dear Androiders,

I am trying to build the source for the latest branch, according to the
instructions at http://source.android.com/download#TOC-Building-the-code.

I get an error, though (see the full listing at the end of this message)

ld: cannot find -lz

I'm trying to build this on a Linux workstation running Ubuntu Hardy Heron
(with some variations).
The hardware is Intel dual-core 64bit and I'm using a 64-bit Ubuntu.

Full listing of build:

build/core/product_config.mk:261: WARNING: adding test OTA key

TARGET_PRODUCT=generic
TARGET_BUILD_VARIANT=eng
TARGET_SIMULATOR=
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm
HOST_ARCH=x86
HOST_OS=linux
HOST_BUILD_TYPE=release
BUILD_ID=

build/core/copy_headers.mk:15: warning: overriding commands for target
`out/target/product/generic/obj/include/libpv/getactualaacconfig.h'
build/core/copy_headers.mk:15: warning: ignoring old commands for target
`out/target/product/generic/obj/include/libpv/getactualaacconfig.h'
Install: out/host/linux-x86/framework/clearsilver.jar
Install: out/host/linux-x86/framework/droiddoc.jar
Install: out/host/linux-x86/lib/libneo_util.so
Install: out/host/linux-x86/lib/libneo_cs.so
Install: out/host/linux-x86/lib/libneo_cgi.so
Install: out/host/linux-x86/lib/libclearsilver-jni.so
Copying
out/target/common/obj/JAVA_LIBRARIES/core_intermediates/classes-full-debug.jar
Install: out/host/linux-x86/framework/dx.jar
Install: out/host/linux-x86/bin/dx
host Executable: aapt
(out/host/linux-x86/obj/EXECUTABLES/aapt_intermediates/aapt)
/usr/bin/ld: skipping incompatible
/usr/lib/gcc/x86_64-linux-gnu/4.2.4/../../../libz.so when searching for -lz
/usr/bin/ld: skipping incompatible
/usr/lib/gcc/x86_64-linux-gnu/4.2.4/../../../libz.a when searching for -lz
/usr/bin/ld: skipping incompatible /usr/bin/../lib/libz.so when searching
for -lz
/usr/bin/ld: skipping incompatible /usr/bin/../lib/libz.a when searching for
-lz
/usr/bin/ld: skipping incompatible /usr/lib/libz.so when searching for -lz
/usr/bin/ld: skipping incompatible /usr/lib/libz.a when searching for -lz
/usr/bin/ld: cannot find -lz
collect2: ld returned 1 exit status
make: *** [out/host/linux-x86/obj/EXECUTABLES/aapt_intermediates/aapt] Error

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



[android-developers] Using ServerSocket on emulator

2008-05-08 Thread Gibson

Hi all,
I got a problem about using ServerSocket on emulator. I just try
to set up a ServerSocket on emulator and create a client on Windows to
connect to the server on Emulator. I tried adb forward the port and
also redir the port. But all failed. Anyone has succeeded doing this?
Any piece of code is welcome.
   Thanks very much!

server part:

try {
ServerSocket ssocket = new ServerSocket(22266);
Log.v(tag, port: + ssocket.getLocalPort());
Log.v(tag,  + start);
Socket socket = ssocket.accept();
Log.v(tag,  + ok);
System.out.println(socket.getRemoteSocketAddress());
InputStream in = socket.getInputStream();
OutputStream out = socket.getOutputStream();
DataInputStream din = new DataInputStream(in);
String str = din.readUTF();
Log.v(tag, got string: + str);
in.close();
out.close();
} catch (IOException e) {
e.printStackTrace();
}

client part:
   try {
Socket socket = new Socket(10.15.6.129,22266);
OutputStream out = socket.getOutputStream();
DataOutputStream dout = new DataOutputStream(out);
dout.writeUTF(hello world);
dout.close();
socket.close();
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}


BR
Gibson
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] get key pressed actively

2008-04-21 Thread Gibson

Hi all,
   Is there a way to get key pressed actively? Currently we just need
to override the method onKeyDown() method. Then Android OS will call
onKeyDown() to tell our program that a key has been pressed. Is there
a way to get the event if i don't override the onKeyDown() method? I
want to develop an application with hotkey functions. I mean if my
application is hiden. How to call it back to the front if i press some
shortcut key. Any Google guys can tell me please?

BR
Gibson
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to insert image?

2008-04-21 Thread Gibson

Well. Maybe you can using ImageView i think. There are lots of demo in
ApiDemo application. You can try it. Good luck.

On Apr 21, 4:54 pm, Pierre [EMAIL PROTECTED] wrote:
 Hi, all

 I want to design an interface which can input text and insert image.
 But I don't know how to insert an existed image. Which class should I
 use?

 Anyone can heip me?

 Thanks
 Pierre
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: bitmap image changed. but why?

2008-04-08 Thread Gibson

Thanks David for you reply.  You can see that in my onCreat() function
i create the bit map using thisbitmap = Bitmap.createBitmap(100, 100,
true);  From the decompiled source code we can see this:

public static Bitmap createBitmap(int width, int height, boolean
hasAlpha)
{
return createBitmap(width, height, hasAlpha ?
Config.ARGB_ : Config.RGB_565);
}

So i create the Bitmap with the Config.ARGB_. But the result the
same. Pixel changed. It is quite strange.


On Apr 8, 6:01 pm, David Given [EMAIL PROTECTED] wrote:
 Gibson wrote:

 [...]

 protected void onDraw(Canvas canvas) {
 Paint paint = new Paint();
 paint.setARGB(255, 255, 255, 255);
 canvas.drawRect(0, 0, screenWidth, screenHeight, paint);
 canvas.drawBitmap(bitmap, 10, 10, null);
 int[] imagedata = new int[100 * 100];
 bitmap.getPixels(imagedata, 0, 100, 0, 0, 100, 100);
 bitmap.setPixels(imagedata, 0, 100, 0, 0, 100, 100);

 Without knowing for certain, I suspect that yourbitmapis in RGB565
 format. Pixel data is always in ARGB888 format, so whenever you call
 setPixels() it does lossy format conversion. You may want to turn off
 dithering, as this will introduce noise.

 --
 David Given
 [EMAIL PROTECTED]
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: bitmap image changed. but why?

2008-04-08 Thread Gibson

Hi Steve,

   Thanks for you advice. But i think there is no need to synchronize
the bitmap. Because onCreate() method and onDraw() method won't strive
for bitmap(I don't know whether you understand what i mean. English is
not my mother language.) So I think there won't be two thread to deal
with bitmap. Any Google guys can give me some advice? Thanks very much
for any advice.

BR
Gibson

On Apr 9, 11:05 am, Steve Oldmeadow [EMAIL PROTECTED] wrote:
  So i create the Bitmap with the Config.ARGB_. But the result the
  same. Pixel changed. It is quite strange.

 When strange things happen I always look at threading issues.  Your
 onDraw code is not re-entrant.  You could try making your onDraw re-
 entrant or synchronising access to the bitmap.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---