List of usage examples for android.app Activity subclass-usage
From source file com.securekey.sdk.sample.ReadCardActivity.java
public class ReadCardActivity extends Activity implements Briidge.CardReadListener { /** * The object used to perform the card read and continue the API call session. * * It has the methods:
From source file com.codebutler.farebot.activities.ReadingTagActivity.java
public class ReadingTagActivity extends Activity { @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.activity_reading_tag);
From source file com.wms.ezyoukuuploader.sdk.activity.GetRefreshTokenActivity.java
/** * Get refresh token from Youku. Before uploading a new video, the refresh token will be used to refresh OAuth access token. */ public class GetRefreshTokenActivity extends Activity { private WebView webviewYouku = null;
From source file com.manning.androidhacks.hack023.AddNewActivity.java
public class AddNewActivity extends Activity { private EditText mTitle; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
From source file com.dedipower.portal.android.ManagedServerLanding.java
public class ManagedServerLanding extends Activity { PortalAPI API = new PortalAPI(); JSONObject Servers = null; JSONArray ManagedServers = null; String Success = "false";
From source file com.foursquare.android.nativeoauth.TokenExchangeActivity.java
/**
* A utility {@link Activity} that converts a short-lived auth code into an
* access token. Do not start this activity directly. Obtain an intent from
* {@link FoursquareOAuth#getTokenExchangeIntent(android.content.Context, String, String, String)}
* and start the intent for a result. <br>
* <br>
From source file org.path.episample.android.activities.MediaCaptureImageActivity.java
/**
* Simple shim for media interactions.
*
* @author mitchellsundt@gmail.com
*
*/
From source file com.manning.androidhacks.hack035.MainActivity.java
public class MainActivity extends Activity { private static final int PICK_PICTURE = 10; private static final int TAKE_PICTURE = 11; private static final int PICK_OR_TAKE_PICTURE = 12;
From source file com.sample.tom.uiwidgetssample.list.SampleCarouselActivity.java
/** * Activity for showing a simple carousel */ public class SampleCarouselActivity extends Activity {