Android HID Client 项目教程
android-hid-clientAndroid app that allows you to use your phone as a keyboard and mouse WITHOUT any software on the other end (Requires root)项目地址:https://gitcode.com/gh_mirrors/an/android-hid-client
1. 项目的目录结构及介绍
android-hid-client/
├── app/
│ ├── build/
│ ├── libs/
│ ├── src/
│ │ ├── main/
│ │ │ ├── java/
│ │ │ │ └── com/
│ │ │ │ └── arian/
│ │ │ │ └── android_hid_client/
│ │ │ │ ├── MainActivity.java
│ │ │ │ └── ...
│ │ │ ├── res/
│ │ │ │ ├── drawable/
│ │ │ │ ├── layout/
│ │ │ │ ├── mipmap/
│ │ │ │ └── values/
│ │ │ └── AndroidManifest.xml
│ ├── build.gradle
│ └── ...
├── gradle/
├── .gitignore
├── build.gradle
├── gradle.properties
├── gradlew
├── gradlew.bat
├── README.md
└── settings.gradle
目录结构介绍
app/
: 包含应用程序的主要代码和资源。
build/
: 编译生成的文件。libs/
: 第三方库文件。src/
: 源代码文件。
main/
: 主代码目录。
java/
: Java 源代码。
com/arian/android_hid_client/
: 项目的主要代码。
MainActivity.java
: 应用程序的主活动。 res/
: 资源文件。
drawable/
: 图片资源。layout/
: 布局文件。mipmap/
: 应用图标。values/
: 字符串和其他值。 AndroidManifest.xml
: 应用程序的配置文件。 build.gradle
: 应用程序的构建脚本。 gradle/
: Gradle 包装器文件。.gitignore
: Git 忽略文件。build.gradle
: 项目的构建脚本。gradle.properties
: Gradle 属性文件。gradlew
: Gradle 包装器脚本。gradlew.bat
: Gradle 包装器脚本(Windows)。README.md
: 项目说明文档。settings.gradle
: 项目设置文件。
2. 项目的启动文件介绍
MainActivity.java
MainActivity.java
是应用程序的入口点,负责初始化用户界面和处理用户交互。
package com.arian.android_hid_client;
import android.app.Activity;
import android.os.Bundle;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
AndroidManifest.xml
AndroidManifest.xml
是应用程序的配置文件,定义了应用程序的基本信息、组件和权限。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.arian.android_hid_client">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
3. 项目的配置文件介绍
build.gradle (Project)
build.gradle
文件位于项目根目录,定义了整个项目的构建配置。
// 项目级别的 build.gradle 文件
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
}
}
allprojects {
repositories {
google()
mavenCentral()
android-hid-clientAndroid app that allows you to use your phone as a keyboard and mouse WITHOUT any software on the other end (Requires root)项目地址:https://gitcode.com/gh_mirrors/an/android-hid-client