We provide complete mobile and web apps development solutions

Wednesday, February 20, 2013

HP hiring Software developers (freshers)

Qualifications:


Bachelors or Masters degree in Cse, It



Experience:



0-2 yrs


Skills:


Good analytical and problem solving skills.

Good knowledge of design of software applications.

Good communication skills.


Primary Location: 


Bangalore

MAQ hiring software engineers

Job location: Mumbai, Hyderabad

Position: Software Engineer

Experience:  Freshers (0 to 1 yr)

Event date: 09 march 2013

Eligibility:

2012 batch Btech

Graduates with PH score

Job Description:

Web app development using C#, SharePoint, Microsoft SQL Server,

XML Webservices

Business Intelligent app testing


Click here to apply


Dell India hiring freshers

Position:  Software Developer Analysts

Location:  Bangalore

Experience: Freshers

Job Code: 130004QE

Job Description:

To resolve Netcool Change requests
Obtain requirements from clients
delivering commited change requests with all quality.

Click here to apply

Wednesday, February 13, 2013

WebView in Android

WebView is a class which is an extention of View class. Using Webview, we can display webpages in the mobile browser.

To add webview to your application, declare internet permission in manifest file and add WebView to xml.
To load webpage in WebView, use loadUrl

WebView wb=(WebView)findViewById(R.id.webView1);
        wb.loadUrl("http://www.mobengineers.com");
      
You must enable javascript in your webview to load javascript in the page.

To bind interface between Javascript code and android code, then use
        webview.addJavascriptInterface(new WebAppInterface(this), "Android");

To store user data in the browser, we have to use cookies, so that the browser data it does not share.

android.webkit.CookieSyncManager  class to manage all cookies.
To use this, 1st create one instance,
cookieSyncManager.createInstance(context);
setup sync call
to start
cookieSyncManager.getInstance().startSync();
to stop
cookieSyncManager.getInstance().stopSync();
to get sync instantly,

cookieSyncManager.getInstance().Sync();

sample webview example here

package com.example.demo1;

public class MainActivity extends Activity {

    public class WebAppInterface { Context mContext;

    WebAppInterface(Context c) {
        mContext = c;
    }


    public void showToast(String toast) {
        Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
    }

}

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
       
        WebView wb=(WebView)findViewById(R.id.webView1);
        wb.loadUrl("http://www.mobengineers.com");
        WebSettings ws=wb.getSettings();
        ws.setJavaScriptEnabled(true);
       // wb.addJavascriptInterface(new WebAppInterface(this), "Android");
        wb.setWebViewClient(new WebViewClient());
       
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }
    private class MyWebViewClient extends WebViewClient {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            if (Uri.parse(url).getHost().equals("www.getnicejobs.com")) {
                return false;
            }
            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
            startActivity(intent);
            return true;
        }


}
}

activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <WebView
        android:id="@+id/webView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />

</RelativeLayout>







Monday, February 11, 2013

Java Developers Jobs

Java Developers in MNC

experience: 2 yrs
 email your resumes to
karuna@sancrosoftusa.com



for more jobs apply here
http://www.sancrosoftusa.com/jobopenings.html

SancroSoft USA inc
4944 Sunrise Blvd, Suite B-4, Fair Oaks,
CA 95628,
Phone: 718-360-4561













InteractCRM  hiring Java Professionals

Job Dec:


Work in product devel team to build  Contact Center Solutions for our clients.
Deliver work  using OOAD methodologies , provide technical insights to the team.
Design, coding & testing of Modules and components assigned.


Desired Profile:




3 - 4 years hands on Java / J2EE & web services develop exp.
 exposure to all software development life cycle.
 analytical, logical & communication skills. email ur resumes to:
careers@interactcrm.com

Friday, February 8, 2013

Loaders in Android

Loaders providing Asynchronous loading data into an activity or fragment.When the data changes, it automatically update the new results.It automatically reconnect last loader when its recreated. So, no need to re query.

Starting the Loader:

we can initilize loader in onCreate() method.

getLoaderManager().initLoader(0,null, this);


initLoader takes the following parameters

unique id. In the above unique id is 0.
argument to supply to loader at construct (optional).
LoaderManager.LoaderCallbacks

LoaderManager calls to report loader events.

Thursday, February 7, 2013

Internal Flow of Threads or Thread Model

    whenever we write multi threading application, it contains multiple flow of controls.
All the flow controls follow the sequence steps at execution time.


Java programs starts execution by loading .class file

JVM creates a background thread and will reside in main.

Background thread creates various foreground threads and dispatches to their run to execute and result back to background and will handover to garbage.
Background thread gives back to program.
JVM collects background thread and will handover to Garbage collector.
Java program stops its execution.

Online Training

Your Name :
Your Email: (required)
Your Message: (required)

Powered by Blogger.

Recent Posts

Find Us On Facebook

Popular Posts