Three basic layout modes of Android
A rich interface consists of many controls, so how can we make each control orderly placed on the interface instead of messy, which needs to be realized with the help of layout
LinearLayout
LinearLayout, also known as linear layout, is a very common layout
android:orientation arrangement Arranged in vertical order
<LinearLayo ...
Posted by HAVOCWIZARD on Fri, 10 Dec 2021 17:35:21 +0100
Share today: Flutter's customized carousel
Start with the picture above and take you back to your childhood:Effect analysisThe sub layouts are placed in circular order and the angles are bisectedSub layout rotation, support gesture sliding rotation, fast sliding, hand lifting to continue rotation, and automatic rotationSupport X-axis rotationSupport fore-and-aft scaling sub layout (the ...
Posted by ksteuber on Fri, 10 Dec 2021 03:43:28 +0100
This is the special effect of RecyclerView. I saw the call cow batch
/ preface /Or the old routine, let's see the effect!Before writing this effect, you need to be familiar with the recycling mechanism of Rv, because to realize this effect, you need to customize LayoutManager()As we all know, RecyclerView is a slidable View, so its recycling / reuse entry must be in the onTouchEvent() eventT ...
Posted by Alelinux on Wed, 08 Dec 2021 08:50:21 +0100
Analysis of LayoutAnimation in Android
PS: This article is a reprint of the article. Reading the original text will be more readable. There is a link to the original text at the end of the articleps: the source code is analyzed based on android api 27LayoutAnimation is used to animate the sub views of the layout or ViewGroup. The animation of each sub View starts at different times, ...
Posted by grantc2 on Wed, 08 Dec 2021 07:59:47 +0100
Android: publish aar package to maven repository and the difference between maven plug-in and maven publish plug-in
prefaceIn daily development, it is inevitable to publish your library to maven warehouse, which is more convenient to use.Publishing aar package to maven warehouse mainly uses the plug-ins provided by Gradle:maven plug-in (old version) was completely abandoned after Gradle 6.2 (added @ Deprecated annotation)Maven publish plug-inMaven plug-in is ...
Posted by Shadeless on Tue, 07 Dec 2021 23:00:53 +0100
Android event distribution mechanism
Original link: https://juejin.im/post/5eb3e0...This time, let's talk about the event distribution mechanism in AndroidStarting from clicking the screen, a series of events will be generated from Activity to decorview to the innermost view. Each layer of view or viewgroup will first call its dispatchTouchEvent method, and then judge whether the ...
Posted by philippo on Tue, 07 Dec 2021 19:19:44 +0100
Android Getting Started tutorial | WebView
WebView usageDisable webview from processing long press eventsSet OnLongClickListener to consume long press events.web.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
return true;
}
});size of font changingEnumeration of font sizes. public static enum TextSize {
...
Posted by journeyman73 on Tue, 07 Dec 2021 17:41:40 +0100
[Kotlin beginner] function (method)
About the author: CSDN blog expert, Huawei cloud sharing expert certification
Series column: Kotlin beginner
Learning and communication: three people must have my teacher; Choose the good and follow it, and change the bad.
catalogue
function
Function header
Function parameters
Unit function
Nothing type
Function name in backquotes ...
Posted by alconebay on Tue, 07 Dec 2021 03:40:16 +0100
Java, Android Backpack Problem - Dynamic Planning
Preface
Following the previous backpack problem, Greedy Algorithms, this time let's look at dynamic planning For dynamic planning, it is dynamic planning that comes into direct contact when you first look at the backpack problem Feeling is also simpler
Specific requirements of the topic, see the previous one in detail, this one tells us ...
Posted by lhaynes on Mon, 06 Dec 2021 07:04:06 +0100
Android Baidu map location display current location
Configure Baidu map Configure Baidu map Get SHA1 Get it from the command line in Android Studio. The steps are as follows: Click Terminal in the lower left cornerEnter D:\Android\jre\bin and enter the command keytool -list -v -keystore debug.keystore Get Baidu map key (AK) Enter the official website of Baidu map, register baidu account first, a ...
Posted by markspec87 on Fri, 03 Dec 2021 11:55:52 +0100