Android属性已经定义

Tyc*_*aco 5 java android android-custom-view

我正在尝试使用名为的属性创建自定义视图borderWidth。当我尝试运行我的应用程序时,出现错误:

E:\ Android Studio Projects \ MyApp \ app \ build \ intermediates \ res \ merged \ debug \ values \ values.xml错误:(341)属性“ borderWidth”已经定义

values.xml它指向的文件中,我可以看到它borderWidth已经被用于默认值FloatingActionButton和其他几个默认android小部件:

<style name="Widget.Design.FloatingActionButton" parent="android:Widget">
    <item name="android:background">@drawable/design_fab_background</item>
    <item name="backgroundTint">?attr/colorAccent</item>
    <item name="fabSize">auto</item>
    <item name="elevation">@dimen/design_fab_elevation</item>
    <item name="pressedTranslationZ">@dimen/design_fab_translation_z_pressed</item>
    <item name="rippleColor">?attr/colorControlHighlight</item>
    <item name="borderWidth">@dimen/design_fab_border_width</item>
</style>
Run Code Online (Sandbox Code Playgroud)

我可以在视图中重用该名称还是必须重命名?

编辑

这是整个attrs.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <!--<attr name="borderWidth" format="float" />-->

    <declare-styleable name="ScrollingLineGraph">
        <attr name="unitsX" format="float" />
        <attr name="unitsY" format="float" />

        <attr name="scaleY" format="float" />
        <attr name="scaleX" format="float" />

        <!--<attr name="borderWidth" format="float" />-->
        <attr name="scaleWidth" format="float" />

        <attr name="borderColor" format="color" />
        <attr name="scaleColor" format="color" />
        <attr name="lineColor" format="color" />
        <attr name="highlightColor" format="color" />
        <attr name="labelColor" format="color" />

        <attr name="labelSize" format="float" />
    </declare-styleable>
</resources>
Run Code Online (Sandbox Code Playgroud)

这是使用我的自定义视图的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout android:id="@+id/coordinatorLayout_main"
                                                 xmlns:android="http://schemas.android.com/apk/res/android"
                                                 xmlns:custom="http://schemas.android.com/apk/res-auto"
                                                 android:layout_width="match_parent"
                                                 android:layout_height="match_parent"
                                                 android:fitsSystemWindows="false">

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="8dp"
    android:orientation="vertical">

    <!-- Other views -->

    <com.tycho.app.simplegraphs.ui.ScrollingLineGraph
        android:id="@+id/graph1"
        custom:unitsX="10000"
        android:layout_width="200dp"
        android:layout_height="40dp"/>

    <com.tycho.app.simplegraphs.ui.ScrollingLineGraph
        android:id="@+id/graph2"
        android:layout_marginTop="4dp"
        custom:lineColor="#FF0000"
        custom:unitsX="10000"
        custom:highlightColor="#80FF0000"
        android:layout_width="200dp"
        android:layout_height="40dp"/>

    <!-- Other views -->

</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

Tyc*_*aco 0

正如这个问题的答案所述,使用 android 已经使用过的特定名称的唯一方法是重新使用它。然而,这在这种情况下不适合,因为我的属性与标准 android 属性具有不同的含义,所以我只需要重命名我的属性。

所以我将重命名borderWidthgraphBorderWidth.