Kitkat版本不支持<tag>

时间:2017-06-02 12:31:23

标签: android android-layout android-4.4-kitkat

我在Android中使用<tag> View。我试图为Button添加多个标签。

    <Button
            android:id="@+id/button"
            android:layout_width="368dp"
            android:layout_height="wrap_content"
            android:text="CLOSE" >
            <tag
                android:id="@+id/close_one"
                android:value="@string/close_one_string" />
            <tag
                android:id="@+id/close_two"
                android:value="@string/close_two_string" />
   </Button>

我在Kitkat平板电脑和Marshmallow平板电脑上执行了我的应用程序。在棉花糖中,它工作正常。但在kitkat它没有运行。

所以,我在互联网上搜索了与此主题相关的内容。在stackoverflow中,我找到了一个答案,{API}级别21 Click Here

支持<tag>

之后我在我找到的Android文档中提到了它,它支持API级别4. Click Here

我的问题是如何在Kitkat中为<tag>提供支持?

1 个答案:

答案 0 :(得分:2)

您在文档中引用的标记是从代码中调用它时的标记。 xml <tag>仅适用于API 21 +