gpt4 book ai didi

android - 自定义布局的 XML 未绑定(bind)错误

转载 作者:数据小太阳 更新时间:2023-10-29 03:01:11 25 4
gpt4 key购买 nike

我正在使用以下库:https://github.com/lzyzsd/CircleProgress

我把它添加到 gradle 中:

dependencies {
compile 'com.github.lzyzsd:circleprogress:1.1.0@aar'
}

我将它添加到我的布局 xml 中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/bg_color" >

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="10dp"
android:paddingRight="10dp" >

<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:text="@string/minutes20"
android:textColor="@color/main_color"
android:textSize="22dp"
android:textStyle="bold" >
</TextView>

<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/health_1"
android:textSize="16dp"
android:textStyle="bold" >
</TextView>

<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:orientation="horizontal" >

<com.github.lzyzsd.circleprogress.CircleProgress
android:id="@+id/progressbar_1"
android:layout_marginLeft="50dp"
android:layout_width="100dp"
android:layout_height="100dp"
custom:circle_progress="20"/>

我收到一个错误:解析 XML 时出错:未绑定(bind)前缀

我想我不知何故错过了命名空间的定义?

最佳答案

我想你错过了

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

添加根布局XML

供引用take a look any demo file

关于android - 自定义布局的 XML 未绑定(bind)错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35693601/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com