Android Open Source - fino Main Activity






From Project

Back to project page fino.

License

The source code is released under:

Copyright (C) 2012 Sysdream Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software ...

If you think the Android project fino listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.example.fino;
//from www . ja v a2  s .com
import java.util.*;

import android.app.Activity;
import android.os.Bundle;

public class MainActivity extends Activity
{
    private ArrayList<String> mList = null;
    private HashMap<String, String> mHashmap = null;
    private Vector<String> mVector = null;


    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        /* Initialize test vector, hashmap and list */
        mList = new ArrayList<String>();
        mList.add("Hello");
        mList.add("Kitty");
        mHashmap = new HashMap<String, String>();
        mHashmap.put("Lancelot","Green");
        mHashmap.put("Galahad","Red");
        mHashmap.put("Arthur","Purple");
        mVector = new Vector<String>();
        mVector.add("Swallow");
        mVector.add("Coconut");
    }
}




Java Source Code List

com.example.fino.MainActivity.java
com.sysdream.fino.InspectionService.java
com.sysdream.fino.InspectionStub.java