Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the modes of Android Sdk

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Most people do not understand the knowledge points of this article "what are the patterns of Android Sdk?", so the editor summarizes the following content, detailed content, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "what are the patterns of Android Sdk" article.

First, combination mode

View + ViewPager

Second, observer mode

AbstractCursor

Third, singleton mode

Input method (InputMethodManager) status bar, etc.

Fourth, template method model

Method onDraw () dispatchDraw () in View

Public class View {protected void onDraw (Canvas canvas) {} protected void dispatchDraw (Canvas canvas) {} / / algorithm skeleton public void draw (Canvas canvas) {if (! verticalEdges & &! horizontalEdges) {/ / step 1 if (! dirtyOpaque) onDraw (canvas); / / step 2 dispatchDraw (canvas); / / step 3 onDrawScrollBars (canvas); return;}} / /.

Fifth, memo mode

Canvas save () restore () method

Sixth, sharing meta-model

Sqlite requests sql, and the returned results of duplicate sql are cached.

The client obtains the shared meta object through the shared meta factory, and the creation of the shared meta object is controlled according to the factory's share meta pool. If there is no such object in the share meta pool, the object is created and saved to the share meta pool. If there is this object in the share meta pool, then use this object directly. Because the sharing meta-object is shared at the same time, it shows that it reuses the invariance of attributes, otherwise they are all changing things, there is no sharing, these immutable attributes are called internal state, independent from the external scene.

Seven, command mode

Encapsulates the recipient and operation

New Thread (new Runnable () {}) .start ()

Eighth, factory mode

ThreadFactory in Asynctask

Private static final ThreadFactory sThreadFactory = new ThreadFactory () {private final AtomicInteger mCount = new AtomicInteger (1); public Thread newThread (Runnable r) {return newThread (r, "AsyncTask #" + mCount.getAndIncrement ());}}

Nine, adapter mode

Adapter

Ten, prototype model

Cloneable interface

National Day holiday, strategic model

Temporarily understood as the connotation of polymorphism

Twelve, the builder model

Builder

The above is about the content of this article on "what are the modes of Android Sdk". I believe we all have a certain understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report