[android-developers] Mpowerlogic Hotlist

2016-10-04 Thread MARK SMITH
Hello!

Greetings from *Mpower Logic Inc.……!*

Please find the Updated Hotlist of *Mpower Logic Inc*.

Kindly let me know if you have any suitable requirements.

Send me your job requirements at *m...@mpowerlogic.com* 
  or you can also reach me at  *973-910-6965.*

S. No Name Technology Location Exp Visa Relocation
1 Vijay Kishore SAP BO/BI/HANA New Brunswick, Nj 11 Years H1B Yes
2 Naresh Hadoop Developer NYC, NY 8.2 Years H1B Yes
3 Swapnaja .Net Developer Topeka, KS 8 Years H1B Yes
4 Himanshi Java Developer Des Moines, IA 8.2 Years H1B Yes
5 Srilekha .Net Developer Redmond, WA 8.4 Years H1B Yes
6 SriLokesh Hadoop Developer Chicago, IL 7.5 Years H1B Yes
7 Navya Hadoop Developer Louisville, KY 7.8 Years H1B Yes
Please kindly add m...@mpowerlogic.com to your distribution list and send 
me your requirements in daily basis.

*Thanks & Regards*
*Mark Smith*
*Sr. Bench Sales Recruiter*
*MPOWER LOGIC INC.*
*242 Old New Brunswick Road, Piscataway, NJ – 08854*
*Phone: 973-910-6965 | Fax: 908-325-1881*
*Email: m...@mpowerlogic.com  | 
URL: www.mpowerlogic.com <http://www.mpowerlogic.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/c8d5124a-73ec-449a-8001-31443c8307b8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Re: Learning JAVA

2009-03-12 Thread Mark Smith

Hi Jonny,

I'm using Ganymede for Android development with no problems, so I
wouldn't try any other versions of Eclipse - it's probably your setup
that's wrong.

If you bring up the 'Problems' view, it should give you an indication
of what's actually wrong with your project. 'Window -> Show View ->
Problems'. Now click on the package icon that has the error - a
message should appear in the Problems window explaining what's wrong.

--Mark

On Mar 12, 1:58 am, JonnySnip3r  wrote:
> Hey guys was wondering if you could help me, im new to the JAVA
> programming language just started in fact i have installed the
> following...
>
> android-sdk-windows-1.1_r1
> apache-ant-1.7.1-bin
> droiddraw-r1b11
> jdk-6u12-windows-i586-p
> Eclipse Ganymede (latest)
>
> i have installed all the android updates for eclipse but every time i
> start a new android project to learn i keep getting a red cross at the
> side of the package telling me there is an error :|
>
> im a n00b and i have no idea hope someone can help me  i want to start
> ASAP here is where the error is...
>
> Code:
> package com.android.hello.android.hello;
>
> import android.app.Activity;
> import android.os.Bundle;
>
> public class android extends Activity {
>     /** Called when the activity is first created. */
>     @Override
>     public void onCreate(Bundle savedInstanceState) {
>         super.onCreate(savedInstanceState);
>         setContentView(R.layout.main);
>     }}
>
> Thanks
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: how can I create a 'View' object from a xml file?

2009-03-09 Thread Mark Smith

Use the static method View.inflate(Context, int, ViewGroup):

http://developer.android.com/reference/android/view/View.html#inflate(android.content.Context,%20int,%20android.view.ViewGroup)

You should be able to use null for the third parameter in this case.

--Mark


On Mar 9, 7:19 am, Lucius Fox  wrote:
> Hi,
>
> In the Tab2 of TabActivity in the APIDemo example, it has this method
> to create a View object for each tab:
> public View createTabContent(String tag) {
>         final TextView tv = new TextView(this);
>         tv.setText("Content for tab with tag " + tag);
>         return tv;
>     }
>
> Can you please tell me how can I create a View for each tab from an
> xml layout file?
> For example:
> public View createTabContent(String tag) {
> // load the content from 'tab_content.xml' file
> // return a View object
>
> }
>
> // tab content.xml looks something like:
>           android:orientation="vertical"
>         android:layout_width="fill_parent"
>         android:layout_height="wrap_content">
>
>                      android:text="@string/controls_1_save"
>             android:layout_width="wrap_content"
>             android:layout_height="wrap_content"/>
>  

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