List of usage examples for android.app Activity subclass-usage
From source file com.manning.androidhacks.hack007.MainActivity.java
public class MainActivity extends Activity { private DrawView mDrawView; @Override public void onCreate(Bundle savedInstanceState) {
From source file net.dahanne.android.google.client.GoogleProfileActivity.java
/** * This class is based on the FacebookProfileActivity by Roy Clarkson */ public class GoogleProfileActivity extends Activity { protected static final String TAG = GoogleProfileActivity.class.getSimpleName();
From source file com.aevi.simpleexample.SecureCommunicationsActivity.java
public class SecureCommunicationsActivity extends Activity { private static final String TAG = SecureCommunicationsActivity.class.getSimpleName(); // this URL only works on the Aevi device. See the sample documentation for an explanation. // URL used on the Aevi Device (See: com.aevi.helpers.UriBuilder)
From source file com.scigames.slidegame.Registration4PhotoActivity.java
/** * This class provides a basic demonstration of how to write an Android * activity. Inside of its window, it places a single view: an EditText that * displays and edits some internal text. */ public class Registration4PhotoActivity extends Activity implements SciGamesListener {
From source file com.example.patrycja.wikitudeapp.AbstractArchitectCamActivity.java
/** * Abstract activity which handles live-cycle events. * Feel free to extend from this activity when setting up your own AR-Activity * */ public abstract class AbstractArchitectCamActivity extends Activity implements ArchitectViewHolderInterface {
From source file com.sina.weibo.sdk.demo.openapi.WBInviteAPIActivity.java
/**
* ? {@link InviteAPI} ??
*
* @author SINA
* @since 2013-11-05
*/
From source file com.manning.androidhacks.hack039.MainActivity.java
public class MainActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main);
From source file net.idlesoft.android.apps.github.activities.Repository.java
public class Repository extends Activity { private static class LoadRepositoryTask extends AsyncTask<Void, Void, Void> { public Repository activity; @Override protected Void doInBackground(final Void... params) {
From source file net.idlesoft.android.apps.github.activities.SingleActivityItem.java
public class SingleActivityItem extends Activity { public static final String CSS = "<style type=\"text/css\">" + "* {" + "font-size: 13px;" + "margin: 0px;" + "}" + "div {" + "margin: 10px;" + "}" + "ul, li {" + "margin: 0;" + "padding: 0;" + "margin-top: 10px;" + "margin-bottom: 10px;" + "margin-left: 10px;" + "}" + "span {" + "color: #999;" + "margin: 0;" + "}" + "</style>";
From source file com.github.irib_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...