Android Month 2_Day2_Menu menu and Opup Window
Android Month 2_Day2_Menu menu and Opup Window
1. System menu Options Menu
Step flow
1. Create menu folders
2. Create. xml file under menu folder
3.Activity rewrites onCreateOptionsMenu load resource files
4.Activity rewrites onOptions ItemSelected plus event listening
Note: An Activity has only on ...
Added by dirTdogE on Sun, 04 Aug 2019 16:46:02 +0300
Refresh Indicator for Flutter Dropdown Refresh
Effect
attribute
RefreshIndicator is a Material Design Style drop-down refresh control, so just like Swipe RefreshLayout in android, it can be nested in the outer layer.
Let's first look at the attributes:
const RefreshIndicator({
Key key,
@required this.child,
this.displacement = 40. ...
Added by almightyad on Fri, 02 Aug 2019 09:36:07 +0300
Event Delivery Mechanism
Method:
dispatchTouchEvent: Distribute events.If true is returned, it means that the event has been processed after distribution; if false, it means that no View has been processed after distribution
onInterceptTouchEvent intercepts events.Returning true indicates an interception event; returning false ...
Added by ScotDiddle on Fri, 02 Aug 2019 04:20:22 +0300
The Best Solution for Android Screen Rotation Processing
1. Overview (Hongyang)
It is well known that when Activity does not specify the orientation of the screen and configChanges explicitly, the user will restart the screen when he rotates it. Of course, in response to this situation, Android offers several options:
A. If there is a small amount of dat ...
Added by warren on Thu, 01 Aug 2019 08:25:50 +0300
Plug-in Development-Dynamic Loading Technology Loading Installed and Uninstalled APKs
Links to the original text: https://blog.csdn.net/u010687392/article/details/47121729
First, a concept is introduced. What is dynamic loading technology? Why introduce dynamic loading? What good is it? First of all, we need to understand the ...
Added by zachatk1 on Wed, 31 Jul 2019 18:32:41 +0300
Paging's application in Recycler View, this article is enough.
Preface
AAC is a very good set of framework components. If you haven't understood it yet, I recommend you to read my previous series of articles:
Android Architecture Components Part1:Room
Android Architecture Components Part2:LiveData
Android Architecture Components Part3:Lifecycle
Android Architecture Components Part4:ViewModel
After a year' ...
Added by schlag on Wed, 31 Jul 2019 17:48:21 +0300
Android Calculator - Introduction
Android Calculator - Introduction
Author: Knight in Black
I. Preface
This is the first App I wrote, using the third chapter of Android First Line Code, some knowledge of UI controls. Then the overall structure synthesizes some works on CSDN blogs and short books. Similarly, in writing Android calcu ...
Added by deckrdx on Mon, 29 Jul 2019 16:49:20 +0300
Comparison and induction of several ways of broadcasting registration
Some time ago, I just saw the broadcasting chapters of "First Line Code". In order to facilitate understanding, I collate and summarize the codes in the book, and compare the different ways of registering broadcasting receivers. The codes in the article are all taken from "First Line C ...
Added by stefharley on Sun, 28 Jul 2019 08:36:19 +0300
webapp calls up browser sharing
webapp calls up browser sharing
cause
Recently, I have made a news information page, which has the function of sharing. After referring to a lot of information, I have the following summary.
Compatibility
Almost all browsers on the mobile side support sharing QQ and QQ space
QQ browser
UC Brows ...
Added by nadeauz on Fri, 26 Jul 2019 09:16:34 +0300
Reasons for Failure of MQTT Big Message
Background
The MQTT protocol was used to build a chat server in the group. The connection became unavailable the day before yesterday when the big news (more than 5,000 Chinese characters) was tested. No reply was received for all the messages sent subsequently.
Server environment:
Netty : 4.1.32.Final
Use the MqttDecoder that comes with Netty ...
Added by le007 on Thu, 25 Jul 2019 11:59:49 +0300