[android-developers] Re: Moving to 2.0 from 1.6 -> error reported of a violation of a core library class that doesn't exist in app

2009-11-11 Thread Sam
Hi,

I just updated and ran into the issue. Can you please provide step by
step what you did to solve this?

Sam

On Nov 5, 4:03 am, vachudj  wrote:
> Hi,
> I had the same problem.
> I solved it by removing 1.6 library and appending 2.0 library.
> The just changing the 2.0's android.jar file instead of 1.6 library is
> not sufficient.
> The android.jar file must be represented in project as new library.
>
> Hopefully it helps... .
>
> On Oct 30, 5:01 am, JP  wrote:
>
> > OK fixed.
> > I've toyed around a little more and, in Eclipse, applied Android Tools> Fix 
> > Project Properties.
>
> > That created a single Google APIs [Android 2.0] entry in Libraries, as
> > opposed to the two individual entries android.jar and maps.jar
> > For future reference. Hope this helps someone else.
>
> > On Oct 29, 7:51 pm, JP  wrote:
>
> > > After getting comfy with the Android 2.0 environment and emulator (for
> > > the most part), I took the next step to bind  against the
> > > latest Android 2.0 jars: android.jar and maps.jar
>
> > > The existing code (working in Android 1.6) did not need any changes to
> > > compile, but the app doesn't build due to a weird error message that
> > > prevents the build. See snippet below, drawn from the Eclipse
> > > Console.
> > > I have no aspirations to run up against any core library classes, and
> > > I am not aware I do. In other words, I am not implementing
> > > SealedObject (or any other core class that I am aware of) that would
> > > run up against Dalvik. Not in the javax, java or any other namespace.
> > > Anybody got any pointers what's going on here?
>
> > > <- Snippet >
>
> > > [2009-10-29 19:37:42 - ]
> > > trouble processing "javax/crypto/SealedObject.class":
> > > [2009-10-29 19:37:42 - ]
> > > Attempt to include a core class (java.* or javax.*) in something other
> > > than a core library. It is likely that you have attempted to include
> > > in an application the core library (or a part thereof) from a desktop
> > > virtual machine. This will most assuredly not work. At a minimum, it
> > > jeopardizes the compatibility of your app with future versions of the
> > > platform. It is also often of questionable legality.
>
> > > If you really intend to build a core library -- which is only
> > > appropriate as part of creating a full virtual machine distribution,
> > > as opposed to compiling an application -- then use the
> > > "--core-library" option to suppress this error message.
>
> > > If you go ahead and use "--core-library" but are in fact building an
> > > application, then be forewarned that your application will still fail
> > > to build or run, at some point. Please be prepared for angry customers
> > > who find, for example, that your application ceases to function once
> > > they upgrade their operating system. You will be to blame for this
> > > problem.
>
> > > If you are legitimately using some code that happens to be in a core
> > > package, then the easiest safe alternative you have is to repackage
> > > that code. That is, move the classes in question into your own package
> > > namespace. This means that they will never be in conflict with core
> > > system classes. If you find that you cannot do this, then that is an
> > > indication that the path you are on will ultimately lead to pain,
> > > suffering, grief, and lamentation.
>
> > > [2009-10-29 19:37:42 - ]1 error; aborting
> > > [2009-10-29 19:37:42 - ]Conversion to Dalvik format failed with
> > > error 1
>
> > > <--- Snippet >

-- 
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: Moving to 2.0 from 1.6 -> error reported of a violation of a core library class that doesn't exist in app

2009-11-11 Thread Sam
Okay, I figured it out. Basically there's 2 steps.
1. In Eclipse under the project Properties -> Android -> Android 2.0.
This is suppose to swap the Android Library files under Java Build
Path. I had originally deleted the 1.6 Library, and manually added the
android.jar in the Android 2.0 platform and that is incorrect. The
system has to switch the library packages.
2. If still having some problems, right click on the projects folder -
> Android Tools -> Fix Project Properties.

These 2 steps got my 2.0 to finally run.

On Nov 11, 3:27 pm, Sam  wrote:
> Hi,
>
> I just updated and ran into the issue. Can you please provide step by
> step what you did to solve this?
>
> Sam
>
> On Nov 5, 4:03 am, vachudj  wrote:
>
> > Hi,
> > I had the same problem.
> > I solved it by removing 1.6libraryand appending 2.0library.
> > The just changing the 2.0's android.jar file instead of 1.6libraryis
> > not sufficient.
> > The android.jar file must be represented in project as newlibrary.
>
> > Hopefully it helps... .
>
> > On Oct 30, 5:01 am, JP  wrote:
>
> > > OK fixed.
> > > I've toyed around a little more and, in Eclipse, applied Android Tools> 
> > > Fix Project Properties.
>
> > > That created a single Google APIs [Android 2.0] entry in Libraries, as
> > > opposed to the two individual entries android.jar and maps.jar
> > > For future reference. Hope this helps someone else.
>
> > > On Oct 29, 7:51 pm, JP  wrote:
>
> > > > After getting comfy with the Android 2.0 environment and emulator (for
> > > > the most part), I took the next step to bind  against the
> > > > latest Android 2.0 jars: android.jar and maps.jar
>
> > > > The existing code (working in Android 1.6) did not need any changes to
> > > > compile, but the app doesn't build due to a weird error message that
> > > > prevents the build. See snippet below, drawn from the Eclipse
> > > > Console.
> > > > I have no aspirations to run up against anycorelibraryclasses, and
> > > > I am not aware I do. In other words, I am not implementing
> > > > SealedObject (or any othercoreclassthat I am aware of) that would
> > > > run up against Dalvik. Not in the javax, java or any other namespace.
> > > > Anybody got any pointers what's going on here?
>
> > > > <- Snippet >
>
> > > > [2009-10-29 19:37:42 - ]
> > > > trouble processing "javax/crypto/SealedObject.class":
> > > > [2009-10-29 19:37:42 - ]
> > > > Attempt to include acoreclass(java.* or javax.*) in something other
> > > > than acorelibrary. It is likely that you have attempted to include
> > > > in an application thecorelibrary(or a part thereof) from a desktop
> > > > virtual machine. This will most assuredly not work. At a minimum, it
> > > > jeopardizes the compatibility of your app with future versions of the
> > > > platform. It is also often of questionable legality.
>
> > > > If you really intend to build acorelibrary-- which is only
> > > > appropriate as part of creating a full virtual machine distribution,
> > > > as opposed to compiling an application -- then use the
> > > > "--core-library" option to suppress this error message.
>
> > > > If you go ahead and use "--core-library" but are in fact building an
> > > > application, then be forewarned that your application will still fail
> > > > to build or run, at some point. Please be prepared for angry customers
> > > > who find, for example, that your application ceases to function once
> > > > they upgrade their operating system. You will be to blame for this
> > > > problem.
>
> > > > If you are legitimately using some code that happens to be in acore
> > > > package, then the easiest safe alternative you have is to repackage
> > > > that code. That is, move the classes in question into your own package
> > > > namespace. This means that they will never be in conflict withcore
> > > > system classes. If you find that you cannot do this, then that is an
> > > > indication that the path you are on will ultimately lead to pain,
> > > > suffering, grief, and lamentation.
>
> > > > [2009-10-29 19:37:42 - ]1 error; aborting
> > > > [2009-10-29 19:37:42 - ]Conversion to Dalvik format failed with
> > > > error 1
>
> > > > <--- Snippet >

-- 
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: App name/icon problems on Hero after reboot

2009-11-13 Thread Sam
I'm not a dev, but just throwing out some info.
I have a Sprint HTC Hero and this happens when I restart...

Some program's name will change to com.companyname.appname, but will
still work such as:
Astro File Manager (2.1.0)
My Backup Pro (2.1.1)

Google Voice (0.2.6) seems to be unique...it looses the name but is
replaced with "voicemail_configuration_key" unlike the others.

Some apps require a reinstall such as:
Meebo IM (21.0) - Will crash every time I try to sign on until it's
reinstalled.
Advanced Task Manager (3.7) - Phone can't find the app.

-- 
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] Anyway to check if any items on the history/activity stack?

2009-11-16 Thread Sam
Hi,

I'm trying to figure out if there's any way to see if there is
anything on the history stack so I can programatically display a Back
button or not.

I tried getting the RunningTaskInfo to get the num of activities but
it doesn't seem to work quite right for what I need. Does anyone know
of another way?

Sammy

-- 
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] get network info on cdma network

2009-11-18 Thread sam
Hi guys,

do you know how to get the
Home country code, current country code, the Mobile directory number
on a cdma network.

I see TelephonyManager.getNetworkCountryIso() can get the current
country code, but it is not reliable on cdma network.

Can you help on it pls?

thanks

HL

-- 
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: get network info on cdma network

2009-11-18 Thread sam
Hi , can anybody help on this please? thanks for any help.

On Nov 18, 4:42 pm, sam  wrote:
> Hi guys,
>
> do you know how to get the
> Home country code, current country code, the Mobile directory number
> on a cdma network.
>
> I see TelephonyManager.getNetworkCountryIso() can get the current
> country code, but it is not reliable on cdma network.
>
> Can you help on it pls?
>
> thanks
>
> HL

-- 
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] Design choices for SensorManager and apps using SensorManager

2009-03-30 Thread Sam

Hi,

>From my understanding, SensorManager spawns a thread in its calling
application to poll sensor data while the SensorService in system
server controls the sensor.

I have 2 questions:
1. Why Android designs the SensorManager and SensorService in this
way? Most of time in Android, XxxManager usually is an easy-to-use
wrapper for a XxxService and the service interfaces with HAL. Please
kindly share the thoughts behind the design. Thanks.

(My wild guess is that sensor can be very demanding of CPU, if it were
read from system server, it would slow down the system).

2. I would like to develop some fancy algorithm on sensor. And I would
like to let a number of applications to use the outcome of my
algorithm. Now I faces 2 design choices:

1) I can put the class for the algorithm in the framework, and let
each application to call SensorManager to listen to the SensorEvent
and pump the SensorEvent into my algorithm. When my algorithm outputs
something, each application can do its specific actions upon it. Or

2) I can create an apk which contains a service and my algorithm
class. The service will be started on demand and it invokes
SensorManager and pumps SensorEvent into the algorithm. When the
algorithm outputs something, it will broadcast an Intent and each
application can receive this Intent and do its specific action.

Please kindly help share your thoughts on the 2 design choices. Thank
you very much.

Sam

--~--~-~--~~~---~--~~
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] Listener to a socket

2009-04-12 Thread Sam

Hi folks, i m using service class and want to listen to socket thru
service class .there are some examples given but they are using timer
class ,i dont want to use timer class .is there any other way to do
that stuff. Thnx in advance.

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



[android-developers] Creation of XML

2009-04-19 Thread Sam

Hi,
I want to create XML with my own tags i want it to create at
runtime . I am unable to use Transform class of java in android is
there any other option available .
  Any help would be appreciated ... Thnx in advance ...
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Finding the name of installed applications

2009-04-20 Thread sam

Given the following code, I know how to get a list of ResolveInfo that
describes all of the installed applications, but I am not sure how to
get the names of the applications as seen in the home menu.

PackageManager pm = this.getPackageManager();

Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);
mainIntent.addCategory(Intent.CATEGORY_LAUNCHER);

List list = pm.queryIntentActivities(mainIntent, 0);

Currently I can get the packageName and className of a given
application as such:

ResolveInfo re = list.get(position);
String packageName = re.activityInfo.packageName;
String className = re.activityInfo.name;

But as far as getting the same name that you would find if you were to
do

Context ctx = this;
Resources appR = ctx.getResources();
CharSequence txt = appR.getText(appR.getIdentifier("app_name",
"string", ctx.getPackageName()));

I cannot seem to figure out how to just get the name.  Obviously this
is possible because there are applications that replace your home
screen and so forth, but I have been searching for hours to no avail.

Thanks!

-Sam


--~--~-~--~~~---~--~~
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] GLSurfaceView + ViewAnimator = Blank Screen

2009-02-12 Thread Sam

I am having a bizarre problem where if the View that contains my
GLSurfaceView is not the first to be shown by my ScreenController,
then the GL commands never actually get drawn. If the GLSurfaceView is
drawn first, then everything renders perfectly. Does anyone have any
ideas why this is happening? Below are the two files:


ScreenController.as

public class ScreenController extends ViewAnimator {

public static final String SCREEN_ID = "mCurrentScreenId";

public class ScreenAnimationListener implements AnimationListener {
private int nextScreenId = -1;

public void onAnimationEnd(Animation animation) {
ScreenController gc = ((DecadesActivity) getContext())
.getController();

if (animation == mOutAnimation) {
gc.removeScreen();

if (nextScreenId != -1) {

gc.getHandler().showScreen(nextScreenId);
}
}

else if (animation == mInAnimation) {
}
}

public void onAnimationRepeat(Animation animation) {
// TODO Auto-generated method stub
}

public void onAnimationStart(Animation animation) {
// TODO Auto-generated method stub
}

public void setNextScreen(int id) {
nextScreenId = id;
}
}

/**
 * A handler for sending messages to the controller on its own
thread. Used
 * for screen changes only.
 */
public class UIThreadHandler extends Handler {
public void handleMessage(Message msg) {
if (msg.what != -1) {
ScreenController.this.showScreen(msg.what);
}
}

public void restoreState() {
this.removeMessages(-1);
sendMessage(obtainMessage(-1));
}

public void showScreen(int id) {
this.removeMessages(id);
sendMessage(obtainMessage(id, 0));
}
}

// These are all the possible game states. Every screen in the game
will set
// one of these
// after it is activated.
ScreenAnimationListener animListener = null;
UIThreadHandler handler = new UIThreadHandler();

private Bundle mAltBundle = null;

ViewGroup mCurrentScreen = null; // ! A reference to the currently
displayed
private int mCurrentScreenId = -1;

Animation mInAnimation = null; // ! The animation used for a view
coming in.
Animation mOutAnimation = null; // ! The animation used for an
exiting view.

int mLevelIndex = 0; // ! The array index of the current level.

boolean mPaused = false;

boolean mRestoring = false; // ! A flag used to determine if a view
is being

public ScreenController(Context context, AttributeSet attrs) {
super(context, attrs);
}

public Bundle getAltBundle() {
return mAltBundle;
}

@Override
public UIThreadHandler getHandler() {
return handler;
}

public int getScreenId() {
return mCurrentScreenId;
}

public void restoreScreenState(Bundle bundle) {
mCurrentScreenId = bundle.getInt(SCREEN_ID);

showScreen(mCurrentScreenId);

if ( mCurrentScreen != null ) {

((ScreenLayout)mCurrentScreen.getChildAt(0)).restoreState
(bundle);
}
}

public Bundle saveScreenState() {
Bundle map = new Bundle();

map.putInt(SCREEN_ID, mCurrentScreenId);

// Save level scores.
if ( mCurrentScreen != null ) {

((ScreenLayout)mCurrentScreen.getChildAt(0)).saveState(map);
}
return map;
}

/** Initializes our game controller **/
public void init(boolean start) {
GameTimer.getTimer().start(start);

animListener = new ScreenAnimationListener();

mInAnimation = getInAnimation();

mOutAnimation = getOutAnimation();

mOutAnimation.setAnimationListener(animListener);

mInAnimation.setAnimationListener(animListener);

if (start)
showScreen(R.layout.title_screen);
}

public ScreenLayout getActiveScreen() {
  

[android-developers] Unable to Update a Contact Phone number

2009-02-23 Thread Sam

Hi All,

I am currently unable to update an existing contact record's phone
number.   I am able to insert a new phone number to an existing
contact record but unable to delete or modify existing phone number
records of a contact.
Is there a way to either:
- delete an existing phone number from a contact record.
or
- update an existing phone number of a contact record.

The sample code is as shown below:

To delete existing phone numbers of a contact record:
row = getContentResolver().delete(ContentUris.withAppendedId
(Phones.CONTENT_URI, uid),null,null);
Log.v(TAG,"row =" + row);

the row value is always 0 even if phone numbers are present. Thus, the
deletion does not take place.

To update a phone number:

Uri PersonUri = ContentUris.withAppendedId(People.CONTENT_URI, uid);
Uri PhoneUri = Uri.withAppendedPath
(PersonUri,People.Phones.CONTENT_DIRECTORY);
ContentValues values = new ContentValues();
values.put(Phones.NUMBER,"1234567890");
values.put(Phones.TYPE,1);
row = getContentResolver().update(PhoneUri,values, null, null);

This throws a unsupported Operation exception.

Kindly guide.

Thanks and Regards,
Sam

--~--~-~--~~~---~--~~
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] Unable to Update a Contact Phone number

2009-02-23 Thread Sam

Hi All,

I am currently unable to update an existing contact record's phone
number.   I am able to insert a new phone number to an existing
contact record but unable to delete or modify existing phone number
records of a contact.
Is there a way to either:
- delete an existing phone number from a contact record.
or
- update an existing phone number of a contact record.

The sample code is as shown below:

To delete existing phone numbers of a contact record:
row = getContentResolver().delete(ContentUris.withAppendedId
(Phones.CONTENT_URI, uid),null,null);
Log.v(TAG,"row =" + row);

the row value is always 0 even if phone numbers are present. Thus, the
deletion does not take place.

To update a phone number:

Uri PersonUri = ContentUris.withAppendedId(People.CONTENT_URI, uid);
Uri PhoneUri = Uri.withAppendedPath
(PersonUri,People.Phones.CONTENT_DIRECTORY);
ContentValues values = new ContentValues();
values.put(Phones.NUMBER,"1234567890");
values.put(Phones.TYPE,1);
row = getContentResolver().update(PhoneUri,values, null, null);

This throws a unsupported Operation exception.

Kindly guide.

Thanks and Regards,
Sam

--~--~-~--~~~---~--~~
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: Unable to Update a Contact Phone number

2009-02-24 Thread Sam

Hi ildus,

Thanks for the response!

I tried your solutions and the update still does not take place. I get
row = 0 for both delete and update , meaning no rows were updated.
If I can just get one of them to work - either delete or update, it
would be sufficient to me.
So your able to delete existing phone numbers of a contact record and
update existing number type and value right?
I was wondering if you did your test on the emulator or the phone? And
on what version of the SDK.
Kindly let me know.

Thanks,
Sam


On Feb 24, 11:12 am, rex  wrote:
> I see only the difference from my code (which is working)
> DELETE
> is that instead of putting Phones.CONTENT_URI put
> Contacts.Phones.CONTENT_URI
>
> UPDATE
> provide to theupdatemethod phoneId, get uri and callupdate:
> phoneUri = ContentUris.withAppendedId(Contacts.Phones.CONTENT_URI,
> phoneId);
> row = getContentResolver().update(phoneUri,values, null, null);
>
> PS Append Contacts to all Phones entries: Contacts.Phones
>
> ildus
--~--~-~--~~~---~--~~
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: Unable to Update a Contact Phone number

2009-02-25 Thread Sam

Hi ildus,

Thanks for the sample! I was able to get update to work and figure out
where we differ.

I was using the personID to do multiple deletes or updates. The logic
was similar to query where we use the Person id to query the phone
database for multiple phone records that are associated with the
Person.
Unfortunately what works for query does not work for update or delete.
For update or delete we have to use the Phone ID to access the single
row in the phone database to delete or update.  So now I do a query
using PersonID and get all the phone records for the person. Then I
get each record's PhoneID and use it to update individual rows in the
phone database. This approach works.
Kindly let me know if there is a better approach.

Thanks for all the help.
Sam


On Feb 24, 4:21 pm, rex  wrote:
> Sam,
>
> I think the problem is how you created thecontactentry. Try this
> method to createcontact
> replace CallCardProvider object with yours actual parameters. Then try
> delete orupdatethis entry using methods above.
> Hope it helps.
>
> Ildus
>  //CreateContact//
>             public long createContactEntry(CallCardProvider ccp) {
>                 ContentValues values = new ContentValues();
>                 Uri phoneUri = null;
>
>                 values.put(Contacts.People.NAME, mCtx.getText
> (R.string.nameStartWith)+" "+ccp.getName());
>                 //1 = the newcontactis added to favorites
>                 //0 = the newcontactis not added to favorites
>                 values.put(Contacts.People.STARRED,0);
>                 values.put(People.NOTES, ccp.getPostNumber());
>
>                 //AddPhoneNumbers
>                 Uri uri = this.mCtx.getContentResolver().insert
> (Contacts.People.CONTENT_URI, values);
>
>                 long contactId = Long.parseLong(uri.getLastPathSegment());
>                 Log.i(TAG,"UriPeople="+uri.toString()+" id 
> created="+contactId);
>                 phoneUri = Uri.withAppendedPath(uri,
> Contacts.People.Phones.CONTENT_DIRECTORY);
>                 Log.i(TAG, "phoneUri="+phoneUri.toString());
>                 values.clear();
>                 values.put(Contacts.Phones.TYPE,
> Phones.TYPE_CUSTOM);//.TYPE_MOBILE);
>                 values.put(Contacts.Phones.LABEL, ccp.getNotes());
>                 values.put(Contacts.Phones.NUMBER, 
> ccp.getNumber());//.split(",")
> [0]);
>                 Uriphone= mCtx.getContentResolver().insert(phoneUri, values);
>                 long phoneId = Long.parseLong(phone.getLastPathSegment());
>                 Log.i(TAG, "Phonecreated="+phone.toString());
>                 Uri groupMember = Contacts.GroupMembership.CONTENT_URI;
>                 Uri group = Contacts.Groups.CONTENT_URI;
>                 Cursor c = mCtx.getContentResolver().query(group, new String[]
> {Groups._ID},
>                                 
> Groups.NAME+"='"+Groups.GROUP_MY_CONTACTS+"'", null, null);
>                 long groupId = 0;
>                 if(c.getCount()>0 && c.moveToFirst())
>                         groupId = c.getLong(c.getColumnIndex(Groups._ID));
>                 c.close();
>                 if(groupId ==0) {
>                         Log.e(TAG, "groupId=0 Insert to group is skipped");
>                         return phoneId;
>                 }
>                 values.clear();
>                 values.put(Contacts.GroupMembership.PERSON_ID, contactId);
>                 values.put(Contacts.GroupMembership.GROUP_ID, groupId);
>                 groupMember = mCtx.getContentResolver().insert(groupMember,
> values);
>                 Log.i(TAG, "groupMemberUri = "+groupMember.toString());
>                 return phoneId;
>             }
--~--~-~--~~~---~--~~
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] does android support ANSI encoding chinese characters?

2009-08-26 Thread sam

Hi guys,

I have two txt file, both of them contains chinese characters, one txt
file is saved using ANSI encoding, but this file's chinese characters
can not be displayed by htmlviewer on the phone. The chinese
characters in another txt file saved using unicode can be displayed ok
by htmlviewer.
Do you have any suggestions on this, does chinese characters using
ANSI encoding supported?

Thanks

Sam
--~--~-~--~~~---~--~~
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: does android support ANSI encoding chinese characters?

2009-08-27 Thread sam

Hi guys,

Any suggestions?

On 8月27日, 上午11时11分, sam  wrote:
> Hi guys,
>
> I have two txt file, both of them contains chinese characters, one txt
> file is saved using ANSI encoding, but this file's chinese characters
> can not be displayed by htmlviewer on the phone. The chinese
> characters in another txt file saved using unicode can be displayed ok
> by htmlviewer.
> Do you have any suggestions on this, does chinese characters using
> ANSI encoding supported?
>
> Thanks
>
> Sam
--~--~-~--~~~---~--~~
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] Dynamic Image Cropping help/examples?

2009-08-28 Thread Sam

Hi,

I'm able to display mulitple images on the screen and scale them fine,
however, I need to crop the images using the API and setting the
gravity for the cropping. I couldn't find much information on image
cropping.

Basically I want to the image to be cropped based on the gravity and
the dimensions of the new smaller size. Any help would be appreciated.
Thanks.

Sammy

--~--~-~--~~~---~--~~
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: does android support ANSI encoding chinese characters?

2009-08-31 Thread sam

Any help?

On 8月28日, 上午9时48分, sam  wrote:
> Hi guys,
>
> Any suggestions?
>
> On 8月27日, 上午11时11分, sam  wrote:
>
>
>
> > Hi guys,
>
> > I have two txt file, both of them contains chinese characters, one txt
> > file is saved usingANSIencoding, but this file's chinese characters
> > can not be displayed by htmlviewer on the phone. The chinese
> > characters in another txt file saved using unicode can be displayed ok
> > by htmlviewer.
> > Do you have any suggestions on this, does chinese characters using
> >ANSIencoding supported?
>
> > Thanks
>
> > Sam- 隐藏被引用文字 -
>
> - 显示引用的文字 -
--~--~-~--~~~---~--~~
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] BitmapDrawable gravity ignored in ImageView???

2009-09-01 Thread Sam

Hi,

I have created a BitmapDrawable and have set the gravity to clip
vertically and to position at the bottom. Then I have added this to
the imageView object, but the clipping is ignored and instead is being
scaled instead. What am I doing wrong? Sample code below in an
Activity:

LinearLayout container = new LinearLayout(this);
  LayoutUtils.Layout.WidthFill_HeightFill.applyLinearLayoutParams
(container);
  container.setOrientation(LinearLayout.VERTICAL);

  TextView tv = new TextView(this);
  tv.setText("Sample text to be displayed above image");
 container.addView(tv);

 ImageView iv = new ImageView(this);
 BitmapDrawable bd  = new BitmapDrawable(SOME_LARGE_BITMAP);
 bd.setGravity(Gravity.BOTTOM | Gravity.CLIP_VERTICAL);
 iv.setImageDrawable(bd);

container.addView(iv, new LinearLayout.LayoutParams
(LinearLayout.LayoutParams.FILL_PARENT,
LinearLayout.LayoutParams.FILL_PARENT, 1));

 TextView tv2 = new TextView(this);
 tv2.setText("Sample Text 2 below image");
 container.addView(tv2);


I have even tried to set a small rectangle of 50x50 as the bound for
the BitmapDrawable and the ImageView still displays the whole image
scaled. All I want to do is be able to have the image gravity set and
clipped. Any help would be appreciated.

Sammy
--~--~-~--~~~---~--~~
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] Dynamically enable menu items

2009-09-02 Thread sam

Hi guys,

I would like to know how to dynamically change the my option menu
items status from disable to enabled .

at first all my menu items are set to disabled and when click the menu
key , they are shown as gray and disabled.

when my other task finished, i want to enable all the menu items,
change them from gray to dark color from the screen.

do you know how can i implement this?

thanks

Sam
--~--~-~--~~~---~--~~
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: Dynamically enable menu items

2009-09-02 Thread sam

Hi Mark,

Thank for reply.
let me describe my question in more details,
I do not want to press the Menu button again, when the menu items are
displayed as disabled, after I finished some work , i want the menu
items to be repainted automatically.
Any suggestions?

thanks

On Sep 2, 6:23 pm, "Mark Murphy"  wrote:
> > I would like to know how to dynamically change the my option menu
> > items status from disable to enabled .
>
> > at first all my menu items are set to disabled and when click the menu
> > key , they are shown as gray and disabled.
>
> > when my other task finished, i want to enable all the menu items,
> > change them from gray to dark color from the screen.
>
> > do you know how can i implement this?
>
> Implement onPrepareOptionMenu() instead of onCreateOptionMenu().
> onPrepareOptionMenu() is called every time the MENU button is pressed. At
> that time, you know whether your menu items should be enabled/disabled, so
> enable/disable them as part of loading up the menu contents.
>
> --
> Mark Murphy (a Commons Guy)http://commonsware.com
> Android App Developer Books:http://commonsware.com/books.html
--~--~-~--~~~---~--~~
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: BitmapDrawable gravity ignored in ImageView???

2009-09-03 Thread Sam

Hi,

So apparently, the code would work if I change the imageView
backgroundDrawable instead code to:
 ImageView iv = new ImageView(this);
 BitmapDrawable bd  = new BitmapDrawable(SOME_LARGE_BITMAP);
 bd.setGravity(Gravity.BOTTOM); //Or any other gravity combination
 iv.setBackgroundDrawable(bd);

But if I do this, then I won't be able to set a backgroundColor for
the imageView. Is it a bug for it not to draw the clipped image on
imageView when usin setImageDrawable?

Anyone?

Sammy
--~--~-~--~~~---~--~~
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: Dynamically enable menu items

2009-09-06 Thread sam

Hi guys,

Any help on this? I believe android application like browser implement
this,
does the android engineer from google have any comments?

Thanks

On Sep 3, 9:38 am, sam  wrote:
> Hi Mark,
>
> Thank for reply.
> let me describe my question in more details,
> I do not want to press the Menu button again, when the menu items are
> displayed as disabled, after I finished some work , i want the menu
> items to be repainted automatically.
> Any suggestions?
>
> thanks
>
> On Sep 2, 6:23 pm, "Mark Murphy"  wrote:
>
>
>
> > > I would like to know how to dynamically change the my option menu
> > > items status from disable to enabled .
>
> > > at first all my menu items are set to disabled and when click the menu
> > > key , they are shown as gray and disabled.
>
> > > when my other task finished, i want to enable all the menu items,
> > > change them from gray to dark color from the screen.
>
> > > do you know how can i implement this?
>
> > Implement onPrepareOptionMenu() instead of onCreateOptionMenu().
> > onPrepareOptionMenu() is called every time the MENU button is pressed. At
> > that time, you know whether your menu items should be enabled/disabled, so
> > enable/disable them as part of loading up the menu contents.
>
> > --
> > Mark Murphy (a Commons Guy)http://commonsware.com
> > Android App Developer Books:http://commonsware.com/books.html- Hide quoted 
> > text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
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: Dynamically enable menu items

2009-09-07 Thread sam

HI guys,

Thanks for your replies, i want to change the menu item status from
disable to enabled while it is displaying on the screen.
i can enable it but the menu item does not re-paint themselves when
they are on the screen.

any other comments?

Thanks

Sam

On Sep 7, 6:08 pm, Keean Schupke  wrote:
> Actually you can use:
>
> onPrepareOptionsMenu
>
> which is called just before the menu is displayed to add or remove
> items.
>
> Regards,
> Keean.
>
> On Sep 7, 9:50 am, Nivek  wrote:
>
>
>
> > As Menu Items are generated only once in the onCreateOptionsMenu(),
> > you might try to keep a reference to each item in instance variables
> > and enable/disable them in the handlers that receive task results ?
>
> > Nivek
>
> > On 7 sep, 05:24, sam  wrote:
>
> > > Hi guys,
>
> > > Any help on this? I believe android application like browser implement
> > > this,
> > > does the android engineer from google have any comments?
>
> > > Thanks
>
> > > On Sep 3, 9:38 am, sam  wrote:
>
> > > > Hi Mark,
>
> > > > Thank for reply.
> > > > let me describe my question in more details,
> > > > I do not want to press the Menu button again, when the menu items are
> > > > displayed as disabled, after I finished some work , i want the menu
> > > > items to be repainted automatically.
> > > > Any suggestions?
>
> > > > thanks
>
> > > > On Sep 2, 6:23 pm, "Mark Murphy"  wrote:
>
> > > > > > I would like to know how to dynamically change the my option menu
> > > > > > items status from disable to enabled .
>
> > > > > > at first all my menu items are set to disabled and when click the 
> > > > > > menu
> > > > > > key , they are shown as gray and disabled.
>
> > > > > > when my other task finished, i want to enable all the menu items,
> > > > > > change them from gray to dark color from the screen.
>
> > > > > > do you know how can i implement this?
>
> > > > > Implement onPrepareOptionMenu() instead of onCreateOptionMenu().
> > > > > onPrepareOptionMenu() is called every time the MENU button is 
> > > > > pressed. At
> > > > > that time, you know whether your menu items should be 
> > > > > enabled/disabled, so
> > > > > enable/disable them as part of loading up the menu contents.
>
> > > > > --
> > > > > Mark Murphy (a Commons Guy)http://commonsware.com
> > > > > Android App Developer 
> > > > > Books:http://commonsware.com/books.html-Hidequotedtext -
>
> > > > - Show quoted text -- Hide quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
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] Scale a background image or drawable?

2009-09-09 Thread Sam

Hi,

On a layout I want to scale the background image (keeping it's aspect
ratio) to the space allocated when the page gets created. Anyone have
any idea how to do this?

I am using layout.setBackgroundDrawable() and am using a
BitmapDrawable to setGravity for clipping and filling, but don't see
any option for scaling.

Sam
--~--~-~--~~~---~--~~
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: Scale a background image or drawable?

2009-09-24 Thread Sam

Thanks! It worked great with some tweaking for what I needed.

On Sep 23, 11:39 pm, kostmo  wrote:
> On Sep 9, 11:46 am, Sam  wrote:
>
> > Hi,
>
> > On a layout I want toscalethebackgroundimage (keeping it's aspect
> > ratio) to the space allocated when the page gets created. Anyone have
> > any idea how to do this?
>
> > I am using layout.setBackgroundDrawable() and am using a
> > BitmapDrawable to setGravity for clipping and filling, but don't see
> > any option for scaling.
>
> > Sam
>
> An old post suggested subclassing 
> Drawable:http://groups.google.com/group/android-beginners/browse_thread/thread...
>
> I have done that here:http://www.anddev.org/viewtopic.php?p=27178#27178
>
> Also, for the original post, which I can't reply to anymore, the
> question was how to "Prevent image stretching in backgrounds".  I
> believe an InsetDrawable would be appropriate for 
> that.http://developer.android.com/reference/android/graphics/drawable/Inse...
--~--~-~--~~~---~--~~
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: Scale a background image or drawable?

2009-09-24 Thread Sam

Thanks! It worked great for what I needed to do.

On Sep 23, 11:39 pm, kostmo  wrote:
> On Sep 9, 11:46 am, Sam  wrote:
>
> > Hi,
>
> > On a layout I want toscalethebackgroundimage (keeping it's aspect
> > ratio) to the space allocated when the page gets created. Anyone have
> > any idea how to do this?
>
> > I am using layout.setBackgroundDrawable() and am using a
> > BitmapDrawable to setGravity for clipping and filling, but don't see
> > any option for scaling.
>
> > Sam
>
> An old post suggested subclassing 
> Drawable:http://groups.google.com/group/android-beginners/browse_thread/thread...
>
> I have done that here:http://www.anddev.org/viewtopic.php?p=27178#27178
>
> Also, for the original post, which I can't reply to anymore, the
> question was how to "Prevent image stretching in backgrounds".  I
> believe an InsetDrawable would be appropriate for 
> that.http://developer.android.com/reference/android/graphics/drawable/Inse...
--~--~-~--~~~---~--~~
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: market problem

2008-12-02 Thread sam

I has the same problem today. No any action for the Publish button.
Click the Save button will remove your app from the publish list of
Market. That's too bad. :(

--~--~-~--~~~---~--~~
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]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: market problem

2008-12-03 Thread sam

It just fixed.
--~--~-~--~~~---~--~~
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]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Problem debugging the application -MediaPlayer

2008-12-07 Thread sam

I'm on the 1.0 SDK and I'm having the exact same problem... I spent a
few hours on the forums & googling, but the only suggestion I can find
is to make sure you call setContentView(...) before you call
findViewById. I can't seem to get past this -- I can't lookup any of
my views from onCreate. Posting relevant portion of main activity --
am I doing anything stupid/wrong here?

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

Button btn = (Button)this.findViewById(R.id.btn_about);   /*
RuntimeException here */
if(btn != null)
{
return; /* set a breakpoint here*/
    }
}

Thanks

Sam

On Nov 19, 11:23 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Start by downloading the current SDK 1.0. Then take a look at the
> sample code posted on this forum.
>
> On Nov 19, 12:29 am, Dagger <[EMAIL PROTECTED]> wrote:
>
> > Some one help I am using 0.9 SDK
>
> > On Nov 19, 12:58 pm, Dagger <[EMAIL PROTECTED]> wrote:
>
> > > I am having the same problem but I am only implementing the Activity
> > > Class which is included in the package by default.
> > > THis is the partial code.
>
> > > public class ActiveOctave extends Activity implements OnErrorListener,
> > >         OnBufferingUpdateListener, OnCompletionListener,
> > >         OnPreparedListener, SurfaceHolder.Callback {
>
> > >         private static final String TAG = "VideoPlayer";
> > >     private MediaPlayer mp;
> > >     private SurfaceView mPreview;
> > >     private EditText mPath;
> > >     private SurfaceHolder holder;
> > >     private ImageButton mPlay;
> > >     private ImageButton mPause;
> > >     private ImageButton mReset;
> > >     private ImageButton mStop;
> > >     private String current;
> > >     /**
> > >      * Called when the activity is first created.
> > >      */
> > >     public void onCreate(Bundle savedInstanceState) {
> > >         super.onCreate(savedInstanceState);
>
> > >         setContentView(R.layout.main);
> > >         // Set up the play/pause/reset/stop buttons
> > >         mPreview = (SurfaceView) findViewById(R.id.surface);
> > >         mPath = (EditText) findViewById(R.id.path);
> > >         mPlay = (ImageButton) findViewById(R.id.play);
> > >         mPause = (ImageButton) findViewById(R.id.pause);
> > >         mReset = (ImageButton) findViewById(R.id.reset);
> > >         mStop = (ImageButton) findViewById(R.id.stop);
>
> > > This is my Debug Stack.
> > > Thread [<3> main] (Suspended (exception RuntimeException))
> > >         ActivityThread.performLaunchActivity(ActivityThread
> > > $ActivityRecord)
> > > line: 2131
> > >         ActivityThread.handleLaunchActivity(ActivityThread
> > > $ActivityRecord)
> > > line: 2147
> > >         ActivityThread.access$1800(ActivityThread, ActivityThread
> > > $ActivityRecord) line: 112
> > >         ActivityThread$H.handleMessage(Message) line: 1572
> > >         ActivityThread$H(Handler).dispatchMessage(Message) line: 88
> > >         Looper.loop() line: 123
> > >         ActivityThread.main(String[]) line: 3708
> > >         Method.invokeNative(Object, Object[], Class, Class[], Class,
> > > int,
> > > boolean) line: not available [native method]
> > >         Method.invoke(Object, Object...) line: 492
> > >         ZygoteInit$MethodAndArgsCaller.run() line: 734
> > >         ZygoteInit.main(String[]) line: 492
> > >         NativeStart.main(String[]) line: not available [native method]
>
> > > Please help what to Do.

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



[android-developers] Temperature Sensors

2010-02-01 Thread sam
Greetings,

I can't seem to find this info on the droids temperature sensor (the
one available in the SDK):

Does it indicate ambient temperature or is it the temperature of the
phone or chip?

Also, does the pressure sensor indicate atmospheric pressure?

regards,

Sam

-- 
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: Launching Browser in Preference Activity.

2010-02-01 Thread SAM
Hi,
This works for me. I have a further requirement.

I want the 'close' my application, once I launched the browser. I need
this because I dont' want to see my applicaiton in the task stack if i
press Back from the Browser.

Thanks
Sam

On Jan 11, 5:13 pm, jwei512  wrote:
> Try setting something like:
>
> Intent myIntent = new Intent(Intent.VIEW_ACTION,
> Uri.parse("http://www.google.com";)); //you can make this URL dynamic
> startActivity(i);
>
> In the onListItemClick() method of your activity.
>
> - jwei
>
> http://thinkandroid.wordpress.com
> Examples, Code, and Tutorials
>
> On Jan 11, 4:09 am, Manjunatha M  wrote:
>
>
>
> > Hi folks,
> > I want to List Item in Preference activity. and I want to launch a Browser
> > with a URL which can change dynamically, When I click on that Item. Can
> > anyone let me know how can i Achieve???
>
> > --
> > Regards,
> > Manjunatha- Hide quoted text -
>
> - Show quoted text -

-- 
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: Launching Browser in Preference Activity.

2010-02-09 Thread SAM
I have tried doing a finish after calling startActivity. But this is
causing a white screen on my emulator for some time, then the browser
is getting launched.

So now I called finish() on onPause and its works fine.

Thanks
Sam

On Feb 2, 11:51 am, SAM  wrote:
> Hi,
> This works for me. I have a further requirement.
>
> I want the 'close' my application, once I launched the browser. I need
> this because I dont' want to see my applicaiton in the task stack if i
> press Back from the Browser.
>
> Thanks
> Sam
>
> On Jan 11, 5:13 pm, jwei512  wrote:
>
>
>
> > Try setting something like:
>
> > Intent myIntent = new Intent(Intent.VIEW_ACTION,
> > Uri.parse("http://www.google.com";)); //you can make this URL dynamic
> > startActivity(i);
>
> > In the onListItemClick() method of your activity.
>
> > - jwei
>
> >http://thinkandroid.wordpress.com
> > Examples, Code, and Tutorials
>
> > On Jan 11, 4:09 am, Manjunatha M  wrote:
>
> > > Hi folks,
> > > I want to List Item in Preference activity. and I want to launch a Browser
> > > with a URL which can change dynamically, When I click on that Item. Can
> > > anyone let me know how can i Achieve???
>
> > > --
> > > Regards,
> > > Manjunatha- Hide quoted text -
>
> > - Show quoted text -- Hide quoted text -
>
> - Show quoted text -

-- 
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: Scroll a Gallery widget?

2010-02-12 Thread Sam
I'm in a similiar situation. Does anyone have a solution to this?

On Dec 27 2009, 8:04 pm, Mark Wyszomierski  wrote:
> Hi,
>
> Is it possible to scroll aGallerywidget programatically? I seeGalleryinherits 
> scrollTo() andscrollBy(), but that scrolls the
> entire widget itself, not its content.
>
> Is there some obvious way to do this that I'm missing, my searches are
> coming up empty? I don't want to have to do a copy/paste/hack from git
> hub if possible...
>
> 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] Hide address bar while launching native browser

2010-02-18 Thread SAM
Hi,
I am able to launch browser and open site "google.com" and from my App
succesfully. I have a requirement that when the browser is laucnhed
from my application, I have to hide the address bar visible at top for
that browser session.

So can think of that I dont want the address that I am trying to open
to be visible to users.

Please let me if this is possible and and if yes how.


Thanks
Sam

-- 
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] Activity calling not from another activity

2010-02-19 Thread SAM
Hi,
In am developing a android application. The framework is such that I
dont allow Activities to launch each other.

Eg: ActivityA can only talk to datahandlerA (DhA)
ActivityB can only talk to datahandlerB (DhB)
datahandlers can talk to any other datahandlers.
Datahandlers do network communication etc if required

Some event happens, button click, on ActivityA. It informs DhA. DhA
does some network operation. It informs DhB about response. DhB does
some housekeeping than launches ActB.

So in the above scenario, I am out of the context of ActA and cannot
call startActivity from data handlers as they are not derived from
Activity class.

Please let me know how this can be done.

Thanks
Sam

-- 
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: Hide address bar while launching native browser

2010-02-19 Thread SAM
thanks for the confirmation.

Also is there a way to launch the browser in the background from my
application.

Requirement:
1: Launch myapplication
2: Tell browser to launch in background and get "xyz.com" (which is
heavy site and takes time to load).
3. Show splash/terms page in my app.
4. After 5-6 seconds tell browser to come in front so that user see
'xyz.com' without delay.

thanks
sam



On Feb 18, 6:11 pm, Mark Murphy  wrote:
> SAM wrote:
> > I am able to launch browser and open site "google.com" and from my App
> > succesfully. I have a requirement that when the browser is laucnhed
> > from my application, I have to hide the address bar visible at top for
> > that browser session.
>
> > So can think of that I dont want the address that I am trying to open
> > to be visible to users.
>
> > Please let me if this is possible and and if yes how.
>
> You will need to implement your own browser using WebView. You have no
> way of controlling that aspect of the Browser application's behavior
> from an SDK application.
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://twitter.com/commonsguy
>
> Android Training...At Your Office:http://commonsware.com/training

-- 
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: Hide address bar while launching native browser

2010-02-21 Thread SAM
Thanks Mark.
Yes using webView is possible as I am doing for other mobile OS(BREW/
Symbian).We considered this option before. but the issue is then I
need to provide data communication layer and handling. Also I cannot
provide each and every operations in Webview like Cookie/Favorites and
all other features native browser is giving.

Thanks
Sam


On Feb 19, 5:44 pm, Mark Murphy  wrote:
> SAM wrote:
> > thanks for the confirmation.
>
> > Also is there a way to launch the browser in the background from my
> > application.
>
> > Requirement:
> > 1: Launch myapplication
> > 2: Tell browser to launch in background and get "xyz.com" (which is
> > heavy site and takes time to load).
> > 3. Show splash/terms page in my app.
> > 4. After 5-6 seconds tell browser to come in front so that user see
> > 'xyz.com' without delay.
>
> If you write your own browsing activity using WebView, sure.
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://twitter.com/commonsguy
>
> _Android Programming Tutorials_ Version 1.0 In Print!

-- 
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: ADC2 entries so far...

2009-09-28 Thread sam

My ADC2 app is aPortaDrum.

It is a drumming application that allows you to play using the phone
as a drumstick.

Please first check the live demo at http://www.youtube.com/watch?v=ON1cxNU0K8w
to see how it uses.
For more info, please visit http://android.a0soft.com/?url=aPortaDrum.htm

You can download aPortaDrum from "ADC 2" app.

Sam

--~--~-~--~~~---~--~~
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] how to get the postal addressed in Contacts

2009-10-24 Thread sam

Hi guys,

Does anybody have any sample code to access/get the postal addressed
of a contact using Contact API?
I searched the sdk doc but did not find enough info to do this.

Thanks for any help you can provide.

Sam
--~--~-~--~~~---~--~~
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] Alert Dialog to display across activities?

2010-02-25 Thread Sam
Does anyone know if it's possible to get a Dialog box to display
between activities? I've looked and haven't been able to find a
solution.

-- 
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: Alert Dialog to display across activities?

2010-03-01 Thread Sam
Basically I'm trying to get a popup notification that will work
independently of the Activity underneath it. Basically I want a
message to be on top of an Activity and stays there even if a timer
kicks in a the Activity transitions to another.

On Feb 26, 9:11 am, TreKing  wrote:
> On Thu, Feb 25, 2010 at 11:10 PM, Sam  wrote:
> > Does anyone know if it's possible to get a Dialog box to display
> > between activities?
>
> What are you trying to achieve by doing this? Maybe there's another / better
> way ...
>
> -
> TreKing - Chicago transit tracking app for Android-powered 
> deviceshttp://sites.google.com/site/rezmobileapps/treking

-- 
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] How to Clear Activity stack if using same activity multiple times?

2010-03-03 Thread Sam
So I have an app with Activity A. The layout on the activity is
dynamic genearted.
So it's possible that on Activity A a user hits a button that goes to
"A" and the new page looks different, then a user clicks another
button to go to "A" again. Now I have 2 Activities in the history
stack. A, A, and currently on A.
A->A-> A ...

Is it possible that if a user clicks a button that the whole Activity
stack is cleared in a scenario such as this?

-- 
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 Clear Activity stack if using same activity multiple times?

2010-03-03 Thread Sam
Thanks for the info, but no of those intent combination I can seem to
get to work.

Basically if I have,

A(1)->A(2)->A(3)->A(4)

And when A(4) starts, I want A1-3 to be cleared from the stack.

On Mar 3, 4:37 pm, A R  wrote:
> check setFlags in Intent class. Also 
> readhttp://developer.android.com/guide/topics/fundamentals.html#acttask
>
> You can clear the stack upto a particular activity, if you want you
> can also set that your activity A is never kept in stack.
>
> HTH
>
> On Mar 4, 2:23 am, Sam  wrote:
>
> > So I have an app with Activity A. The layout on the activity is
> > dynamic genearted.
> > So it's possible that on Activity A a user hits a button that goes to
> > "A" and the new page looks different, then a user clicks another
> > button to go to "A" again. Now I have 2 Activities in the history
> > stack. A, A, and currently on A.
> > A->A-> A ...
>
> > Is it possible that if a user clicks a button that the whole Activity
> > stack is cleared in a scenario such as this?
>
>

-- 
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 Clear Activity stack if using same activity multiple times?

2010-03-03 Thread Sam
I ended up following someones suggestion of using an Activity stack to
handle things similiar to your intent stack to manage the 'Back' key
event thanks.

On Mar 3, 6:10 pm, Bo  wrote:
> Did you try singleTop, singleTask or singleInstance?
>
> In your situation, you may need to maintain an intent stack all by
> yourself from A1 through A3, and handle the BACK key event
> respectively
>
> http://d.android.com/guide/topics/manifest/activity-element.html#lmode
>
> On Mar 3, 11:58 pm, Sam  wrote:
>
> > Thanks for the info, but no of those intent combination I can seem to
> > get to work.
>
> > Basically if I have,
>
> > A(1)->A(2)->A(3)->A(4)
>
> > And when A(4) starts, I want A1-3 to be cleared from the stack.
>
> > On Mar 3, 4:37 pm, A R  wrote:
>
> > > check setFlags in Intent class. Also 
> > > readhttp://developer.android.com/guide/topics/fundamentals.html#acttask
>
> > > You can clear the stack upto a particular activity, if you want you
> > > can also set that your activity A is never kept in stack.
>
> > > HTH
>
> > > On Mar 4, 2:23 am, Sam  wrote:
>
> > > > So I have an app with Activity A. The layout on the activity is
> > > > dynamic genearted.
> > > > So it's possible that on Activity A a user hits a button that goes to
> > > > "A" and the new page looks different, then a user clicks another
> > > > button to go to "A" again. Now I have 2 Activities in the history
> > > > stack. A, A, and currently on A.
> > > > A->A-> A ...
>
> > > > Is it possible that if a user clicks a button that the whole Activity
> > > > stack is cleared in a scenario such as this?
>
>

-- 
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] Possible to Detect if OnResume is because Back button was hit?

2010-03-10 Thread Sam
Hi,

I wanted to know if it is possible to Detect in an Activitiy's
OnResume if the Activity is resuming because the devices Back button
was hit or not?

Sammy

-- 
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: Possible to Detect if OnResume is because Back button was hit?

2010-03-10 Thread Sam
Are you saying if you're on Activity A -> Activity B, hit Back Button
from Activity B, a static flag is set to true on the back key,
When Activity A resumes, you check that static variable, and do your
logic, then set the flag back to false?


On Mar 10, 8:27 pm, Robert Green  wrote:
> I kind of do something like this.  I set a flag to false onResume and
> then set it true if the back button is hit.  onPause, if that flag is
> true, I know it's because my user is backing out and I can respond in
> a certain way (knowing that we'll be going back to a previous
> activity).  The previous activity won't know anything about this,
> though.  I use a static music manager and that is how I handle inter-
> menu game music.
>
> What's your specific need?  Maybe I can help out more then.
>
> On Mar 10, 6:47 pm, Sam  wrote:
>
> > Hi,
>
> > I wanted to know if it is possible to Detect in an Activitiy's
> > OnResume if the Activity is resuming because the devices Back button
> > was hit or not?
>
> > Sammy
>
>

-- 
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: Possible to Detect if OnResume is because Back button was hit?

2010-03-11 Thread Sam
A) I do some logging of information if a user goes back to a page from
a back button versus some other way of accessing the page.
B) I had tried the startActivityForResults but was curious what other
way people have done it.

On Mar 11, 12:02 am, TreKing  wrote:
> On Wed, Mar 10, 2010 at 6:47 PM, Sam  wrote:
> > I wanted to know if it is possible to Detect in an Activitiy's
> > OnResume if the Activity is resuming because the devices Back button
> > was hit or not?
>
> A) Why do you want to do this? Sounds hacky.
>
> B) If you start the Activity with startActivityForResult() the first
> activity will get it's onActivityResult() function called, indicating that
> the activity it started has finished.
>
> -
> TreKing - Chicago transit tracking app for Android-powered 
> deviceshttp://sites.google.com/site/rezmobileapps/treking

-- 
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] Anyway to detect if Broadcast Receiver is registered?

2010-03-11 Thread Sam
Hi,

I'm using more than 1 instance of MapActivity in an application that
look different from each other. I'm running into an issue sometimes
when leaving a MapActivity doesn't unregister it's BroadcastReceiver
and going Back to resume the MapActivity page it tries to re-register
the receiver again, thus receiving an Exception that Receiver already
registered.

Anyone know of a way to tell if a Broadcastreceiver is registered and
is listening?

Sam

-- 
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] Application wake up

2010-03-17 Thread SAM
Hi,
I have a requirement to wake up my application upon receiving a
particular formatted SMS or App directed notification from server.

My application is in dead state. Whenever the device receives a event
may be a SMS in a particular format OR some notification(eg app
directed notification from server), android OS will start my
application.

Its possible in Windows Mobile and BREW.

Please let me know if its possible in Android and how.

Thanks
Sam

-- 
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: Application wake up

2010-03-17 Thread SAM
hi,
I found a link:
http://davanum.wordpress.com/2007/12/15/android-listen-for-incoming-sms-messages/

But to recieve the SMS, my application need not be runnning. Can I
receive SMS when my app is not running. Moreover after scanning the
SMS prefix eg: 'MyAppID':XYZ,  I also also want to start the
application through code.

Thanks
Sameer

On Mar 18, 10:03 am, SAM  wrote:
> Hi,
> I have a requirement to wake up my application upon receiving a
> particular formatted SMS or App directed notification from server.
>
> My application is in dead state. Whenever the device receives a event
> may be a SMS in a particular format OR some notification(eg app
> directed notification from server), android OS will start my
> application.
>
> Its possible in Windows Mobile and BREW.
>
> Please let me know if its possible in Android and how.
>
> Thanks
> Sam

-- 
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] Messaging Stopped Unexpectedly (SQLiteException)

2010-04-02 Thread Sam
I'm having an issue using Messaging apps on the device (have tried
native + other apps) when my locale is set to Arabic.  As soon as I
compose a new message and hit send, I get an error saying Messaging
Stopped Unexpectedly.  From the logcat:

V/Telephony(  756): getOrCreateThreadId uri: 
content://mms-sms/threadID?recipient=XXX
E/DatabaseUtils(  175): Writing exception to parcel
E/DatabaseUtils(  175): android.database.sqlite.SQLiteException: no
such column: ٠: , while compiling: SELECT _id FROM
canonical_addresses WHERE address=? OR PHONE_NUMBERS_EQUAL(address, ?,
٠)
E/DatabaseUtils(  175): at
android.database.sqlite.SQLiteProgram.native_compile(Native Method)


At first I thought it may be an encoding issue, but it's looking
likely that it may just be a bug?  When setting my locale to English
or anything else, it works just fine, even if using the Arabic soft
keyboard.  Also, this only manifests itself when creating a new
message; if I have an existing thread and go to reply to it, it works
just fine, even with Arabic locale.

Any ideas on a workaround?

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

To unsubscribe, reply using "remove me" as the subject.


[android-developers] Memory profiling for my Android application

2010-04-13 Thread SAM
Hi,
I have a requiirement of finding out the max RAM usage of my
application. I tried installing the Memory Profilers in eclipse but I
was not able to use it with my application. Please let me know how can
I find the RAM usage of my application on the 'emulator'.


Thanks
Sam

-- 
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] Re: Memory profiling for my Android application

2010-04-14 Thread SAM
Thanks DDMS worked and provided me data I required.



On Apr 13, 6:31 pm, social hub  wrote:
> did u check out DDMS
>
>
>
> On Tue, Apr 13, 2010 at 7:29 AM, SAM  wrote:
> > Hi,
> > I have a requiirement of finding out the max RAM usage of my
> > application. I tried installing the Memory Profilers in eclipse but I
> > was not able to use it with my application. Please let me know how can
> > I find the RAM usage of my application on the 'emulator'.
>
> > Thanks
> > Sam
>
> > --
> > 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.- Hide quoted text -
>
> - Show quoted text -

-- 
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: Application wake up

2010-04-16 Thread SAM
Thanks Guys. Its working now.

So the process goes like this:
1. In your manifest file, make a activity and a receiver. Mention your
receiver class name here.
2. Make a entry for  android:name =
"android.permission.RECEIVE_SMS"
3. To test on emulator, test by DDMS perspective view.
4. You application will receive SMS while its dead too. in
Onreceive(), read the SMS and do whatever you want. you can also start
your activity from here.

Thanks
sam



On Mar 19, 7:56 am, Andreas  wrote:
> Hi,
>
> Please note that there is no longer any class called IntentReceiver.
> It is now called BroadcastReceiver. Also, to get this to work, you
> need to register the receiver in the AndroidManifest.xml like this:
>
>         
>                 
>                          android:name="android.provider.Telephony.SMS_RECEIVED" />
>                 
>         
>
> Regards,
> Andreas
>
> On Mar 18, 2:50 pm, Vaibhav Kulkarni  wrote:
>
>
>
> > Hi Sam,
>
> > I think you should create a service for that!!! You can use Intent for SMS
> > in following way
>
> > public class RespToSMS extends IntentReceiver {
> >     /* package name for Intent */
> >     static final String ACTION =
> >          "android.provider.Telephony.SMS_RECEIVED";
>
> >     public void onReceiveIntent(Context context, Intent intent) {
> >      if (intent.getAction().equals(ACTION)) {
> >           StringBuilder buf = new StringBuilder();
> >          Bundle bundle = intent.getExtras();
> >           if (bundle != null) {
> >           SmsMessage[] messages =
> > Telephony.Sms.Intents.getMessagesFromIntent(intent);
> >           for (int i = 0; i < messages.length; i++) {
> >               SmsMessage message = messages[i];
> >               buf.append(message.getDisplayMessageBody());
> >              /* Check your SMS format and respond here... */
> >           }
> >           }
> >           NotificationManager nm = (NotificationManager)
> > context.getSystemService(
> >               Context.NOTIFICATION_SERVICE);
>
> >           nm.notifyWithText(123, buf.toString(),
> >               NotificationManager.LENGTH_LONG, null);
>
> >       }
> >      }
>
> > }
>
> > Thanks,
> > Vaibhav
>
> > On Thu, Mar 18, 2010 at 10:33 AM, SAM  wrote:
> > > Hi,
> > > I have a requirement to wake up my application upon receiving a
> > > particular formatted SMS or App directed notification from server.
>
> > > My application is in dead state. Whenever the device receives a event
> > > may be a SMS in a particular format OR some notification(eg app
> > > directed notification from server), android OS will start my
> > > application.
>
> > > Its possible in Windows Mobile and BREW.
>
> > > Please let me know if its possible in Android and how.
>
> > > Thanks
> > > Sam
>
> > > --
> > > 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- Hide quoted text -
>
> - Show quoted text -

-- 
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: Timing out an AsyncTask?

2010-04-20 Thread Sam
Some things to consider with respect to your proposed approach:

- If the Activity is destroyed while your background threads are
running, what should happen?
- Should the Activity's onDestroy() cancel the threads somehow?
- If the threads be allowed to finish their work, what should
happens then?  The original Activity is now dead, so sending a message
to it makes no sense.
- If your ControllerThread (or its Runnable) is a non-static inner
class (which includes anonymous inner classes) of the Activity, it
will hold an implicit reference to the Activity, even after it is
destroyed.  This can be a big memory leak if your thread lasts a long
time.  The same consideration applies to your FutureTask subclass.  In
short, make sure all classes are static or top-level classes.

On Apr 9, 12:17 pm, HippoMan  wrote:
> Thank you, social hub. Our messages crossed. I think that the message
> handler I describe in my previous post is the same one that you are
> referring to.

-- 
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: Disappearing Alarms

2010-08-16 Thread sam
I've been having similar issue with my app, didn't think to query for
specific phones, thanks for the suggestions! Will report back with
more info...

On Aug 17, 8:21 am, mot12  wrote:
> No, it happens even if the app is on the exclude list of these killer
> apps. That's the first thing I pointed out to users. But it happens
> only on some devices.

-- 
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] Develop a API in android

2010-08-18 Thread SAM
Hi,
Our company provides services to customers just like google maps do.
Now we have a requirement to develop and distribute API to our mobile
app customers. Rather that directly hitting our servers and getting
results, we want to distribute a set of APIs to hide the complexities
of server communication.

One solution was to make a android service and let their android app
use it.  Please note that we are not developing android app on our
own. Our service will do network communication internally and give the
results.


Is ther any other way of achieving the above task.

Can i make a jar and distribute it but does andorid modules can be
distributed as jar?


Thanks
sam

-- 
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: Piracy Breakdown by Country

2010-08-28 Thread Sam

Let me give you a scenario that i really DOUBT is happening:

1) Users have Screebl lite installed and then decide they really like
it.
2) They then decide to upgrade and get Screebl Pro.
3) Rather than just pick it up off the market (easy) - they scour the
internet looking for it to save a few dollars...

This seems too far fetched for me. Yes for techies this may be "easy"
but for average Joe finding an app and installing it is not easy!

More likely the high piracy rate is due to it being featured on pirate
websites in "bundled packs". In that case you are not losing these
sales, these are sales that were never going to happen.

Just my opinion.

regards

Sam



On Aug 28, 9:58 pm, Mark Carter  wrote:
> Haven't checked recently but for a while Flurry was (for some reason)
> reporting Chinese users as Australian.
>
> On 28 August 2010 15:40, gosh  wrote:
>
>
>
> > Looking at your numbers again, your 'total installs' for Australia
> > seem way out-of-whack with the rest of the countries listed, i.e.:
>
> > * Take the UK versus Australia figures, your total installs are: UK=
> > 335, Australia=321
> > * There are about 60 million people in the UK, and only 22 million in
> > Australia. Both countries speak a form of English as their primary
> > language, discounting the disproportionate uptake as a UI issue in
> > your app.
> > * Google has allowed app sales and app purchases in both the UK and
> > the US before all other countries globally (Feb 2009). It has allowed
> > 'purchases' in Australia only since Oct'2009, and still doesn't allow
> > 'sales' today.
> > * Google has had multiple Android developer/code/lab-days in the UK
> > (i.e. platform evangelism and market building momentum), while the
> > closest they ever got to Australia with one was Singapore (which is
> > not very close)… i.e. Google is Australia-averse. In fact, southern
> > hemisphere averse. For a company that sells globes and maps, it
> > doesn't seem to be able to peer over its own equators. Its much more
> > likely that Google will allow app sales from Afghanistan before they
> > do so in Australia. Android numbers in Australia reflect that Google
> > apathy.
> > * Google and the Android-brand have been totally 'unfocused'/blurred
> > wrt Australia as a market … the only place you see 'Google' in
> > Australia, is in a browser window. If you phone them, you don't get
> > past the front-desk staff. If you email them, nothing comes back. If
> > your write to them, nothing gets returned. It all disappears into a
> > big white rectangle. It reminds me of the public service in the 1980s,
> > before office PC productivity. They process all their accounting/sales
> > data and dollars from Australia through their Ireland office… while
> > its true that the Australian population was once 75% Irish, that was a
> > long time ago (in the early 1800s).
> > * Telstra, the major Australian telco (previously, a government-owned
> > monopoly, still with nation-wide mobile coverage), only started
> > selling an Android phone in April 2010 - just a few months ago.
> > Vodafone Aust. Ltd. has sold one for a while longer - but they are a
> > much much smaller company, with much less coverage nationally, and
> > they only sell it via high-end phone plans.
> > * I'm yet to meet (or even see) a person on the street (outside the IT
> > world) that actually has an Android phone.
>
> > In summary, both your published piracy rate for Australia, and also
> > your actual 'total number of installs' for Australia, are 'far from
> > representative' IMHO. I suggest to you that there is something very
> > odd going on there with your app installs (supposedly) coming from
> > Australia?
>
> > Cheers
> > Steve
>
> > On Aug 27, 7:15 am, keyeslabs  wrote:
> > > Actually, the largest *contributor* to piracy was the US, but the
> > > highest piracy rates (as a percentage of total installs) were
> > > elsewhere.  For example, the US has a piracy rate (on my app) of about
> > > 70%, but Australia is more like 92%.  For the countries where apps may
> > > be purchased, here's the breakdown:
>
> > > Country Purchases       Installs        Pirated Installs        Piracy
> > Rate
> > > Australia       26      321     295     92%
> > > Austria 6       13      7       54%
> > > Canada  25      96      71      74%
> > > France  23      104     81      78%
> > > Germany 38      161     123     76%
> > > Italy   4    

[android-developers] Re: Piracy Breakdown by Country

2010-08-30 Thread Sam
Hi Zslot

A pirated app install is any installation that has not been paid for.

In your case those pirates quickly buying, copying and then getting a
refund - may well be posting on websites where others download.

So if you see some obvious copying - those copies are then going out
to thousands of others via pirate websites..

I have a question for Google - why not make some attempt to block the
comment spamming on the android market.

The spammy comments list pirate websites, how hard can it be to block
URLs? you do it on youtube right :)

It really looks like you're not trying, help us devs out a bit...




On Aug 30, 7:19 pm, Zsolt Vasvari  wrote:
> In my app, which has an about 3% piracy rate (Pirate == Person who
> uninstall is < 20 mins).  None of whom are from Australia, even though
> I have about 10 Australian paid users.  So by your stat, I'd expect to
> see 9 of those guys (gals) to be pirates.

-- 
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: If I turn off Copy Protection, what will happen?

2010-08-31 Thread Sam
If you are using a Sqlite database in your app then users on android
1.5 will need to uninstall and then re-install.

If you are not using Sqlite then there should be no issues.

On Sep 1, 10:34 am, Chris Stewart  wrote:
> I'm not sure how I'd test it.  There's nothing I'm setting in my app
> regarding copy protection, it's all market-based.  Because I'm not able to
> buy my own application, and then do the update, I'm not sure how I'd test
> it.
>
> From what I could gather, it should only affect users running 1.5.  They'd
> need to uninstall and reinstall.  Thankfully my 1.5 user base is extremely
> low.  I've gone ahead and made the change in the market and will keep an eye
> out for when my next update hits.
>
> --
> Chris Stewarthttp://chriswstewart.com
>
> Fantasy 
> Football-
> Android app for MFL fantasy football owners
> Fantasy Football
> Insider-
> Android app for all fantasy football fanatics
> Social Updater-
> An easy way to send your status blast to multiple social networks
>
> On Tue, Aug 31, 2010 at 10:25 PM, Maps.Huge.Info (Maps API Guru) <
>
>
>
> cor...@gmail.com> wrote:
> > Why don't you test it on your own device? That will certainly answer
> > your question. I believe the answer is it won't be a problem but it
> > could mean your users have to uninstall and reinstall, which means any
> > data the app has collected on the device could be lost.
>
> > -John Coryat
>
> > --
> > 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 > cr...@googlegroups.com>
> > For more options, visit this group at
> >http://groups.google.com/group/android-developers?hl=en

-- 
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: Galaxy Tablet and Android Market

2010-09-02 Thread Sam
Yes you can create a custom 1024x600 AVD to run on the emulator. I
have and yes it works.

It is worth testing your app to see how it looks.

On Sep 2, 6:24 pm, Mark Murphy  wrote:
> On Thu, Sep 2, 2010 at 6:21 AM, Zsolt Vasvari  wrote:
> > I thought Google wasn't licensing it to non-phone devices, but more
> > importantly, this tablet uses a new resolution 1024x600, whcih is a
> > very much larger than any other Android device before and we cannot
> > test our apps in the emulator on this resolution, can we?
>
> > While I know I won't get an "official" answer, maybe one of the
> > platform people could chime in as to what we can expect as far as
> > developer supporting this device, which looks great, by the way.
>
> http://www.tbray.org/ongoing/When/201x/2010/09/02/Samsung-Galaxy-Tab
>
> "All the apps I tried ran just fine, including a couple of immersive
> games that really benefited from the extra inches. I’ve heard of a few
> apps that misbehave, but their problems were obvious & easy to fix;
> watch for details over on the Android Dev Blog, starting later today."
>
> --
> Mark Murphy (a Commons 
> Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy
>
> Android Consulting:http://commonsware.com/consulting

-- 
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: Galaxy Tablet and Android Market

2010-09-02 Thread Sam
Zsolt, String

I had a quick play - there may be a more official way. But this works:

1) Go into the directory: android-sdk/platforms/android-8/skins/ and
make a copy of your WVGA854 directory - rename this directory to
"tablet"

2) Alter the contents of the layout file (see below) to adjust for the
difference in width and height. I kept it in portrait by default to
make the changes easier. I also removed the backgrounds - they're not
necessary.

3) Go to your AVD manager and create your new AVD based on your new
"tablet" skin. No need to change any other values.

Here is what you need in your layout file:

parts {
portrait {

}
landscape {

}

device {
display {
width   600
height  1024
x   0
y   0
}
}

controls {
background {
image   controls.png
}
buttons {
soft-left {
image button.png
x 56
y 142
}
home {
image button.png
x 0
y 142
}
back {
image button.png
x 112
y 142
}
dpad-up {
image arrow_up.png
x 77
y 53
}
dpad-down {
image arrow_down.png
x 77
y 106
}
dpad-left {
image arrow_left.png
x 53
y 53
}
dpad-right {
image arrow_right.png
x 123
y 53
}
dpad-center {
image select.png
x 77
y 81
}
phone-dial {
image button.png
x 0
y 71
}
phone-hangup {
image button.png
x 168
y 71
}

power {
image button.png
x 168
y 0
}

volume-up {
image button.png
x 112
y 0
}

volume-down {
image button.png
x 56
y 0
}

search {
image button.png
x 168
y 142
}

}
}

keyboard {
background {
image   keyboard.png
}
buttons {
1 {
image  key.png
x  5
y  5
}
2 {
image  key.png
x 42
y 5
}
3 {
image  key.png
x 79
y 5
}
4 {
image  key.png
x 116
y 5
}
5 {
image  key.png
x 153
y 5
}
6 {
image  key.png
x 190
y 5
}
7 {
image  key.png
x 227
y 5
}
8 {
image  key.png
x 264
y 5
}
9 {
image  key.png
x 301
y 5
}
0 {
image  key.png
x 338
y 5
}

q {
image  key.png
x  5
y  41
}
w {
image  key.png
x 42
y 41
}
e {
image  key.png
x 79
y 41
}
r {
image  key.png
x 116
y 41
}
t {
image  key.png
x 153
y 41
}
y {
image  key.png
x 190
y 41
}
u {
image  key.png
x 227
y 41
}
i {
image  key.png
x 264
y 41
}
o {
image  key.png
x 301
y 41
}
p {
image  key.png
x 338
y 41
}

a {
image  key.png
x  5
y 77
}
s {
image  k

[android-developers] Re: 1024x600 emulator: no access to 'menu' or other buttons

2010-09-02 Thread Sam
See 
http://groups.google.com/group/android-developers/browse_thread/thread/bbad1666dacb3647

I posted an answer there

On Sep 3, 2:49 am, jsdf  wrote:
> Hi all,
> We are building an app for a device that will have a 1024x600 screen
> at API level 7, 160dpi (which, by the way, is going to be very popular
> very shortly with the Samsung Tab and other tablets coming on the
> market).
> When we start the emulator, the touch surface takes up the entire
> window, and we no longer see the emulator keyboard, hard buttons, or
> (most importantly) the menu button on the right.
> The emulator's window does not scale, so it is not simply a matter of
> making the emulator window larger, unfortunately.
>
> Does anyone have a suggestion on how to get these very important
> buttons to appear in the emulator?
>
> Thanks.
> jsdf

-- 
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: Galaxy Tablet and Android Market

2010-09-03 Thread Sam
Also for any one who doesn't know:

* CTRL + F11 will switch between portrait and landscape.
* Make sure you choose to scale the AVD when launched (try 7")


On Sep 3, 2:50 pm, Sam  wrote:
> Zsolt, String
>
> I had a quick play - there may be a more official way. But this works:
>
> 1) Go into the directory: android-sdk/platforms/android-8/skins/ and
> make a copy of your WVGA854 directory - rename this directory to
> "tablet"
>
> 2) Alter the contents of the layout file (see below) to adjust for the
> difference in width and height. I kept it in portrait by default to
> make the changes easier. I also removed the backgrounds - they're not
> necessary.
>
> 3) Go to your AVD manager and create your new AVD based on your new
> "tablet" skin. No need to change any other values.
>
> Here is what you need in your layout file:
>
> parts {
>     portrait {
>
>     }
>     landscape {
>
>     }
>
>     device {
>         display {
>             width   600
>             height  1024
>             x       0
>             y       0
>         }
>     }
>
>     controls {
>         background {
>             image   controls.png
>         }
>         buttons {
>             soft-left {
>                     image button.png
>                     x 56
>                     y 142
>             }
>             home {
>                     image button.png
>                     x 0
>                     y 142
>             }
>             back {
>                     image button.png
>                     x 112
>                     y 142
>             }
>             dpad-up {
>                     image arrow_up.png
>                     x 77
>                     y 53
>             }
>             dpad-down {
>                     image arrow_down.png
>                     x 77
>                     y 106
>             }
>             dpad-left {
>                     image arrow_left.png
>                     x 53
>                     y 53
>             }
>             dpad-right {
>                     image arrow_right.png
>                     x 123
>                     y 53
>             }
>             dpad-center {
>                     image select.png
>                     x 77
>                     y 81
>             }
>             phone-dial {
>                     image button.png
>                     x 0
>                     y 71
>             }
>             phone-hangup {
>                     image button.png
>                     x 168
>                     y 71
>             }
>
>             power {
>                     image button.png
>                     x 168
>                     y 0
>             }
>
>             volume-up {
>                     image button.png
>                     x 112
>                     y 0
>             }
>
>             volume-down {
>                     image button.png
>                     x 56
>                     y 0
>             }
>
>             search {
>                     image button.png
>                     x 168
>                     y 142
>             }
>
>         }
>     }
>
>     keyboard {
>         background {
>             image   keyboard.png
>         }
>         buttons {
>             1 {
>                 image  key.png
>                 x  5
>                 y  5
>             }
>             2 {
>                 image  key.png
>                 x 42
>                 y 5
>             }
>             3 {
>                 image  key.png
>                 x 79
>                 y 5
>             }
>             4 {
>                 image  key.png
>                 x 116
>                 y 5
>             }
>             5 {
>                 image  key.png
>                 x 153
>                 y 5
>             }
>             6 {
>                 image  key.png
>                 x 190
>                 y 5
>             }
>             7 {
>                 image  key.png
>                 x 227
>                 y 5
>             }
>             8 {
>                 image  key.png
>                 x 264
>                 y 5
>             }
>             9 {
>                 image  key.png
>                 x 301
>                 y 5
>             }
>             0 {
>                 image  key.png
>                 x 338
>                 y 5
>             }
>
>             q {
>                 image  key.png
>                 x  5
&g

[android-developers] AEM Developer at Dearborn, MI

2016-10-17 Thread Sam
Position:  AEM Developer

Location : Dearborn, MI



Local Candidate highly preferred  .







*Other Responsibilities: *

1. Safeguard the company’s assets.

2. Adhere to the company’s compliance program.

3. Maintain comprehensive knowledge of industry standards, methodologies,
processes, and best practices.

4. Maintain a focus on customer-service, efficiency, quality, and growth.

5. Other duties as assigned.

*Minimum Qualifications *

• Must have a Bachelor degree AEM Developer:



*and Job Requirements: *

• Must have at least 5 years of IT development experience.

• Must have a minimum of 3 years of Adobe AEM development experience.

• 3+ years relevant professional experience working Java, JavaScript,
HTML5, CSS3 and attendant technologies.

• Experience working with REST, Sling and SOAP in a production environment.

• Experience with Javascript, Angular JS, Sightly is a must.

• Comfortable with data exchange protocols like JSON and XMLAbility to work
flexibly and appropriate trade-offs to meet time constraints.

• Experience with Personalization feature in AEM.

• Experience developing templates, components in AEM

. • Proficient with Authoring, and deployment activities in AEM.

• Experience collaborating with clients, project managers, and engineers.

• Excellent communication and teamwork skills • Experience and desire to
work within a fast-paced, iterative development environment; experience
with Agile a strong plus

• Experience working with JIRA and WIKI

• Must have experience working in a fast-paced dynamic environment.

• Must have strong analytical and problem solving skills.

• Must have ability to work the time necessary to complete projects and/or
meet deadlines





Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com

Website: www.smdconsultants.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/CANdBHnXFE%3DGifUun-RCVR-6rjGHutfvjmuV6O9aQ2W55eUWL2g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Technical Business Analyst - Should be strong in SQL | MI

2016-10-18 Thread Sam
Hi


Please let me know if you have anyone available for the following opening.


Position – Technical BA

Location – Dearborn, MI

Duration – 6 + months

Rate - $40/hr on C2C

Need local candidate who can go for F2F (Candidate Should be strong in SQL)







*Job Summary: *

Technical Business Analyst role will be responsible for production support
of ConsumerConnection. Triage of incidents, change request and support
tasks and data & project analysis.

*Essential Job Functions: *

• Support all operational aspects of the ConsumerConnection product. •
Investigate new/unknown/existing issues in ConsumerConnection. Clearly
document all findings in the issue tracking system. • Utilize issue
tracking system (JIRA) daily. • Provide feedback to the clients and
technology managers. • Generate routine and ad-hoc reporting and analysis
to assist in evaluating production performance and resolving issues •
Review and analyze data and requirements and test plans/cases in support of
existing and new initiatives. • Participate in UAT, help to identify and
report bugs, user-interface problems, documentation, or other potential
problems (from both the Technical Support and the Customer/End User
perspective). • Provide support for and minor enhancements to reports
utilized by the QC process. • Perform other duties as needed

*Other Responsibilities: *

1. Participate daily support triage meetings and other regular meetings as
required

2. Participate in documentation of support processes and methods

*Minimum *

• Bachelor’s degree with at least three to five years related experience or

*Qualifications and Job Requirements: *

equivalent combination of education and experience

• Minimum of 5 years working in support or ETL related role

• Minimum 2-3 years experience using SQL

• Previous team lead or management experience

• Strong data managemenet and analysis skills

• Two to three years of experience using SQL

• Strong oral and written communications skills

• Ability to work independently with minimum supervision

• Strong facilitation skills • Knowledge of standard software development
methodologies such as Agile and Waterfall

• Intermediate/advanced knowledge of Excel • Extreme attention to detail

• Experience within a customer or technical support environment

• TeraData and/or Oracle experience is a plus

• Exemplary professional demeanor, resourcefulness, flexibility, and
self-motivation

• Advanced judgment and problem solving skills

• Ability to maintain a positive attitude in high stress/fast paced work
environment

• Proven data driven decision-making skills • Two to three years of
technical business requirement gathering/data analysis

• Knowledge of Java, Apache, and JDBC a plus



Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com

Website: www.smdconsultants.com



*[image: cid:image001.jpg@01D1EFDA.EA57D9F0]*

-- 
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/CANdBHnU%3Ds0e4F5%2BkN8Qk6ftvc95T9d%2BS2o9Lv4V_zewTujv-Yg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Technical Business Analyst - Should be local to MI

2016-10-19 Thread Sam
Hi


Please let me know if you have anyone available for the following opening.


Position – Technical BA

Location – Dearborn, MI

Duration – 6 + months

Rate - $40/hr on C2C

Need local candidate who can go for F2F (Candidate Should be strong in SQL)







*Job Summary:*

Technical Business Analyst role will be responsible for production support
of ConsumerConnection. Triage of incidents, change request and support
tasks and data & project analysis.

*Essential Job Functions:*

• Support all operational aspects of the ConsumerConnection product. •
Investigate new/unknown/existing issues in ConsumerConnection. Clearly
document all findings in the issue tracking system. • Utilize issue
tracking system (JIRA) daily. • Provide feedback to the clients and
technology managers. • Generate routine and ad-hoc reporting and analysis
to assist in evaluating production performance and resolving issues •
Review and analyze data and requirements and test plans/cases in support of
existing and new initiatives. • Participate in UAT, help to identify and
report bugs, user-interface problems, documentation, or other potential
problems (from both the Technical Support and the Customer/End User
perspective). • Provide support for and minor enhancements to reports
utilized by the QC process. • Perform other duties as needed

*Other Responsibilities:*

1. Participate daily support triage meetings and other regular meetings as
required

2. Participate in documentation of support processes and methods

*Minimum*

• Bachelor’s degree with at least three to five years related experience or

*Qualifications and Job Requirements:*

equivalent combination of education and experience

• Minimum of 5 years working in support or ETL related role

• Minimum 2-3 years experience using SQL

• Previous team lead or management experience

• Strong data managemenet and analysis skills

• Two to three years of experience using SQL

• Strong oral and written communications skills

• Ability to work independently with minimum supervision

• Strong facilitation skills • Knowledge of standard software development
methodologies such as Agile and Waterfall

• Intermediate/advanced knowledge of Excel • Extreme attention to detail

• Experience within a customer or technical support environment

• TeraData and/or Oracle experience is a plus

• Exemplary professional demeanor, resourcefulness, flexibility, and
self-motivation

• Advanced judgment and problem solving skills

• Ability to maintain a positive attitude in high stress/fast paced work
environment

• Proven data driven decision-making skills • Two to three years of
technical business requirement gathering/data analysis

• Knowledge of Java, Apache, and JDBC a plus



Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com

Website: www.smdconsultants.com



*[image: cid:image001.jpg@01D1EFDA.EA57D9F0]*

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


[android-developers] Urgent Need| Siebel- Toronto, Canada| AEM Dev- Dearborn, MI

2016-10-20 Thread Sam
Hi,



Please let me know if you have anyone available for the following openings.



Siebel EAI – (4-6 Years Exp) – 70/hr on C2C  - Toronto ,Canada

Siebel Configurator  -  (6-8 Years ) – 80/hr on C2C - Toronto ,Canada


Position:  AEM Developer

Location : Dearborn, MI



Local Candidates Only.







*Other Responsibilities: *

1. Safeguard the company’s assets.

2. Adhere to the company’s compliance program.

3. Maintain comprehensive knowledge of industry standards, methodologies,
processes, and best practices.

4. Maintain a focus on customer-service, efficiency, quality, and growth.

5. Other duties as assigned.

*Minimum Qualifications *

• Must have a Bachelor degree AEM Developer:



*and Job Requirements: *

• Must have at least 5 years of IT development experience.

• Must have a minimum of 3 years of Adobe AEM development experience.

• 3+ years relevant professional experience working Java, JavaScript,
HTML5, CSS3 and attendant technologies.

• Experience working with REST, Sling and SOAP in a production environment.

• Experience with Javascript, Angular JS, Sightly is a must.

• Comfortable with data exchange protocols like JSON and XMLAbility to work
flexibly and appropriate trade-offs to meet time constraints.

• Experience with Personalization feature in AEM.

• Experience developing templates, components in AEM

. • Proficient with Authoring, and deployment activities in AEM.

• Experience collaborating with clients, project managers, and engineers.

• Excellent communication and teamwork skills • Experience and desire to
work within a fast-paced, iterative development environment; experience
with Agile a strong plus

• Experience working with JIRA and WIKI

• Must have experience working in a fast-paced dynamic environment.

• Must have strong analytical and problem solving skills.

• Must have ability to work the time necessary to complete projects and/or
meet deadlines





Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com

Website: www.smdconsultants.com



*[image: cid:image001.jpg@01D1EFDA.EA57D9F0]*

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


[android-developers] Req. | Siebel AT Toronto , Canada

2016-10-24 Thread Sam
Hi,



*Hit "REPLY to ALL" and send your responses on h...@smdconsultants.com
*


Please find positions on Siebel AT Toronto , Canada . Please submit
accordingly .


VISA: PR and TN


Start date will be on 5th Dec 2016 .



Position

Experience

location

term

rate

Siebel Tech Lead

8 + years

Toronto ,Canada

6 + months

best rate

Siebel Config  Lead

6-8 Years

Toronto ,Canada

7 + months

best rate

Siebel Config  Specialist

4-6 years

Toronto ,Canada

4-6 Months

best rate

Sieble EAI

6-8 Years

Toronto ,Canada

5 Months

best rate

Sieble EIM

6-8 Years

Toronto ,Canada

2 months

best rate

BIP

4-6 Years

Toronto ,Canada

2 months

best rate







Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com

Website: www.smdconsultants.com



*[image: cid:image001.jpg@01D1EFDA.EA57D9F0]*

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


[android-developers] Position - staffer/integrator with Adaptive Experience | Dearborn, MI

2016-11-03 Thread Sam
 Hi,


Please reply me on h...@smdconsultants.com





Position - staffer/integrator with Adaptive Experience

Location – Dearborn, MI

Duration – 6 + Months

Rate - $50/hr on C2C

Need candidate locally or who can relocate



Here is more of a job description for and Adaptive role:



The individual we need will have expertise in finance, budgeting and
forecasting.  This is NOT a strict IT role.  But, this individual should
have also been involved in an Adaptive implementation at some point.  We
need someone that has working experience with Adaptive that can help guide
the finance team towards the proper way to setup and implement the software
for our financial business needs.  Ideally they should have experience with
NetSuite as well.





Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

SMD Consultants Pvt. Ltd.

#401, 4th Floor, Tower B4

Spaze i-Tech Park, Sec-49, Gurgaon

Contact: +91 124-4985076 | Cell: 9958939967

E-mail: h...@smdconsultants.com

Website: www.smdconsultants.com



[image: Description: http://www.smdconsultants.com/images/icon_smd.gif]

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


[android-developers] Life Sciences Senior Consultant with Oracle’s Life Science Hub exp.

2016-11-03 Thread Sam
Position : Life Sciences Senior Consultant

Location : Jersey city , NJ

Duration- 6 + months

Rate – Open





· Engage with  HealthCare  to drive consultancy and global
services/support in the area of Life Sciences Hub (LSH) for ensuring
definition of and population of all study-integrated data structures,
including patient and non-patient data in the CIE-LSH data warehouse;

· Participate in user requirements and specification meetings,
produce user specification documentation based upon client business
requirements and work closely with various departments to coordinate
efforts to meet deadlines;

· Access and analyze the requirements needed to implement changes
and advice on the options available to support the request within the
system constraints while assessing potential risks and impacts;

· Assist with root cause analysis of technical problems (2nd level
support) in development, test, quality assurance or production environments;

· Work with 3rd party support as needed to own and resolve
technical issues that may arise either from the existing implementation or
ongoing product enhancements;

· Steer all required activities to develop risk mitigation options
for the business;

· Serve as a consultant to management within the Data Management
area.



*Required Qualifications:*

· Bachelor’s degree in Information Technology or related degree
with 10+ years of relevant professional experience OR a Master’s degree
with at least 8+ years of relevant professional experience OR a Ph.D. in
with 2-7 years of relevant work experience;

· Expert in Oracle’s Life Science Hub (LSH);

· Technical knowledge and understanding about Clinical Data
Warehouse, Reporting and Regulatory Submission requirements as it relates
to systems and data information provision;

· Ability to interact with business and understand BHC business
processes and basic terms. Candidate must possess a proven track record in
terms of technical implementation as well as the ability to interact well
with business clients;

· Understand LSH Security as it pertains to Groups/Roles(System &
Functional Roles)/Adapters/subtypes - Need to know how to create all the
objects -  Program(Parameters/Outputs)/Load set/Table Descriptor/Table
-Instance/DataMart/Workflow/Business Area - Create remote
locations/database account -User account creation/database role assignment
(need SQL knowledge) - Update containers and contains security - LSH DB
query results – understand some CDR tables (need SQL knowledge) - Opening
Oracle Service request and Perficient support ticket - Review job logs and
backlogs for trouble shooting;

· Excellent verbal and written communication (fluency in English)
in addition to building and maintaining strong relationships in a global
context, reconciling competing ideas on problems to a mutually beneficial
conclusion are critical in this role;

· Strong analytical skills with proven global teamwork skills and
ability to develop and foster networks in a global context;

· Experience working in a regulated environment (e.g. GxP);

· Ability to do support activities concurrently and adapt easily to
changing priorities;

· Ability to facilitate the translation of business requirements
into technical solutions;

· Ability to think creatively in challenging and changing
situations;

· Strong facilitation skills;

· Capable of sensing cultural awareness and obtaining feedback.



*Preferred Qualifications:*

· 2-3 implementation reference projects;









Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com

Website: www.smdconsultants.com



*[image: cid:image001.jpg@01D1EFDA.EA57D9F0]*

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


[android-developers] Oracle LSH Senior Consultant | NJ

2016-11-04 Thread Sam
Position : Life Sciences Senior Consultant

Location : Jersey city , NJ

Duration- 6 + months

Rate – Open

Client name will be disclosed later ( it’s a health care client )







· Engage with  HealthCare  to drive consultancy and global
services/support in the area of Life Sciences Hub (LSH) for ensuring
definition of and population of all study-integrated data structures,
including patient and non-patient data in the CIE-LSH data warehouse;

· Participate in user requirements and specification meetings,
produce user specification documentation based upon client business
requirements and work closely with various departments to coordinate
efforts to meet deadlines;

· Access and analyze the requirements needed to implement changes
and advice on the options available to support the request within the
system constraints while assessing potential risks and impacts;

· Assist with root cause analysis of technical problems (2nd level
support) in development, test, quality assurance or production environments;

· Work with 3rd party support as needed to own and resolve
technical issues that may arise either from the existing implementation or
ongoing product enhancements;

· Steer all required activities to develop risk mitigation options
for the business;

· Serve as a consultant to management within the Data Management
area.



*Required Qualifications:*

· Bachelor’s degree in Information Technology or related degree
with 10+ years of relevant professional experience OR a Master’s degree
with at least 8+ years of relevant professional experience OR a Ph.D. in
with 2-7 years of relevant work experience;

· Expert in Oracle’s Life Science Hub (LSH);

· Technical knowledge and understanding about Clinical Data
Warehouse, Reporting and Regulatory Submission requirements as it relates
to systems and data information provision;

· Ability to interact with business and understand BHC business
processes and basic terms. Candidate must possess a proven track record in
terms of technical implementation as well as the ability to interact well
with business clients;

· Understand LSH Security as it pertains to Groups/Roles(System &
Functional Roles)/Adapters/subtypes - Need to know how to create all the
objects -  Program(Parameters/Outputs)/Load set/Table Descriptor/Table
-Instance/DataMart/Workflow/Business Area - Create remote
locations/database account -User account creation/database role assignment
(need SQL knowledge) - Update containers and contains security - LSH DB
query results – understand some CDR tables (need SQL knowledge) - Opening
Oracle Service request and Perficient support ticket - Review job logs and
backlogs for trouble shooting;

· Excellent verbal and written communication (fluency in English)
in addition to building and maintaining strong relationships in a global
context, reconciling competing ideas on problems to a mutually beneficial
conclusion are critical in this role;

· Strong analytical skills with proven global teamwork skills and
ability to develop and foster networks in a global context;

· Experience working in a regulated environment (e.g. GxP);

· Ability to do support activities concurrently and adapt easily to
changing priorities;

· Ability to facilitate the translation of business requirements
into technical solutions;

· Ability to think creatively in challenging and changing
situations;

· Strong facilitation skills;

· Capable of sensing cultural awareness and obtaining feedback.



*Preferred Qualifications:*

· 2-3 implementation reference projects;





Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com

Website: www.smdconsultants.com



*[image: cid:image001.jpg@01D1EFDA.EA57D9F0]*

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


[android-developers] Job| Life Sciences Senior Consultant | Jersey city , NJ

2016-11-07 Thread Sam
*Hit reply to all Or send resumes on h...@smdconsultants.com
*


Please let me know if you have any one available for the following opening.





Position : Life Sciences Senior Consultant

Location : Jersey city , NJ

Duration- 6 + months

Rate – Open

Client name will be disclosed later ( it’s a health care client )







· Engage with  HealthCare  to drive consultancy and global
services/support in the area of Life Sciences Hub (LSH) for ensuring
definition of and population of all study-integrated data structures,
including patient and non-patient data in the CIE-LSH data warehouse;

· Participate in user requirements and specification meetings,
produce user specification documentation based upon client business
requirements and work closely with various departments to coordinate
efforts to meet deadlines;

· Access and analyze the requirements needed to implement changes
and advice on the options available to support the request within the
system constraints while assessing potential risks and impacts;

· Assist with root cause analysis of technical problems (2nd level
support) in development, test, quality assurance or production environments;

· Work with 3rd party support as needed to own and resolve
technical issues that may arise either from the existing implementation or
ongoing product enhancements;

· Steer all required activities to develop risk mitigation options
for the business;

· Serve as a consultant to management within the Data Management
area.



*Required Qualifications:*

· Bachelor’s degree in Information Technology or related degree
with 10+ years of relevant professional experience OR a Master’s degree
with at least 8+ years of relevant professional experience OR a Ph.D. in
with 2-7 years of relevant work experience;

· Expert in Oracle’s Life Science Hub (LSH);

· Technical knowledge and understanding about Clinical Data
Warehouse, Reporting and Regulatory Submission requirements as it relates
to systems and data information provision;

· Ability to interact with business and understand BHC business
processes and basic terms. Candidate must possess a proven track record in
terms of technical implementation as well as the ability to interact well
with business clients;

· Understand LSH Security as it pertains to Groups/Roles(System &
Functional Roles)/Adapters/subtypes - Need to know how to create all the
objects -  Program(Parameters/Outputs)/Load set/Table Descriptor/Table
-Instance/DataMart/Workflow/Business Area - Create remote
locations/database account -User account creation/database role assignment
(need SQL knowledge) - Update containers and contains security - LSH DB
query results – understand some CDR tables (need SQL knowledge) - Opening
Oracle Service request and Perficient support ticket - Review job logs and
backlogs for trouble shooting;

· Excellent verbal and written communication (fluency in English)
in addition to building and maintaining strong relationships in a global
context, reconciling competing ideas on problems to a mutually beneficial
conclusion are critical in this role;

· Strong analytical skills with proven global teamwork skills and
ability to develop and foster networks in a global context;

· Experience working in a regulated environment (e.g. GxP);

· Ability to do support activities concurrently and adapt easily to
changing priorities;

· Ability to facilitate the translation of business requirements
into technical solutions;

· Ability to think creatively in challenging and changing
situations;

· Strong facilitation skills;

· Capable of sensing cultural awareness and obtaining feedback.



*Preferred Qualifications:*

· 2-3 implementation reference projects;





Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com

Website: www.smdconsultants.com



*[image: cid:image001.jpg@01D1EFDA.EA57D9F0]*

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


[android-developers] Durability Engineer – Automotive AT Detroit, MI, USA

2016-11-08 Thread Sam
*Hit reply to all Or send resumes on h...@smdconsultants.com
*



Please let me know if you have any one available for the following opening.


   *Job description: Durability Engineer – Automotive*

*Contract Period: 1 Year*

Job Location: *Detroit, MI, USA*

Tentative start date:  *Immediate (Before end of November-2016)*

Domain Experience: *4 to 6 Years*

*Rate - $40/hr on C2C *



*· Candidate should possess a Bachelor / Master’s degree in
Mechanical / Production / Automobile Engineering*

· Strong domain knowledge and experience in Strength and Durability
simulation of Full Vehicle and Automotive Sub-Systems.

· Knowledge of Sheet metal and plastic parts

· Sound knowledge of Nastran Basics and FEA / mechanics basics.

· Knowledge of durability phenomenon and Strength calculations

· Experience in Strength and durability simulation like,

o   Modal Analysis

o   Linear static analysis

o   Non-linear static analysis

o   Inertia relief analysis

· Experience in

o   Pre-processor – Altair Hypermesh

o   Solver – MSC. Nastran

o   Post-Processor – Altair Hyperview, Hypergraph



Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832 <%2B1%20347-809-6832>

Skype: sam18jan |E-mail: h...@smdconsultants.com

Website: www.smdconsultants.com



*[image: cid:image001.jpg@01D1EFDA.EA57D9F0]*

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


[android-developers] Technical BA/PM AT Dearborn, MI

2016-11-18 Thread Sam
Hi,



Please let me know if you have anyone available for the following opening.





Position – Technical BA/PM

Location – Dearborn, MI

Rate - $40/hr on C2C



*Essential Job Functions: *

Areas of Responsibility: • Manage, take ownership and hold accountability
of Agile solution deliveries • Authoring, maintenance and management of
technical product requirements • Facilitate status meetings with partner
vendors, business counterparts and manage project timelines • Document
discovery of necessary efforts, identify and monitor project risks •
Estimate project efforts and durations • Manage scope change, feature
request and project related defect tickets • Consult with business team to
gather business needs and objectives • Special ad-hoc projects for team •
Troubleshoot and own technical project issues from start to completion

• Troubleshoot database performance (SQL), data discrepancies and web
services/ components • Troubleshoot and triage application issues and
identify workarounds • This is more than a project manager; the candidate
must be a technical problem solver



*Minimum Qualifications and Job Requirements: *

Required Qualifications: • Ability to self-manage and prioritize work
schedule per business needs • Strong communication, facilitation and vendor
management skills • Technical background is required • Understanding of
project management methodologies • Ability to prioritize issues with
business effectively • Ability to work flexible hours to support
application launch and production outages if necessary • Must have
Bachelor's degree, preferably in a technology related discipline • Ability
to effectively manage numerous deliverable work streams with various
vendors • Experience with gathering business requirements and generating
creative IT solutions • Excellent written and verbal communication skills •
Experience in automotive related work is a plus • Understanding of
technical integrations and code reviews • Experience with database
management and administration (SQL) is a plus

Special Instructions: • Most experience levels considered. Skills and
background are helpful, but would considered a motivated, high energy
person we can train. Need someone that is a self started and can success
without continual guidance and instruction. We are team oriented, so
important that this person can communicate and get along with a variety of
personality types.







Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

SMD Consultants Pvt. Ltd.

Email: h...@smdconsultants.com

Website: www.smdconsultants.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/CANdBHnU69h5naDu6%2Bfq9NBZxDES%3DK%3Db1ZTdti7kMCYnkoBLDeg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Job| Support Enginee (XML, JSON and REST services)r- Sunnyvale, CA|

2016-12-05 Thread Sam
Hi,


*Send me replies on h...@smdconsultants.com *


Role: *Support Engineer*

Location: Sunnyvale, CA

Duration: 6+ Months



Description:

•   Extensive experience in providing L1 & L2 support for
enterprise systems

•   Well verse with the use of XML, JSON and REST services

•   Working knowledge of UNIX, MAC OS X, iOS, is a plus

•   Solid understanding of data modelling and database systems
including Oracle, mySQL, NOSQL, etc.

•   Solid knowledge of applications performance improvement
techniques and caching solutions

•   Working knowledge of source control software (SVN or Git).

•   Experience with build and deployment tools, e.g., Maven, Gradle.

•   Ability to multi-task and manage tasks with varying priorities.

•   Ability to work independently with minimal supervision

•   Excellent written and oral communication skills



Responsibilities

•   Provide L1 & L2 support for multiple home grown services and
frameworks (Platform Services)

•   Work with application teams to provide guidance and assist them
with on boarding process

•   Develop custom utilities needed by application teams in order
to on board to platform services

•   Build and enhance standard operating procedures for all
platform services and frameworks

•   Standardize deployment & on boarding playbooks for all
supported services

•   Support deployment of applications and services - assist DevOps
engineers

•   Take over SRE responsibilities for all hosted platform services







Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com


Website: www.smdconsultants.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/CANdBHnVKtMoC%3DQctZmQbeTuh3n0ktzTWx5AF3AA%2BkvNA00Z0WA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] OTC Functional Resource with Brazilian Tax. experience

2016-12-05 Thread Sam
Hi,


*Send me replies on h...@smdconsultants.com *


*OTC Functional Resource with Brazilian Tax. experience*

Location: Seattle, WA
Duration: 6+ Months




*Description:*

-   Order to cash (OTC) FA with Brazilian tax experience

-  Functional Analyst heavily experienced on Oracle EBS Order to
Cash flow.

-  Experience with Brazilian Tax & respective integrations is
mandatory.

-  Should be highly knowledgeable on modules like Oracle Order
Management, Pricing, Shipping Execution & Receivables with typical
integrations for Tax calculations.

-  Exposure on Brazilian localizations is a plus.





Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com


Website: www.smdconsultants.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/CANdBHnVpO1vtx9oRhEdyPn8t5J%2BH4%2BnmE3uCwLJnmJ%3DJHHdZ3Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Java Production Support Engineer | Sunnyvale CA | 6 + Months

2016-12-06 Thread Sam
Hi,

* Send me Resumes on h...@smdconsultants.com *

Please let me know if you have any one available for the following opening.
If yes, please send me your resume with the desired rate information.



*Support Engineer*

Location: Sunnyvale, CA

Duration: 6+ Months



Description:

•   Extensive experience in providing L1 & L2 support for
enterprise systems

•   Well verse with the use of XML, JSON and REST services

•   Working knowledge of UNIX, MAC OS X, iOS, is a plus

•   Solid understanding of data modelling and database systems
including Oracle, mySQL, NOSQL, etc.

•   Solid knowledge of applications performance improvement
techniques and caching solutions

•   Working knowledge of source control software (SVN or Git).

•   Experience with build and deployment tools, e.g., Maven, Gradle.

•   Ability to multi-task and manage tasks with varying priorities.

•   Ability to work independently with minimal supervision

•   Excellent written and oral communication skills



Responsibilities

•   Provide L1 & L2 support for multiple home grown services and
frameworks (Platform Services)

•   Work with application teams to provide guidance and assist them
with on boarding process

•   Develop custom utilities needed by application teams in order
to on board to platform services

•   Build and enhance standard operating procedures for all
platform services and frameworks

•   Standardize deployment & on boarding playbooks for all
supported services

•   Support deployment of applications and services - assist DevOps
engineers

•   Take over SRE responsibilities for all hosted platform services







Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com


Website: www.smdconsultants.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/CANdBHnWVnvTAVJQvk85N1MWrpZXUg11_Vt-mwuQQ1jEdrtrdZw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP FICA/RMCA | Sunnyvale CA | 6+ Months

2016-12-06 Thread Sam
Hi,

* Send me Resumes on h...@smdconsultants.com *

Please let me know if you have any one available for the following opening.
If yes, please send me your resume with the desired rate information.



*SAP FICA/RMCA Consultant*

Sunnyvale, CA

6+ Months

Best Rate: $70/Hr on C2C



*Request Summary: *

· 10+ years of SAP functional experience specializing in design and
configuration of SAP Finance modules. Two full life cycle implementation
experience of SAP FICO/FICA/RMCA  modules.

· Experience in gathering business requirements, providing
conceptual and detailed designs to meet business needs, performing
necessary SAP configurations, writing detail specifications for development
of custom programs, testing, co-ordination of transports to production and
post go live support.

· Prior experience in high tech or software industries with good
understanding of accounting concepts.

· Knowledge of BIT is added advantage.

· Requires excellent verbal and written communication skills,
including presentations creation and delivery.

· Candidate should have masters in Finance/ CPA / CPA equivalent


Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com


Website: www.smdconsultants.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/CANdBHnVwb5qUKhKCKP%3DK9MG2H1Hb5L%3DX2BNCqM6thoYS-UELQA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need Java Developer, local to CA.

2016-12-08 Thread Sam
Hi,

Please send me resumes on *h...@smdconsultants.com *


Do you have any genuine Java guy local to Sunnyvale, CA @ $45/hr?



*Skills required: Java Developer, with Angular and nodes.js, basic
JavaScript, backend services.*



Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact: +1 347-809-6832

Email: h...@smdconsultants.com

Website: www.smdconsultants.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/CANdBHnUtGSp%3Dn-G%2BUpHb0iJy0rpMYhyk82DRaA6Cc6GSQbvNXA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Fwd: Need Java Developer, local to CA.

2016-12-08 Thread Sam
Hi,

Please send me resumes on *h...@smdconsultants.com *


Do you have any genuine Java guy local to Sunnyvale, CA @ $45/hr?



*Skills required: Java Developer, with Angular and nodes.js, basic
JavaScript, backend services.*



Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact: +1 347-809-6832

Email: h...@smdconsultants.com

Website: www.smdconsultants.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/CANdBHnVZoZk3w8HBwDh1GfboQ3y2QaaVQF%3Dymuk%3DMzA0grzRtw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP FICA/RMCA Consultant - Sunnyvale, CA

2016-12-12 Thread Sam
Please send me resumes  on hr2@smdconsultants,com



Sunnyvale, CA

6+ Months





*Request Summary: *

· 10+ years of SAP functional experience specializing in design and
configuration of SAP Finance modules. Two full life cycle implementation
experience of SAP FICO/FICA/RMCA  modules.

· Experience in gathering business requirements, providing
conceptual and detailed designs to meet business needs, performing
necessary SAP configurations, writing detail specifications for development
of custom programs, testing, co-ordination of transports to production and
post go live support.

· Prior experience in high tech or software industries with good
understanding of accounting concepts.

· Knowledge of BIT is added advantage.

· Requires excellent verbal and written communication skills,
including presentations creation and delivery.

· Candidate should have masters in Finance/ CPA / CPA equivalent



Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact: +1 347-809-6832

SMD Consultants Pvt. Ltd.

Email: h...@smdconsultants.com

Website: www.smdconsultants.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/CANdBHnWc47emJ7go%3DxFPBdjopBMQ0CzSj1aW4zxsXbnjrbANwQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] SAP PI Developer - Bellevue

2016-12-12 Thread Sam
Please send me resumes  on hr2@smdconsultants,com





Role – 2 SAP PI Developers

Duration – 6 Months +

Rate - $50 / Hr. (Max), All inclusive (No Travel)

Location – Bellevue, WA



While sending the resume please mention e-mail id, skype ID, LinkedIn
profile, Bill Rate & key skills (one/two lines) on the body of the e-mail.





Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact: +1 347-809-6832

SMD Consultants Pvt. Ltd.

Email: h...@smdconsultants.com

Website: www.smdconsultants.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/CANdBHnV5Hf-7fTFEB521vyoZV4xN%2BAnBztDwgaAWv6umHDhv7A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Required: Micro Strategy Developer

2016-12-13 Thread Sam
Please send me resumes  on hr2@smdconsultants,com


Title: *Micro Strategy Developer*

Client: Accenture/Cisco

Location: San Jose, CA

Duration: 6 Months

Rate: $60/hr.



*Job Description:*

· At least 3 Year of Experience with MicroStrategy products, with
experience as both a developer and architect

· Experience with technologies like Tableau, SpotFire desirable

· Experience with multiple data warehouse platforms

· Experience with Teradata highly preferred, but not required

· Strong problem solving/analytical skills Strong SQL Skills






Thanks and Regards

Sameer Sinha

Manager (Talent Acquisition)

Contact: +1 347-809-6832

SMD Consultants Pvt. Ltd.

Email: h...@smdconsultants.com

Website: www.smdconsultants.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/CANdBHnX6rRTC0F_yu%2Bz6%3DTnViRxLr8%2BGbPRE5oeDv7DjpEN7Hw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Job| QA ETL tester with Hedis- Raleigh, NC

2016-12-19 Thread Sam
Hi



Please let me know if you have anyone available for the following opening.
If yes, please send me your resume with the desired rate information.


Send it on h...@smdconsultants.com



*Role:  QA ETL tester with Hedis*



Location: NC-RALEIGH

*Duration: Contract- 6+ Months*

Position Qty:  2





*Visa: H1B/GC/ Citizen*



*Key Skillset:*



ETL, IBM DataStage, ORACLE, UNIX shell scripts and PERL scripts.

*Job Description:*

What software tools/skills are needed to perform these daily
responsibilities?
• 7-10 years of testing/quality assurance experience on ETL/Data
Warehousing projects of which at least 2 years as a senior test engineer on
ETL projects
• 5+ years of relational database experience covering writing queries,
manipulating test data through SQL statements
• Experience using testing/quality assurance tools such as ALM
• Experience using Agile/Scrum tools such as CA Agile Central (aka Rally)
• Experience using Job scheduling software such as TWS,
• Experience with automating test cases and automation tools such as
FitnessE, Selenium, QuickTestPro (QTP)
• Proven experience in testing software following Agile/Scrum methodology
• Experience working in an onsite/offshore model with offshore teams
• Strong verbal and written communication skills with the ability to
communicate clearly and effectively to varying audiences
• Relevant Bachelor’s degree or equivalent work experience in a related
field

Preferred:
• Hands-on experience in ORACLE database technologies
• Application Lifecycle Management (ALM) experience
• CA Agile Central (aka Rally) experience
• Experience with automation tools like FitnessE, Selenium, QuickTestPro
(QTP)
• TWS experience
• Proficiency in MS Office (Word, Excel, Outlook, PowerPoint, Access,
Visio)
• Experience in the health care industry
• Experience with HEDIS






Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com


Website: www.smdconsultants.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/CANdBHnU%2BsFR8SHMrCW0bq8OLDcr3P5cNsBOScPEK%3D9N3w4yksQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need | Java Developer- Milwaukee, WI

2016-12-27 Thread Sam
Hi



Please let me know if you have anyone available for the following opening.
If yes, please send me your resume with the desired rate information.

Send it on h...@smdconsultants.com


*Position Title/Role: Java Developer*

*Location: Milwaukee, WI*

*Duration: Long Term*

*Rate: $55 C2C All Inc.*



*Mandatory Skills:*

· Java/ J2EE, Spring, Hibernate, Agile, RESTFUL.

· Spring boot

· Micro services

· Deploy spring boot app on Linux

· Strong j2ee skills.

· Agile/ Scrum experience.

· Good communication & Presentation Skills.

· Coordinate with other team members for successful sprint and
release execution.



Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com


Website: www.smdconsultants.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/CANdBHnV%3DagQc7eMOQZCX%2BdGe7%3DUcz4YyM%3Deed%2B5gEBOA8NKF2w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Showing Static directions on Google Map View in android

2011-05-24 Thread SAM
Hi,
I was going thru the Google terms of conditions @http://
code.google.com/android/maps-api-signup.html and found that turn-by-
turn navigation is not allowed using android MAP view.

I have a reqirement similar to what at
http://groups.google.com/group/android-developers/browse_thread/thread/d5d3d9b52c9159c4#
that i need to show static directions on the google MAP view i.e. i
have the current location from GPS and the target location lat long. I
will show the path after user wants to see the next leg in path(not in
sync with current location).

Please let me know the legal hurdles if any.

thanks
sam

-- 
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: Showing Static directions on Google Map View in android

2011-05-25 Thread SAM
Hi TreKing,
I am expecting the answer from someone from google MAPs team as I have
the code where we can draw directions on the Google Map control but I
am not 100% sure whether it will cause any issues for my company.

Anyways thanks for your suggestions.

~sam


On May 25, 1:43 am, TreKing  wrote:
> On Tue, May 24, 2011 at 2:36 PM, SAM  wrote:
> > Please let me know the legal hurdles if any.
>
> That's a question for a lawyer not a group focused on the Android SDK.
>
> ---­--
> TreKing <http://sites.google.com/site/rezmobileapps/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 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] Android HAL version

2013-07-25 Thread Sam
Hi, I look into Android graphic document recently.

I noticed that in the official website, it mentions the following...

" Jellybean MR1 introduces a new version of the HAL. We recommend that you 
start using version 1.1 of the hardware composer HAL as it will provide 
support for the newest features (explicit synchronization, external 
displays, etc)."

However, i have not found any clue/file to check the version of the HAL of 
my Android.

Can anyone tell me how to check it?  Many Thanks in advance.

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




[android-developers] Java Developer with experience on Spring Boot | Milwaukee, WI

2017-01-10 Thread Sam
Hi



Please let me know if you have anyone available for the following opening.
If yes, please send me your resume with the desired rate information.

Send it on h...@smdconsultants.com


*Position Title/Role: Java Developer*

*Location: Milwaukee, WI*

*Duration: Long Term*

*Rate: $45 C2C All Inc.*



*Mandatory Skills:*

· Java/ J2EE, Spring, Hibernate, Agile, RESTFUL.

· Spring boot

· Micro services

· Deploy spring boot app on Linux

· Strong j2ee skills.

· Agile/ Scrum experience.

· Good communication & Presentation Skills.

· Coordinate with other team members for successful sprint and
release execution.



Sameer Sinha

Manager (Talent Acquisition)

Contact Number: +1 347-809-6832

Skype: sam18jan |E-mail: h...@smdconsultants.com


Website: www.smdconsultants.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/CANdBHnVJbKbD0%2BYF8GDUfrf5zeSoiKNzyGeukuCK8_fWoFe%3DSg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Eclipse Image Bug

2012-06-12 Thread Sam
Hello everyone. I had a serious problem with Eclipse and it pretty
much renders my app useless if it isn't fixed. When i'm in the XML
editor of one of my XML files, and i place an image, all of the code
below the image cannot be edited. In fact, when i even click or try to
highlight anything below the images code, the code moves and
disappears and duplicates and completely destroys my page. You cant
undo it either. I'm not sure what to do because one of my pages is
pretty much all text and images, and i cant edit any of the text after
i place the images or ill have to delete and re-make the page from
scratch. If ANYONE had any thoughtful tips and suggestions it would be
very much appreciated. 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: Eclipse Image Bug

2012-06-15 Thread Sam
Anyone?

On Tuesday, June 5, 2012 5:38:02 PM UTC-7, Sam wrote:
>
> Hello everyone. I had a serious problem with Eclipse and it pretty 
> much renders my app useless if it isn't fixed. When i'm in the XML 
> editor of one of my XML files, and i place an image, all of the code 
> below the image cannot be edited. In fact, when i even click or try to 
> highlight anything below the images code, the code moves and 
> disappears and duplicates and completely destroys my page. You cant 
> undo it either. I'm not sure what to do because one of my pages is 
> pretty much all text and images, and i cant edit any of the text after 
> i place the images or ill have to delete and re-make the page from 
> scratch. If ANYONE had any thoughtful tips and suggestions it would be 
> very much appreciated. 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

Re: [android-developers] Eclipse Image Bug

2012-06-16 Thread Sam
No im using the XML editor itself. But whenever i use the visual editor to 
drop a picture into place, and then go back to the XML editor to edit it, 
all the code underneath the images code becomes weird when i try to 
highlight or type anything

On Friday, June 15, 2012 9:46:40 PM UTC-7, Todd wrote:
>
> Let me rephrase that:  are you using the visual editor or are you editing 
> the XML directly?  The reason I ask is because the visual editor is, IMHO, 
> a bit frustrating.
>

-- 
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: Eclipse Image Bug

2012-06-16 Thread Sam
Tried that...many, many times

On Friday, June 15, 2012 11:36:36 PM UTC-7, Rajis wrote:
>
> save and close the xml file and open again

-- 
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: Eclipse Image Bug

2012-06-17 Thread Sam
So...is there any way to fix this?

On Sunday, June 17, 2012 11:59:27 AM UTC-7, G. Blake Meike wrote:
>
> While I've never seen this happen in Indigo, it happens *constantly* in 
> Juno.  I know, I know: not supported.  It is, however, certainly a way to 
> drive a similar bug, consistently.
>
> G. Blake Meike
> Marakana
>
> The second edition of Programming Android is now on-line:
> http://shop.oreilly.com/product/0636920023005.do
>
>

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

Re: [android-developers] Re: Eclipse Image Bug

2012-06-17 Thread Sam
Never heard of DroidDrawI'll have to check it out! 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


Re: [android-developers] Re: Eclipse Image Bug

2012-06-18 Thread Sam
It can be reproduced.

1. In the visual editor, drag an image from the left hand side, to anywhere 
on the screen
2. Drag anything else and place it under the image (for example, some text)
3. Go to the XML code and try to edit the item you dragged below the image
4. It will mess up the code and you wont be able to undo it because Ctr-z 
doesn't work

On Monday, June 18, 2012 7:24:33 AM UTC-7, Tor Norbye wrote:
>
> This sounds like this bug:
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=375421
>
> Note however that we don't know how to reproduce this bug. If anyone has 
> reproducible steps, please describe in as much detail as possible and 
> attach to that issue.
>
> -- Tor
>
> On Sun, Jun 17, 2012 at 11:59 AM, G. Blake Meike wrote:
>
>> While I've never seen this happen in Indigo, it happens *constantly* in 
>> Juno.  I know, I know: not supported.  It is, however, certainly a way to 
>> drive a similar bug, consistently.
>>
>> G. Blake Meike
>> Marakana
>>
>> The second edition of Programming Android is now on-line:
>> http://shop.oreilly.com/product/0636920023005.do
>>
>>  -- 
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to android-developers@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-developers+unsubscr...@googlegroups.com
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>>
>
>

-- 
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] In App Billing Limits

2012-07-11 Thread sam
I would like to know what the maximum number of items that can be
placed in In App billing for both Android. I seem to remember reading
around 3000 but I cannot find the reference.

Also if 3000 is the maximum what are the legitimate way to get around
this. My app will sell content and I thought a possible way around the
problem would be to have a central app that shows the content, then a
number of different libraries where you can purchase the content.
Would that be a viable work around?

-- 
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


  1   2   3   4   5   6   7   >