Android Design mode-factory method mode (Factory)

Source: Internet
Author: User

There are three main categories of 23 design patterns:

Create five types of models: Factory method mode, abstract Factory mode, singleton mode, builder mode, prototype mode.

Structure mode, a total of seven kinds: Adapter mode, adorner mode, proxy mode, appearance mode, bridging mode, combined mode, enjoy the meta-mode.

There are 11 types of behavioral Patterns: Strategy mode, template method mode, observer mode, iteration sub-mode, responsibility chain mode, Command mode, Memo mode, state mode, visitor mode, mediator mode, interpreter mode.

1  PackageCom.example.main;2 3 Importandroid.app.Activity;4 ImportAndroid.os.Bundle;5 ImportAndroid.widget.TextView;6 7 /*8 * Android design mode-Factory mode (Factory method)9  */Ten  One  Public classFactoryextendsActivity { A  -     PrivateTextView TV; -  the @Override -     protected voidonCreate (Bundle savedinstancestate) { -         Super. OnCreate (savedinstancestate); - Setcontentview (r.layout.create); +  -TV =(TextView) Findviewbyid (r.id.apptxt); +  A         //Androidapp Standard atIAPP Androidapp =Appfactroy.google (); -          -         //Release Androidapp Products - Androidapp.sendapp (TV); -     } -  in     /* - * IAPP App product interface releases different types of app products to      */ +  -     InterfaceIApp { the         voidSendApp (TextView TV); *     } $ Panax Notoginseng     /* - * Iosapp Products the      */ +  A     Static classIosappImplementsIApp { the  + @Override -          Public voidSendApp (TextView TV) { $Tv.settext ("This is Iosapp"); $         } -     } -  the     /* - * Androidapp ProductsWuyi      */ the  -     Static classAndroidappImplementsIApp { Wu  - @Override About          Public voidSendApp (TextView TV) { $Tv.settext ("This is Androidapp"); -         } -     } -  A     /* + * Different types of app manufacturers the      */ -  $     Static classAppfactroy { the  the          Public StaticIApp Apple () { the             return NewIosapp (); the         } -  in          Public StaticIApp Google () { the             return NewAndroidapp (); the         } About     } the  the}
View Code

Android Design mode-factory method mode (Factory)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.