Attribute animation of Android animation
Android system provides three kinds of animation: frame animation, gap animation and attribute animation. Here we analyze and summarize the attribute animation.
Attribute animation is more powerful than frame animation and gap animation. Frame animation and gap animation can only be applied to View and its subclasses. Attribute animation can m ...
Added by madhouse92 on Thu, 10 Feb 2022 21:32:25 +0200
Chapter 15 Java se special topic object-oriented advanced II - code block details
1. Code block overview
Code block: also known as initialization block, it is a member of a class, similar to a method. It encapsulates logical statements in the method body and is surrounded by {};And methods:
1. No method name, no return value, no parameter, only method body;2. It is not called explicitly through an object or class, but im ...
Added by geo__ on Thu, 10 Feb 2022 21:11:29 +0200
spring annotation development
Environment construction
In addition to the xml in the previous document, a context:component constraint should be added
1. xml configuration
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www. ...
Added by svivian on Thu, 10 Feb 2022 21:04:00 +0200
Basic use of Spring framework
1, Foreword
The basic part of the Spring framework is too long. It is divided into several articles to consolidate the learning record.
1. What is Spring
The spring framework was created due to the complexity of software development. Spring uses basic JavaBean s to accomplish things that could only be done by EJB s before. However, the use o ...
Added by Dillinger on Thu, 10 Feb 2022 21:03:58 +0200
Python crawler basics notes - requests2
requests
Crawl the search result page corresponding to the specified term of Sogou (simple web page collector)
UA: user agent (identity of request carrier)
UA camouflage: the server of the portal website will detect the carrier identity of the corresponding request. If it is detected that the carrier identity of the request is a browser, it ...
Added by iBuddy on Thu, 10 Feb 2022 21:01:24 +0200
Vue framework 2 Initial attempt of X, dynamic binding, responsive data, event modifier, (including small exercises)
catalogue
Dynamic binding style (supplement to v-bind):
Pass class
Use the form of variables or expressions
2. Object form
3. Array form
Through style
1. Variable or expression
2. Object form
3. Array form
Dynamic binding style (supplement to v-bind):
Pass class
Use the form of variables or expre ...
Added by digioz on Thu, 10 Feb 2022 21:00:41 +0200
[daily practice of Android spring moves] LeetCode Hot 5 questions + design mode
overview
LeetCode Hot: Full Permutation, rotating image, letter ectopic word grouping, maximum subarray and, jumping game Design mode: adapter mode, decorator mode, agent mode, command mode and observer mode
LeetCode Hot
2.21 full arrangement
Given an array nums without duplicate numbers, all possible permutations are returned. You can ...
Added by dfownz on Thu, 10 Feb 2022 20:51:13 +0200
On the sixth day of vue, front-end engineering webpack, babel, vue single component, vue scaffold and element UI
--------------Modularization related specifications------------------
1.1 modular overview
Main problems of traditional development mode
name conflictFile dependency
Solve the above problems through modularization
Modularization is to encapsulate a single function into a module (file). Modules are isolated from each other, but internal mem ...
Added by nosmasu on Thu, 10 Feb 2022 20:45:31 +0200
Use the Function interface in Java 8 to eliminate if Else (a very novel way of writing)
Source: Juejin cn/post/7011435192803917831If is often used in the development process else... Judge, throw exceptions, branch processing and other operations. These if else... Flooding in the code seriously affects the beauty of the code. At this time, we can use the Function interface of Java 8 to eliminate if else.... if (...){
throw new ...
Added by KirstyScott on Thu, 10 Feb 2022 20:36:02 +0200
CSS learning notes
CSS Icon
How to add icons The easiest way to add icons to an HTML page is to use an icon library, such as Font Awesome.
Adds the name of the specified icon class to any inline HTML element (such as < I > or < span >).
All icons in the following icon library are scalable vectors that can be customized using CSS (size, color, shado ...
Added by nemiux on Thu, 10 Feb 2022 20:32:16 +0200