2017-06-02 62 views
0

我在Android中使用<tag>View。我試圖爲Button添加多個標籤。<Tag>在Kitkat版本中不受支持

<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中它不能運行。

所以,我在互聯網上搜索了與此主題相關的內容。在計算器我發現一個答案是<tag>以上API級別21 Click Here

支持後,我審閱Android文檔,我發現,它從API級別支持4 Click Here

我的問題是如何給予支持<tag>在Kitkat?

回答

2

您在文檔中引用的標記是從代碼調用它時。 xml <tag>僅適用於API 21+

+0

是否沒有選項可以在xml API級別低於21的位置添加多個標籤? –

相關問題