List of usage examples for android.support.v4.app FragmentActivity subclass-usage
From source file com.actionbarsherlock.sample.demos.app.FragmentStatePagerSupport.java
public class FragmentStatePagerSupport extends FragmentActivity { static final int NUM_ITEMS = 10; MyAdapter mAdapter; ViewPager mPager;
From source file com.actionbarsherlock.sample.demos.app.LoaderCursorSupport.java
/** * Demonstration of the use of a CursorLoader to load and display contacts * data in a fragment. */ public class LoaderCursorSupport extends FragmentActivity {
From source file br.pro.menotti.opus.pt.MainActivity.java
public class MainActivity extends FragmentActivity { /* language selection: * 0 - Portugus (pt) * 1 - English (en) * 2 - Espaol (es) * 3 - Franais (fr)
From source file com.annuletconsulting.homecommand.node.MainActivity.java
/**
* This app will convert spoken commands starting with an assignable keyword, into text
* then send them to the server app which will process them and return a text command
* that determines what the node does next.
*
* It will also provide a settings page that will store things like the command phrase
From source file bucci.dev.freestyle.StartActivity.java
public class StartActivity extends FragmentActivity { private static final boolean DEBUG = false; private static final String TAG = "BCC|StartActivity"; public static final String TIMER_TYPE = "timer_type"; public static final int TIMER_MODES_COUNT = 3;
From source file cn.psvmc.demo.MainActivity.java
public class MainActivity extends FragmentActivity { private final Handler handler = new Handler(); private ZJSlidingTab tabs; private ZJTabViewPager pager;
From source file ca.mudar.mtlaucasou.ui.AboutActivity.java
public class AboutActivity extends FragmentActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
From source file com.aniruddhc.acemusic.player.NowPlayingQueueActivity.NowPlayingQueueActivity.java
public class NowPlayingQueueActivity extends FragmentActivity { public Context mContext; public SharedPreferences sharedPreferences; @Override
From source file butter.droid.tv.activities.base.TVTorrentBaseActivity.java
public abstract class TVTorrentBaseActivity extends FragmentActivity implements TorrentListener, TorrentActivity, ServiceConnection { protected Handler mHandler; protected TorrentService mService;
From source file cn.com.nggirl.ngdemo.transition.ZoomActivity.java
/**
* A sample showing how to zoom an image thumbnail to full-screen, by animating the bounds of the
* zoomed image from the thumbnail bounds to the screen bounds.
*
* <p>In this sample, the user can touch one of two images. Touching an image zooms it in, covering
* the entire activity content area. Touching the zoomed-in image hides it.</p>