Learn how to solve difficult problems in actual combat of Flutter project
/How to view Internet layoffs/
/Although I'm good at cooking/
/But/
/I never stop studying/
/I also bought online courses/
/Congratulations on getting the title of huoyun evil god in your study/
/Talking about the anxiety and panic caused by layoffs on the Internet/
/In fact, I think this is the reaction of most people when ...
Added by tolli on Mon, 31 Jan 2022 04:21:46 +0200
The use of Fragment in Android case -- Sichuan cuisine menu
The use of Fragment in Android case -- Sichuan cuisine menu
This case will demonstrate how to display two fragments in one Activity (one Fragment is used to display the list of Sichuan cuisine and one Fragment is used to display the practice of Sichuan cuisine), and realize the communication function between Activity and Fragment
1. Preparati ...
Added by flumpy on Mon, 31 Jan 2022 01:07:48 +0200
Punch through - Activity lifecycle
Return stack
Activities in Android can be stacked.
Every time we start a new activity, it will overwrite the original activity, and then click the Back key to destroy the top activity, and the next activity will be displayed again.
In fact, Android uses tasks to manage activities. A Task is a collection of activities stored in the stack, whi ...
Added by g_p_java on Sat, 29 Jan 2022 09:54:38 +0200
51. Widgets of fluent are shared across components (Provider)
In the development of fluent, state management is an eternal topic. The general principle is: if the state is private to the component, it should be managed by the component itself; If the state is to be shared across components, it should be managed by the common parent element of each component. It is easy to understand the state management o ...
Added by premiso on Fri, 28 Jan 2022 09:46:35 +0200
There is a problem that the external storage cannot be accessed in Android 11 or later
What are you doing recently Android Application development, IDE yes android studio , The version configuration used is as follows:
compileSdk 32
buildToolsVersion '32.0.0'
defaultConfig {
applicationId "com.example.gzpersonmanager"
minSdk 21
targetSdk 32
versionCode 1
versionName "1.0"
testInstrumentationRunner "andr ...
Added by api on Thu, 27 Jan 2022 13:52:31 +0200
Content provider
Content provider
1. Introduction to content provider
Content provider is mainly used to realize the function of data sharing between different applications. It provides a complete mechanism to allow one program to access the data in another program, and the ring can ensure the security of the accessed data
2. Runtime permissions
1. Detailed ...
Added by dbomb101 on Sat, 22 Jan 2022 03:09:03 +0200
"Look at the Handler with questions"
"Look at the Handler with questions"
1, Write in front
At the beginning of the design, the Android system was designed as a single thread model. In fact, it is not only Android, but also Java Swing Historical reasons of Back to Android, we all know that the UI can only be updated in the UI thread, that is, the main thread, and it is ...
Added by teongkia on Fri, 21 Jan 2022 22:36:59 +0200
Service of the four components of the Android APP Complete Basic Tutorial (06)
1 Diagram Interpreting Service
Here is a diagram of life cycle: basic concepts & interpretation of critical callback methods
2. Interpretation of Service Class Relationships
The inheritance diagram for the parent and child classes of the Service class is as follows:
3 Configure Service
Both Service and Active are android system com ...
Added by Wabin on Wed, 19 Jan 2022 19:17:19 +0200
Fundamentals of mobile application design -- final examination -- comprehensive practice of login interface and simple diary
Final report of fundamentals of mobile application design
Project Name:
On machine assessment of mobile application development foundation
Tools, software and environment used:
JDK,Android Studio
1, Subject background
In the final computer examination, the contents of Experiment 4 and Experiment 5 and the small experiments completed ...
Added by tomkleijkers on Tue, 18 Jan 2022 21:37:49 +0200
Button control developed by Android (click the button to change the pattern and color)
Basic framework
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:layout_width="200dp"
android:layout_height=" ...
Added by stylusrose on Tue, 18 Jan 2022 16:58:34 +0200