解析 XML 时出错:未绑定前缀(外部库)

Error parsing XML: unbound prefix (External library)

我正在使用 Android Studio 和 java 创建我的第一个应用程序。 我想将仪表添加到我的项目中,我找到了一个名为 "sc-gauges" (Github) 的库。 我将 Maven 存储库和依赖项添加到我的 build.gradle 中,我可以在我的外部库中看到 sc-gauges-2.6.4。我从 github 页面添加了一个示例:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main"
tools:context="com.example.gauge.gauge.MainActivity">

<com.sccomponents.gauges.ScArcGauge
    android:layout_width="300dp"
    android:layout_height="wrap_content"
    android:padding="30dp"
    android:background="#f5f5f5"
    sc:angleStart="135"
    sc:angleSweep="270"
    sc:strokeSize="6dp"
    sc:progressSize="4dp"
    sc:value="45"
    sc:notches="8"
    sc:notchesLength="10dp"
    sc:textTokens="01|02|03|04|05|06|07|08"
    sc:pointerRadius="10dp"
    />

</android.support.constraint.ConstraintLayout>

com.sccomponents.gauges.ScArcGauge 有效,但对于 sc: 前缀我得到一个错误:错误:(12) 错误解析 XML: 未绑定前缀。我觉得有一个简单的修复方法,但由于我对 java 编程和 Android Studio 完全陌生,所以我一直无法找到它。

将此添加到您的 xml 文件中:

xmlns:sc="http://schemas.android.com/apk/res-auto"

最后:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:sc="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/activity_main"
    tools:context="com.example.gauge.gauge.MainActivity">