Xposed common inverse function

1. Create Xposed project Create an app project in Android Studio, modify the AndroidManifest.xml file, and add the following code in the < Application > < / Application > tag <meta-data android:name="xposedmodule" android:value="true" /> <meta-data android:name="xposeddescription" android:value="hello xposed" /> &l ...

Posted by cosmos33 on Thu, 14 Oct 2021 19:28:42 -0700

Quick learning TypeScript - concise and key manual - Volume I

👉 About the author As we all know, life is a long process, constantly overcoming difficulties and constantly reflecting on the process of progress. In this process, there will be a lot of questions and thoughts about life, so I decided to share all my thoughts, experiences and stories in order to find resonance!!! Focus on Android/Unity an ...

Posted by RobM on Thu, 14 Oct 2021 16:15:52 -0700

Daily trivia of using Termux

1, Reference documents: Part1 official documents Termux official websiteTermux official website WikiTermux image usage help Part 2 reference blog Termux advanced terminal installation, use and configuration tutorial (Guoguang boss)Android ROOT free deployment of private cloud (refer to Guoguang)Termux, Nginx+php+KodExplorer manage mobil ...

Posted by plex303 on Wed, 13 Oct 2021 21:39:03 -0700

android_ jetpack_ Notes on using data binding in xml layout

Reprinted from: https://www.jianshu.com/p/b923afeba8c0?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation Notes on the use of databinding 1. Space. Using spaces directly in xml will report errors. MalformedByteSequenceException: Invalid byte 3 of 3-byte UTF-8 sequence. You need to ...

Posted by segwaypirate on Wed, 13 Oct 2021 08:36:29 -0700

Analysis of innovative training projects -- Part II

Analysis of innovative training projects -- Part II 2021SC@SDUSC preface preface This article begins to analyze the source code of the flying order project. The project of flying order requires two main functions: one is to query all poems containing input keywords, and the other is man-machine simulation flying order game. This arti ...

Posted by VagabondKites on Wed, 13 Oct 2021 07:18:41 -0700

Static agent + dynamic agent is easy to use

Static agent + dynamic agent is easy to use 1, Brief description 1. From the perspective of coding, the agent mode is divided into static agent and dynamic agent. Static proxy: the compiled class file already exists before the code runs. Dynamic Proxy: dynamically generate Proxy class objects through reflection when the code is running. It ai ...

Posted by WebDesEyen on Tue, 12 Oct 2021 19:41:01 -0700

Develop an Android RTMP player from scratch

1. Background introduction When mobile live broadcasting applications became popular in the past 15 years, the main live broadcasting protocol was RTMP. The multimedia services were Adobe's AMS, wowza, Red5, crtmpserver, nginx rtmp module, etc., and the RTMP service SRS became popular. The Android player mainly started playing HLS with EXOPlay ...

Posted by PBD817 on Tue, 12 Oct 2021 18:40:28 -0700

2021-10-12 implementation of common reusable components, such as navigation bar

Learning Lib_ Knowledge in common business module Declare styleable: custom control properties Sometimes the official controls are not enough. We need to define our own controls, â‘  Define attrs.xml file under res/values file to define the controls we need; *<?xml version="1.0" encoding="utf-8"?>* *<resources>* *<declare-s ...

Posted by Killswitch on Tue, 12 Oct 2021 17:32:26 -0700

[1054] exploratory use of airtest

Introduction to Airtest Airtest is a UI automatic testing tool based on image recognition and poco control recognition produced by Netease. Airtest's framework is an image recognition framework developed by Netease team. The ancestor of this framework is a novel graphic scripting language Sikuli. The principle of Sikuli framework is that c ...

Posted by stukov on Tue, 12 Oct 2021 16:38:44 -0700

Android learning notes: 2. Linear layout

2. Linear layout There are six layouts in Android: LinearLayout, Relativelayout, Tablelayout FrameLayout, Absolute layout, GridLayout Detailed explanation of weight attribute: â‘  Simplest usage: As shown in the figure: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/t ...

Posted by Viper_4 on Mon, 11 Oct 2021 20:19:32 -0700