我正在使用Android Studio和java创建我的第一个应用程序。 我想在我的项目中添加仪表,我找到了一个名为“sc-gauge”的库(Github)。 我将maven repositorie和依赖添加到我的build.gradle中,我可以在我的外部库中看到sc-gauge-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的新手,我一直无法找到它。
答案 0 :(得分:1)
将其添加到您的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">