how-to-use-waydroid
发表于|更新于|notes
|浏览量:
If you want to run Android software, and accidentally you are using Arch Linux, waydroid is a good choice.
在这篇文章中我会讲述如何在 Arch Linux 中安装并且使用 waydroid。
文章作者: HaoIne
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 HaoIne!
相关推荐
2025-03-31
Sequence
I’m learning the CS_61A course since January 2024, but there was a long time I suspended the learning of this course to learn some other subjects like Algorithm and Data Structure, and pwn in CTF. And now it’s time to continue the learning. Sequences are a list of Data in a specific order such as queues, arrays and linked lists. ListWe should know that Python does not have a built-in array type (like C arrays) that’s available without importing a module. But there is a list type in...
2025-04-10
Containers.md
In this passage I’ll show the notes of Containers in CS_61A. Box-and-Pointer NotationThis is just an easy diagrams to show lists in Environment Diagrams like this Processing Container Values Several built-in functions take iterable arguments and aggregate them into a value. sum sum(iterable) -> value sum(iterable, start) -> value This expression return the sum of an iterable of numbers (Not strings) plus the value of parameter ‘start’ (which defaults to 0). When the iterable is...
2025-06-18
Foundation Intro to CSS
Basic Syntax At the most basic level, CSS is made of various rules. These rules are made of a selector and a semicolon-separated list of declarations, with each of those declarations being made up of a property-value pair. Just like this: Selectors Selectors refer to the HTML elements to which CSS rules apply. Universal SelectorThe universal selector will select elements of every type (as in the whole document) 123* { color: purple;} Type SelectorA Type selector (or element...
2025-06-25
Flexbox
Flexbox is a way to arrange items into rows or columns. These items will flex based on some rules that you can define. Flexbox is not just a single CSS property but a whole toolbox of properties that you can use to put things where you need them. Some of these properties belong on the flex container, while some go on the flex items. This is an important concept. Flex container: any elements that has display: flex on it. Flex item: any element that lives directly inside of a flex...
2025-06-23
The Box Model
The Box Model We could consider all the elements in the website a box. Yes, they are rectangular boxes, nesting in an other box, and lying beside an other box. Here we use padding, border, and margin to manipulate the size of these boxes, and the space between them. padding increases the space between the border of a box and the content of the box. border adds space (even if it’s only a pixel or two) between the margin and the padding margin increases the space between the borders of a box...
2025-06-20
The Cascade
SpecificityA CSS declaration that is more specific will take precedence over less specific ones. First inline styles have the hightest specificity compared to selectors, while each type of selector has its own specificity level. ID selectors (most specific selector) Class selectors Type selectors Specificity will only be taken into account when an element has multiple, conflicting declarations targeting it, sort of like a tie-breaker. Note: When there is no declaration with a selector of...