ตั้งแต่วันที่ 27 มีนาคม 2025 เป็นต้นไป เราขอแนะนำให้ใช้ android-latest-release
แทน aosp-main
เพื่อสร้างและมีส่วนร่วมใน AOSP โปรดดูข้อมูลเพิ่มเติมที่หัวข้อการเปลี่ยนแปลงใน AOSP
การตั้งค่า Rust IDE
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
การสนับสนุน IDE สำหรับ Rust ใน Android อาศัย rust-analyzer
rust-analyzer
คือโปรโตคอลเซิร์ฟเวอร์ภาษาที่ IDE ใช้เพื่อทำความเข้าใจโครงสร้างโค้ดและให้บริการฟีเจอร์ต่างๆ เช่น การเติมโค้ดให้สมบูรณ์หรือข้ามไปยังคำจำกัดความ ก่อนเริ่มต้น ให้ค้นหาเอกสารประกอบการเริ่มต้นใช้งานอย่างรวดเร็วของ rust-analyzer เพื่อดูวิธีกำหนดค่า IDE หรือเครื่องมือแก้ไขให้ใช้โปรโตคอล rust-analyzer
Android มีการกำหนดค่าที่ช่วยให้ rust-analyzer
เข้าใจวิธีสร้างโมดูล Rust ของ Android ข้อมูลนี้อธิบายอยู่ในไฟล์ที่ Soong สร้างขึ้น
rust-project.json
สำหรับ IDE บางรายการ เช่น Visual Studio Code ไฟล์นี้จะสร้างขึ้นโดย aidegen
โดยใช้อาร์กิวเมนต์ตัวเลือก -l r
(เพื่อเลือก Rust เป็นภาษา) หากคุณใช้ IDE อื่น ให้สร้างไฟล์ rust-project.json
ด้วยตนเองโดยใช้โค้ดต่อไปนี้
// Generates rust-project.json in out/soong/
SOONG_GEN_RUST_PROJECT=1 m nothing
// Creates a symbolic link
ln -s $ANDROID_BUILD_TOP/out/soong/rust-project.json $ANDROID_BUILD_TOP
rust-analyzer
เวอร์ชันเสถียรที่สร้างไว้ล่วงหน้ามีอยู่ในต้นไม้ที่ prebuilts/rust/linux-x86/stable/rust-analyzer
ตัวอย่างเนื้อหาและโค้ดในหน้าเว็บนี้ขึ้นอยู่กับใบอนุญาตที่อธิบายไว้ในใบอนุญาตการใช้เนื้อหา Java และ OpenJDK เป็นเครื่องหมายการค้าหรือเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-27 UTC
[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2025-07-27 UTC"],[],[],null,["# Rust IDE setup\n\nThe IDE support for Rust in Android relies on [rust-analyzer](https://rust-analyzer.github.io/).\n`rust-analyzer` is a [language server protocol](https://microsoft.github.io/language-server-protocol/)\nused by your IDE to understand the code structure and to provide features\nsuch as code completion or jump-to definition. Before you start, search the\n[rust-analyzer QuickStart](https://rust-analyzer.github.io/) documentation for how to configure your\nIDE or editor to use the `rust-analyzer` protocol.\n\nAndroid provides the configuration that enables `rust-analyzer` to understand\nhow Android Rust modules are built. This is described in the Soong-generated file\n`rust-project.json`. For some IDEs such as Visual Studio Code, this file is\ngenerated by [`aidegen`](https://android.googlesource.com/platform/tools/asuite/+/refs/heads/android16-release/aidegen/README.md#2_basic-usage),\nusing the `-l r` option arguments (to select Rust as the language). If you use\na different IDE, manually generate a `rust-project.json` file with the following code: \n\n // Generates rust-project.json in out/soong/\n SOONG_GEN_RUST_PROJECT=1 m nothing\n // Creates a symbolic link\n ln -s $ANDROID_BUILD_TOP/out/soong/rust-project.json $ANDROID_BUILD_TOP\n\nA prebuilt, stable version of `rust-analyzer` is available in-tree at\n[prebuilts/rust/linux-x86/stable/rust-analyzer](https://cs.android.com/android/platform/superproject/+/android-latest-release:prebuilts/rust/linux-x86/stable/rust-analyzer)."]]