Skip to main content

Fragment Vs FragmentActivity

  • Actually, There's no difference between fragment and fragmentActivity in terms of their objective. Both are doing same but in different ways.
  • If your app targeting a platform version before honeycomb, you need to use fragmentActivity class which holds your fragment because earlier versions of android doesn't support fragment class.
  • If your app targeting a higher version of API (higher than honeycomb), you can use fragment class. This fragment is hold by activity.
  • If you are using fragmentActivity, you have to import the android.support.v4.app.Fragment package.
          Or
  • If you are using fragment, you have to import the android.app.Fragment package.
  • Both classes has different methods to get the Fragment Manager.
         For Fragment class the method is,
                 getFragmentManager()

         For FragmentActivity class the method is,
                 getSupportFragmentManager()

For more information, Click Here

Comments

Top Research

Make Custom Android Launcher

There are thousands of Android Launcher available in Play Store. Each and every Android mobile user loves to customize their mobile with different Android Launcher. If you want to develop your own launcher, this post helps you to fulfill your wish. In this post, you will find a demo launcher with layout and code which include many features like Drag & Drop , rearrange the installed application, change the background wallpaper etc. Here is an example of demo launcher which display all the installed applications in 3*3 Grid View format compatible to all devices. First of all we need to find all the installed applications from device so we should implement a subclass of AsyncTaskLoader that loads the currently installed applications from the package manager. If you want to display all the installed applications in  List View you can use official Android Developer reference .

Introduction to Android

In Android, visual components are called Views . The resources for an Android project are stored in the /res folder of your project hierarchy, which includes layout, values, and a series of drawable sub-folders. The ADT plug-in interprets these resources to provide design-time access to them through the R variable. Dalvik Debug Monitoring Service (DDMS) :  Use to monitor and control the  services or processes of emulators. Android Debug Bridge (ADB) : A driver which provides link to virtual to physical devices. Logcat : Used to view the processes  of android logging system. Android Asset Packaging Tool (AAPT) : Used to generate .apk file.

Layouts for Fragment

Fragments are use to develop dynamic and flexible or consistent User Interface(UI) design that can be supported by all screen sizes from small to large. In short, we can build Multi-pane UI using Fragments. We can divide the Activities into different reusable components which are known as Fragments. Fragments can be reused within multiple activities. Each Fragment has its own lifecycle and Layout and they are independent to each other that are embedded into an Activity. There are two class, Fragment and FragmentActivity that must be extended by the subclass of it. To know more about Fragment VS FragmentActivity. We can define a static or dynamic layout using Fragment.