Example usage for android.support.v4.app FragmentActivity subclass-usage

List of usage examples for android.support.v4.app FragmentActivity subclass-usage

Introduction

In this page you can find the example usage for android.support.v4.app FragmentActivity subclass-usage.

Usage

From source file com.androidformenhancer.sample.demos.SampleFragmentActivity.java

/**
 * @author Soichiro Kashima
 */
public class SampleFragmentActivity extends FragmentActivity {

    @Override

From source file android.support.wear.ambient.AmbientModeTestActivity.java

public class AmbientModeTestActivity extends FragmentActivity implements AmbientMode.AmbientCallbackProvider {
    AmbientMode.AmbientController mAmbientController;

    boolean mEnterAmbientCalled;
    boolean mUpdateAmbientCalled;
    boolean mExitAmbientCalled;

From source file android.example.com.tabcompat.lib.TabCompatActivity.java

/**
 * A base activity that defers tab functionality to a {@link TabHelper}.
 * <p/>
 * When building an activity with tabs, extend this class in order to provide compatibility with API
 * level 5 and above. Using this class along with the {@link TabHelper} and {@link CompatTab}
 * classes, you can build a tab UI that's built using the {@link android.app.ActionBar} on

From source file com.ali.truyentranh.activity.DIFragmentActivity.java

/**
 * Base FragmentActivity created to support dependency injection in activities extending this
 * Activity. This Activity extends from SherlockFragmentActivity to use the support Action Bar. The
 * implementation uses the application class to inject dependencies.
 *
 * @author Pedro Vicente Gmez Snchez.

From source file ch.bfh.sensordataprocessor.sensor.SensorListActivity.java

public class SensorListActivity extends FragmentActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.sensor_main);

From source file co.touchlab.thumbcache.ui.ImageGridActivity.java

/**
 * Simple FragmentActivity to hold the main {@link ImageGridFragment} and not much else.
 */
public class ImageGridActivity extends FragmentActivity {
    private static final String TAG = "ImageGridFragment";

From source file com.actionbarsherlock.sample.demos.app.ActionBarSimple.java

public class ActionBarSimple extends FragmentActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.actionbar_text);
        ((TextView) findViewById(R.id.text)).setText(R.string.actionbar_simple_content);

From source file ch.bretscherhochstrasser.android.stickyviewpager.sample.AbstractViewPagerActivty.java

public abstract class AbstractViewPagerActivty extends FragmentActivity {

    ExamplePagerAdapter pagerAdapter;
    ViewPager viewPager;

    @Override

From source file com.androidtraining.graphics.bitmaps.ImageGridActivity.java

/**
 * Simple FragmentActivity to hold the main {@link ImageGridFragment} and not much else.
 */
public class ImageGridActivity extends FragmentActivity {
    private static final String TAG = "ImageGridActivity";

From source file com.abhi.barcode.fragment.MainActivity.java

public class MainActivity extends FragmentActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);//LE SACA EL TITULO A LA APP
        setContentView(R.layout.qr_fragment);