Example usage for android.app Activity subclass-usage

List of usage examples for android.app Activity subclass-usage

Introduction

In this page you can find the example usage for android.app Activity subclass-usage.

Usage

From source file com.example.dex.MainActivity.java

/**
 * change from http://code.google.com/p/android-custom-class-loading-sample/
 * move the secondary_dex.jar file to Internet
 *
 */
public class MainActivity extends Activity {

From source file com.fb.fbdemo.LoginUsingActivityActivity.java

public class LoginUsingActivityActivity extends Activity {
    // private static final String URL_PREFIX_FRIENDS =
    // "https://graph.facebook.com/me/friends?access_token=";
    // private static final String URL_PREFIX_FRIENDS =
    // "https://graph.facebook.com/me?fields=id,name,picture&access_token=";
    // private static final String URL_FRIENDS =

From source file com.dedipower.portal.android.Launcher.java

public class Launcher extends Activity {
    PortalAPI API = new PortalAPI();
    ProgressDialog dialog;
    String APIResponse = "";
    String AcctCode, Email, Password = "";
    private SharedPreferences settings = null;

From source file com.facebook.android.Example.java

public class Example extends Activity {

    // Your Facebook Application ID must be set before running this example
    // See http://www.facebook.com/developers/createapp.php
    public static final String APP_ID = "175729095772478";

From source file com.github.volley_examples.Act_NetworkListView.java

/**
 * Demonstrates: 1. ListView which is populated by HTTP paginated requests; 2. Usage of NetworkImageView; 
 * 3. "Endless" ListView pagination with read-ahead
 * 
 * Please note that for production environment you will need to add functionality like handling rotation, 
 * showing/hiding (indeterminate) progress indicator while loading, indicating that there are no more records, etc...

From source file it.bradipao.cantuina.MainActivity.java

public class MainActivity extends Activity {

    // views
    Button btnAdd, btnShift, btnScan, btnFetch;
    TextView tvNetresult, tvTemp, tvPres, tvHumi;

From source file com.spoiledmilk.cykelsuperstier.break_rote.TransportationActivity.java

public class TransportationActivity extends Activity {

    private String fromStation = "";
    private String toStation = "";
    private String line = "";
    // private String lineB;

From source file org.angellist.angellistmobile.UserActivity.java

public class UserActivity extends Activity {

    ProgressDialog mDialog;
    public ImageLoader imageLoader;
    ImageView imageView;
    TextView textViewLocations, textViewRoles;

From source file org.developresanddesigners.config_geo_plugin.config_geo_plugin_open.java

public class config_geo_plugin_open extends Activity implements CordovaPlugin {

    public void showSettings() {

        Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
        config_geo_plugin_open.this.startActivity(intent);

From source file com.surveyorexpert.TalkToMe.java

public class TalkToMe extends Activity implements OnInitListener {
    Intent intent = null;
    private static final String TAG = "MagicWord";
    public String gotMessage = "";

    private TextView result, message;